@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    --ink: #15181C;
    --paper: #F7F6F3;
    --white: #FFFFFF;
    --bronze: #A98352;
    --bronze-dark: #8F6D42;
    --line: #DDD8D0;
    --text: #2A2D31;
    --text-muted: #6B6F75;
    --bronze-tint: #A9835215;
    --max-width: 1200px;
    --section-pad: 80px;
    --section-pad-mobile: 48px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    max-width: 100vw;
    overflow-x: hidden;
}

:focus-visible {
    outline: 2px solid var(--bronze);
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo', system-ui, sans-serif;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 1rem; border: none; padding: 0; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 600; margin: 1.5rem 0 0.75rem; }
h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--bronze-dark); }
ul { margin: 0 0 1rem 1.25rem; }
li { margin-bottom: 0.35rem; }

.eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 0.65rem;
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.page-inner {
    width: 100%;
}

/* Header */
.site-header {
    background: var(--ink);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .container {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.site-nav {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    min-height: 44px;
}

.site-nav > li {
    display: flex;
    align-items: center;
}

.site-nav__brand a {
    display: flex;
    align-items: center;
    line-height: 0;
}

.site-nav__brand img {
    height: 28px;
    width: auto;
    display: block;
}

.site-nav__links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15rem 1.1rem;
    margin: 0;
    padding: 0;
}

.site-nav__links li {
    margin: 0;
}

.site-nav__links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.15rem 0;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.site-nav__links a:hover {
    color: var(--bronze);
}

.site-nav .dropdown {
    position: relative;
    margin-right: 0;
}

.dropdown-toggle {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.15rem 0.4rem;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    transition: color 0.2s;
}

.dropdown-toggle:hover {
    color: var(--bronze);
}

.dropdown-caret {
    font-size: 0.75em;
    transition: transform 0.2s;
}

.dropdown.is-open .dropdown-caret {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    left: auto;
    background: var(--ink);
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (hover: hover) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu a {
    color: #e8e8e8;
    text-decoration: none;
    padding: 0.65rem 1.25rem;
    display: block;
    font-size: 0.9rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--bronze);
}

/* Breadcrumb */
.breadcrumb-nav {
    padding: 0.75rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb-nav a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: var(--bronze);
}

.breadcrumb-nav__sep {
    margin: 0 0.35rem;
}

.breadcrumb-nav__current {
    color: var(--ink);
    font-weight: 500;
}

.breadcrumb-secondary {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-bottom: 1rem;
}

.breadcrumb-secondary a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb-secondary a:hover {
    color: var(--bronze);
}

/* Hero */
.hero-static {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 420px;
    max-height: 720px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-static__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-static__overlay {
    position: absolute;
    inset: 0;
    background: rgba(21, 24, 28, 0.5);
    z-index: 1;
}

.hero-static__content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: var(--white);
}

.hero-static__content h1 {
    color: var(--white);
    max-width: 14ch;
    margin-bottom: 1rem;
}

.hero-static__content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 36ch;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.hero-static__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Buttons */
.btn,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1.5rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 2px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-primary,
.cta-button:not(.whatsapp-button):not(.btn-outline) {
    background: var(--bronze);
    color: var(--white);
    border-color: var(--bronze);
}

.btn-primary:hover,
.cta-button:not(.whatsapp-button):not(.btn-outline):hover {
    background: var(--bronze-dark);
    border-color: var(--bronze-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--ink);
}

.whatsapp-button {
    background: #25D366;
    border-color: #25D366;
    color: var(--white);
}

.whatsapp-button:hover {
    background: #1fb855;
    border-color: #1fb855;
    color: var(--white);
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.cta-note {
    margin-top: 1.25rem;
}

.section-cta {
    margin: 1.5rem 0 0;
}

/* Sections */
.section {
    padding: var(--section-pad) 0;
    border-bottom: 1px solid var(--line);
}

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

.section--white {
    background: var(--white);
}

.page-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}

/* Content blocks */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin: 2rem 0;
}

.content-with-image.reverse {
    direction: rtl;
}

.content-with-image.reverse > * {
    direction: ltr;
}

.content-text ul {
    margin-top: 0.75rem;
}

.content-image {
    align-self: stretch;
    min-height: 0;
    display: flex;
}

.content-with-image .content-image .framed-img {
    flex: 1;
    width: 100%;
    min-height: 0;
    overflow: hidden;
}

.content-with-image .content-image .framed-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Framed image motif */
.framed-img {
    position: relative;
    display: block;
    line-height: 0;
    overflow: hidden;
}

.framed-img::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    pointer-events: none;
    z-index: 1;
}

.section--paper .framed-img::after,
.section--white .framed-img::after {
    border-color: rgba(21, 24, 28, 0.2);
}

.framed-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Gallery / standalone framed images keep natural height */
.gallery-card-image.framed-img img {
    height: 100%;
}

.gallery-card-image.framed-img::after {
    border-color: rgba(21, 24, 28, 0.2);
}

/* Pricing cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 1.5rem;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
    border-color: var(--bronze);
    transform: translateY(-3px);
}

.pricing-card--featured {
    border-top: 3px solid var(--bronze);
}

.pricing-card-tag {
    position: absolute;
    top: -0.65rem;
    left: 1rem;
    background: var(--bronze);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
}

.pricing-card h3,
.pricing-card h4 {
    margin-top: 0;
    font-size: 1.1rem;
}

.pricing-card-price {
    font-family: 'Archivo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0.75rem 0 1rem;
    line-height: 1.2;
}

.pricing-card-unit {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card ul {
    margin: 0 0 0 1rem;
    font-size: 0.95rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Comparison table */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--white);
}

.comparison-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.comparison-table thead th {
    background: var(--paper);
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    color: var(--ink);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--white);
    min-width: 140px;
}

.comparison-table thead th:first-child {
    background: var(--paper);
    z-index: 3;
}

.comparison-table .highlight-col {
    background: var(--bronze-tint);
    border-top: 3px solid var(--bronze);
}

.comparison-table thead .highlight-col {
    background: var(--bronze-tint);
}

.check { color: #2d6a3e; font-weight: 500; }
.cross { color: #9a3b3b; }
.partial { color: var(--text-muted); }

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 1.25rem 1rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
}

.benefit-card:hover {
    border-color: var(--bronze);
    transform: translateY(-3px);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
    color: var(--ink);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--ink);
    stroke-width: 1.5;
    fill: none;
}

.benefit-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
}

/* Gallery */
.alternating-gallery {
    margin-top: 1.5rem;
    overflow: hidden;
}

.gallery-scroll-container {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.gallery-card {
    flex: 0 0 min(300px, 85vw);
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    border-color: var(--bronze);
    transform: translateY(-3px);
}

.gallery-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gallery-card-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.gallery-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    flex: 1;
}

.gallery-card-badge {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bronze);
}

/* Direct answers (top of page — heading + answer together for search & AI) */
.direct-answer-summary {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text);
    margin: 0 0 1.25rem;
    padding: 1.15rem 1.25rem;
    background: var(--paper);
    border-left: 3px solid var(--bronze);
    border-radius: 0 6px 6px 0;
}

.direct-answer-summary strong {
    color: var(--ink);
}

.direct-answer-products {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.direct-answer-products li {
    margin: 0;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 0.92rem;
    line-height: 1.55;
}

.direct-answer-products strong {
    color: var(--ink);
}

.direct-answers-heading {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 0.75rem;
}

.product-hub-links,
.related-cities {
    margin-bottom: 1.25rem;
}

.product-hub-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.product-hub-list li {
    margin: 0;
}

.product-hub-list a {
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--bronze-dark);
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.1rem;
}

.product-hub-list a:hover {
    color: var(--ink);
    border-color: var(--bronze);
}

.direct-answers {
    display: grid;
    gap: 1rem;
    margin-top: 0;
}

.direct-answer {
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 3px solid var(--bronze);
    border-radius: 6px;
    padding: 1.15rem 1.25rem;
}

.direct-answer h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.65rem;
    color: var(--ink);
    line-height: 1.35;
}

.direct-answer p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.65;
}

#quick-answers {
    padding-top: var(--section-pad-mobile);
    padding-bottom: var(--section-pad-mobile);
}

@media (min-width: 769px) {
    #quick-answers {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .direct-answers {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}

/* FAQ */
.faq-container {
    margin-top: 1.5rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 2px;
    margin-bottom: 0.5rem;
    background: var(--white);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    min-height: 44px;
    background: none;
    border: none;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--bronze);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    background: var(--ink);
    color: #9CA0A6;
    padding: 0;
    margin-top: 0;
}

.footer-accent {
    height: 1px;
    background: rgba(169, 131, 82, 0.55);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}

.footer-top-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    min-width: 0;
}

.footer-logo {
    display: inline-block;
    line-height: 0;
    flex-shrink: 0;
}

.footer-logo img {
    height: 26px;
    width: auto;
    display: block;
    opacity: 0.9;
}

.footer-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem 0.6rem;
}

.footer-meta-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: #7A8088;
    text-decoration: none;
    padding: 0.25rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.footer-meta-link:hover {
    color: #C4C8CE;
}

.footer-meta-sep {
    color: rgba(255, 255, 255, 0.15);
    user-select: none;
    font-size: 0.75rem;
}

.footer-top-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 1.25rem;
    flex-shrink: 0;
}

.footer-text-cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: #9CA0A6;
    text-decoration: none;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.footer-text-cta:hover {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.25);
}

.footer-text-cta--accent {
    color: var(--bronze);
}

.footer-text-cta--accent:hover {
    color: #C9A574;
    border-bottom-color: rgba(169, 131, 82, 0.45);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.35fr 1fr;
    gap: 1.5rem 2.5rem;
    padding: 1.75rem 0 1.25rem;
}

.footer-col {
    min-width: 0;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: rgba(169, 131, 82, 0.85);
    margin: 0 0 0.65rem;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    margin: 0;
}

.footer-list a {
    color: #8A8F96;
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1.35;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.1rem 0;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: var(--white);
}

.footer-list--cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.25rem;
}

.footer-cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.25rem;
    row-gap: 0;
}

.footer-cities a {
    color: #8A8F96;
    text-decoration: none;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0.1rem 0;
    transition: color 0.2s;
}

.footer-cities a:hover {
    color: var(--white);
}

.footer-city--current {
    color: var(--bronze) !important;
    font-weight: 600;
}

.footer-list a.footer-link--active {
    color: var(--white);
}

.footer-bottom {
    padding: 0.5rem 5.5rem 0.55rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-line {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem 0.5rem;
    font-size: 0.68rem;
    line-height: 1.3;
    color: #4E5359;
}

.footer-copy {
    color: #4E5359;
    letter-spacing: 0.01em;
}

.footer-bottom-line a {
    color: #5E6369;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-line a:hover {
    color: var(--bronze);
}

/* Floating button */
.floating-calc-btn {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 90;
    background: var(--bronze);
    color: var(--white);
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 0.6rem 0.95rem;
    border-radius: 2px;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(21, 24, 28, 0.28);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.02em;
}

.floating-calc-btn:hover {
    background: var(--bronze-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(21, 24, 28, 0.32);
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .benefit-card:hover,
    .gallery-card:hover,
    .pricing-card:hover {
        transform: none;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top-actions {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-static {
        height: 60vh;
        min-height: 360px;
    }
    .section {
        padding: var(--section-pad-mobile) 0;
    }
    .content-with-image,
    .content-with-image.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 1.5rem;
    }

    .content-with-image .content-image .framed-img {
        height: auto !important;
        min-height: unset;
    }

    .content-with-image .content-image .framed-img img {
        height: auto;
        aspect-ratio: 4 / 3;
        max-height: none;
    }
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .site-nav__links {
        display: none;
    }

    .dropdown-toggle {
        min-height: 44px;
        padding: 0.35rem 0.5rem;
    }

    .site-header .container {
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 2rem 0;
    }

    .footer-list--cols {
        grid-template-columns: 1fr;
    }

    .footer-top-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
    }

    .footer-bottom {
        padding-right: 0;
        padding-bottom: 4.25rem;
    }

    .footer-bottom-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
    }

    .footer-bottom-line .footer-meta-sep {
        display: none;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 16px;
    }
    .hero-static__actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-static__actions .btn {
        width: 100%;
    }
}
