:root {
    --ink: #211b16;
    --muted: #6f665c;
    --paper: #fbf7ef;
    --surface: #ffffff;
    --wood: #4b311f;
    --wood-dark: #2f2418;
    --gold: #c39a4b;
    --gold-soft: #efe2c5;
    --moss: #3f6f53;
    --line: #e7dccb;
    --steel: #3d4b45;
    --shadow: 0 18px 55px rgba(44, 32, 22, 0.14);
    --shadow-strong: 0 28px 90px rgba(24, 16, 10, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(195, 154, 75, 0.13), transparent 31%),
        linear-gradient(180deg, #fffaf2 0%, var(--paper) 42%, #fff 100%);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 45%, rgba(195, 154, 75, 0.2), transparent 34%),
        linear-gradient(135deg, #211912, #4b311f 48%, #7a6522);
    animation: loaderExit 1.05s ease 0.95s forwards;
}

.site-loader img {
    width: min(260px, 66vw);
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
    animation: logoIntro 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.site-loader span {
    position: absolute;
    bottom: 17%;
    width: min(240px, 52vw);
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.site-loader span::before {
    content: "";
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: var(--gold);
    animation: loaderBar 1.2s ease-in-out infinite;
}

body.is-ready .site-loader {
    opacity: 0;
    visibility: hidden;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 251, 243, 0.88);
    border-bottom: 1px solid rgba(75, 49, 31, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(44, 32, 22, 0.07);
}

.nav-shell {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 72px;
    padding: 5px 12px 5px 5px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: inset 0 0 0 1px rgba(195, 154, 75, 0.16);
}

.brand img {
    width: 144px;
    height: 72px;
    object-fit: contain;
    border-radius: 10px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.main-nav > a,
.nav-group > a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: #4b4238;
    font-weight: 800;
    font-size: 0.94rem;
}

.main-nav a:hover,
.main-nav a.active,
.nav-group:hover > a {
    background: #f0e5d2;
    color: var(--wood);
}

.nav-group {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 232px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.18s ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: #3f352c;
    font-weight: 700;
}

.header-cta,
.btn,
.quote-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    cursor: pointer;
}

.header-cta {
    background: linear-gradient(135deg, var(--wood), #72502d);
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 14px 28px rgba(75, 49, 31, 0.24);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--wood);
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
}

.hero-overlay {
    background:
        radial-gradient(circle at 73% 48%, rgba(195, 154, 75, 0.24), transparent 24%),
        linear-gradient(90deg, rgba(18, 14, 10, 0.92), rgba(44, 32, 22, 0.72) 47%, rgba(33, 27, 22, 0.2));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 96px 0 86px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-soft);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.eyebrow.dark {
    color: var(--moss);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: 4.55rem;
    line-height: 1.03;
    letter-spacing: 0;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.16;
    letter-spacing: 0;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.25;
}

.hero-copy {
    max-width: 645px;
    color: #f2eadc;
    font-size: 1.18rem;
}

.hero-actions,
.footer-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn.primary {
    background: linear-gradient(135deg, #f1c866, var(--gold));
    color: #1f160f;
    box-shadow: 0 18px 36px rgba(195, 154, 75, 0.25);
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.btn.outline {
    background: #fff;
    border-color: var(--line);
    color: var(--wood);
}

.btn.light {
    background: #fff;
    color: var(--wood);
}

.btn.full {
    width: 100%;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 760px;
    margin-top: 42px;
}

.hero-pills a {
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    padding: 9px 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 800;
    font-size: 0.92rem;
}

.hero-brand-card {
    position: absolute;
    right: 0;
    top: 15%;
    width: 286px;
    transform: translateY(-50%);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
    background: rgba(32, 24, 17, 0.42);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(16px);
}

.hero-brand-card img {
    width: 100%;
    border-radius: 14px;
}

.hero-brand-card div {
    display: grid;
    gap: 2px;
    margin-top: 13px;
    padding: 12px 13px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-brand-card strong {
    color: #fff6df;
    font-size: 1.05rem;
}

.hero-brand-card span {
    color: #ead8b7;
    font-size: 0.94rem;
}

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -44px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(195, 154, 75, 0.28);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.trust-grid div {
    min-height: 112px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.trust-grid strong {
    color: var(--wood);
    font-size: 1.5rem;
    line-height: 1.1;
}

.trust-grid span {
    color: var(--muted);
    font-weight: 800;
}

.section {
    padding: 82px 0;
}

.intro-band {
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid var(--line);
}

.intro-grid,
.split-grid,
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.intro-grid p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
}

.section-head {
    margin-bottom: 30px;
}

.inline-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.product-grid,
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.small-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card,
.post-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: 0 12px 35px rgba(44, 32, 22, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover,
.post-card:hover {
    transform: translateY(-6px);
    border-color: rgba(195, 154, 75, 0.42);
    box-shadow: 0 24px 60px rgba(44, 32, 22, 0.14);
}

.product-card-image,
.post-image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eadfcf;
}

.product-card img,
.post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover img,
.post-card:hover img {
    transform: scale(1.035);
}

.product-card-body,
.post-card > div {
    padding: 22px;
}

.product-card-body p {
    margin-bottom: 8px;
    color: var(--moss);
    font-weight: 900;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.product-card-body h3 {
    margin-bottom: 9px;
}

.product-card-body span,
.post-card p {
    display: block;
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--moss);
    font-weight: 900;
}

.text-link::after {
    content: "";
    width: 18px;
    height: 1px;
    margin: 13px 0 0 8px;
    background: currentColor;
}

.split-band {
    background:
        linear-gradient(90deg, rgba(63, 111, 83, 0.08), transparent 40%),
        linear-gradient(180deg, #f3eadc, #fff8ec);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.process-list {
    display: grid;
    gap: 14px;
}

.process-list div {
    display: grid;
    grid-template-columns: 62px 1fr;
    align-items: center;
    min-height: 76px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 26px rgba(44, 32, 22, 0.06);
}

.process-list strong {
    color: var(--gold);
    font-size: 1.6rem;
}

.post-card time {
    display: block;
    margin-bottom: 10px;
    color: var(--moss);
    font-weight: 800;
    font-size: 0.86rem;
}

.cta-strip {
    padding: 64px 0;
    background:
        linear-gradient(135deg, rgba(195, 154, 75, 0.18), transparent 42%),
        var(--wood-dark);
    color: #fff;
}

.cta-strip h2 {
    margin: 0;
}

.site-footer {
    padding: 58px 0 24px;
    background: #211912;
    color: #eee4d4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 44px;
}

.footer-logo {
    width: 178px;
    height: auto;
    margin-bottom: 18px;
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.site-footer h2 {
    font-size: 1rem;
    color: #fff;
}

.site-footer a {
    display: block;
    margin: 9px 0;
    color: #f2dfb5;
    font-weight: 700;
}

.footer-actions a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #c6b9aa;
    font-size: 0.92rem;
}

.page-hero,
.product-hero,
.article-hero {
    background:
        radial-gradient(circle at 85% 15%, rgba(195, 154, 75, 0.16), transparent 28%),
        linear-gradient(135deg, #fff6e8, #efe2cd);
}

.compact-hero,
.contact-hero {
    padding: 88px 0 70px;
    border-bottom: 1px solid var(--line);
}

.page-hero h1,
.product-hero h1,
.article-hero h1 {
    color: var(--ink);
}

.page-hero p,
.product-hero p,
.article-hero p {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.1rem;
}

.product-hero {
    padding: 82px 0;
}

.product-hero-grid,
.article-hero-grid,
.article-grid,
.detail-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 48px;
    align-items: start;
}

.product-hero-copy {
    padding-top: 28px;
}

.sale-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.sale-options span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid #d8c6a6;
    border-radius: 999px;
    background: #fffaf0;
    color: var(--wood);
    font-weight: 800;
}

.product-confidence {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.product-confidence span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(63, 111, 83, 0.1);
    color: var(--moss);
    font-size: 0.9rem;
    font-weight: 900;
}

.product-confidence span::before,
.quote-assurance span::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 999px;
    background: var(--gold);
}

.dark-actions .btn.primary {
    background: var(--wood);
    color: #fff;
}

.product-visual {
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    box-shadow: var(--shadow-strong);
}

.product-visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.product-detail-section {
    background: #fff;
}

.content-prose {
    color: #332b24;
}

.content-prose h2 {
    margin: 34px 0 12px;
    font-size: 1.65rem;
}

.content-prose h2:first-child {
    margin-top: 0;
}

.content-prose p,
.content-prose li {
    color: #5d534a;
    font-size: 1.04rem;
}

.content-prose ul {
    padding-left: 21px;
}

.faq-block {
    margin-top: 42px;
}

.faq-block details {
    border-top: 1px solid var(--line);
    padding: 16px 0;
}

.faq-block summary {
    cursor: pointer;
    font-weight: 900;
}

.quote-panel {
    position: sticky;
    top: 98px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background:
        linear-gradient(180deg, #fffaf0, #fffdf8);
    box-shadow: 0 18px 48px rgba(44, 32, 22, 0.13);
}

.quote-panel h2 {
    margin-bottom: 8px;
    font-size: 1.45rem;
}

.quote-panel p {
    color: var(--muted);
}

.quote-assurance {
    display: grid;
    gap: 8px;
    margin: 16px 0 4px;
    padding: 12px;
    border: 1px solid rgba(195, 154, 75, 0.26);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.64);
}

.quote-assurance span {
    display: flex;
    align-items: center;
    color: #5b4a38;
    font-size: 0.88rem;
    font-weight: 800;
}

.quote-form {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.quote-form label {
    display: grid;
    gap: 7px;
    color: #4e443b;
    font-weight: 800;
    font-size: 0.9rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid #d9cdb9;
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 0.96rem;
    padding: 12px 13px;
}

.quote-form textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hp {
    position: absolute;
    left: -9999px;
}

.flash {
    margin: 14px 0;
    padding: 12px 14px;
    border-radius: 6px;
    font-weight: 800;
}

.flash.success {
    background: #e4f3e9;
    color: #23513a;
}

.flash.error {
    background: #f7e4df;
    color: #7c3328;
}

.related-section {
    background: var(--paper);
}

.contact-info {
    padding: 30px;
    border-left: 5px solid var(--gold);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(44, 32, 22, 0.08);
}

.contact-info a,
.contact-info p {
    display: block;
    margin: 14px 0;
    color: #50463d;
    font-weight: 700;
}

.map-wrap {
    margin-top: 34px;
}

.map-wrap iframe {
    width: 100%;
    min-height: 380px;
    border: 0;
    border-radius: 8px;
}

.wide-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-hero {
    padding: 72px 0;
}

.article-hero img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.article-hero time {
    display: inline-flex;
    margin-top: 10px;
    color: var(--moss);
    font-weight: 900;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    background: #1f8f55;
    color: #fff;
    box-shadow: 0 16px 34px rgba(31, 143, 85, 0.32);
    font-weight: 900;
}

.site-header,
.hero-content > .eyebrow,
.hero-content h1,
.hero-copy,
.hero-actions,
.hero-pills {
    animation: riseIn 0.75s ease both;
}

.hero-content h1 {
    animation-delay: 0.08s;
}

.hero-copy {
    animation-delay: 0.16s;
}

.hero-actions {
    animation-delay: 0.24s;
}

.hero-pills {
    animation-delay: 0.32s;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes logoIntro {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes loaderBar {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(260%);
    }
}

@keyframes loaderExit {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .site-loader {
        display: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 88px 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 20px 24px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    body.nav-open .main-nav {
        display: flex;
    }

    .nav-group {
        position: static;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        display: grid;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 4px 0 8px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 70px 0 92px;
    }

    .hero-brand-card {
        position: static;
        width: min(320px, 100%);
        margin-top: 34px;
        transform: none;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    h1 {
        font-size: 3.1rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .product-grid,
    .post-grid,
    .wide-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intro-grid,
    .split-grid,
    .cta-grid,
    .product-hero-grid,
    .article-hero-grid,
    .article-grid,
    .detail-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .quote-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav-shell {
        min-height: 76px;
    }

    .main-nav {
        inset: 76px 0 auto 0;
    }

    .brand {
        min-height: 58px;
        padding: 4px 9px 4px 4px;
    }

    .brand img {
        width: 118px;
        height: 58px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(33, 27, 22, 0.88), rgba(33, 27, 22, 0.62));
    }

    .hero-content {
        padding: 58px 0 88px;
    }

    h1 {
        font-size: 2.52rem;
    }

    h2 {
        font-size: 1.65rem;
    }

    .section {
        padding: 58px 0;
    }

    .hero-brand-card {
        width: min(276px, 100%);
        padding: 12px;
        border-radius: 14px;
    }

    .hero-brand-card div {
        padding: 10px;
    }

    .trust-strip {
        margin-top: -34px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .trust-grid div {
        min-height: 86px;
        padding: 18px;
    }

    .product-grid,
    .post-grid,
    .wide-post-grid,
    .small-grid {
        grid-template-columns: 1fr;
    }

    .inline-head,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-panel,
    .contact-info {
        padding: 20px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 58px;
        min-width: 58px;
        height: 58px;
        padding: 0;
        font-size: 0;
    }

    .whatsapp-float::before {
        content: "WA";
        font-size: 0.92rem;
    }
}
