/* ==========================================================================
   Design System & Tokens (Brand Manual V2)
   ========================================================================== */
:root {
    /* Brand Colors */
    --color-obsidian: #0A0909; /* Versão sutilmente mais escura que o #171515 original */
    --color-deep-bronze: #9A5F18;
    --color-warm-gold: #C58A2A;
    --color-champagne: #E7BE73;
    
    /* UI & Text Colors */
    --color-surface: #1e1b1b;
    --color-border: rgba(231, 190, 115, 0.15); /* Champagne ultra leve */
    --color-white: #ffffff;
    --color-text-title: #ffffff;
    --color-text-body: rgba(255, 255, 255, 0.75);
    --color-text-muted: rgba(255, 255, 255, 0.5);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Type Scale */
    --font-size-hero: 4.5rem;
    --font-size-h2: 3rem;
    --font-size-h3: 2.2rem;
    --font-size-h4: 1.5rem;
    --font-size-body: 1.05rem;
    --font-size-small: 0.85rem;
}

html { scroll-behavior: smooth; }

body {
    margin: 0; padding: 0;
    background-color: var(--color-obsidian);
    color: var(--color-text-body);
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-title);
    font-weight: 400;
    margin-top: 0;
    line-height: 1.2;
}

a { color: var(--color-champagne); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--color-white); }

.container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 4rem; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 4rem; }
.pt-5 { padding-top: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.gold-text { color: var(--color-champagne) !important; font-style: italic; }
.flex-center { display: flex; justify-content: center; align-items: center; gap: 20px; }

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

/* ==========================================================================
   Buttons (Flat, Sharp, Elegant)
   ========================================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 16px 40px;
    font-family: var(--font-body); font-weight: 400; text-transform: uppercase;
    letter-spacing: 2px; font-size: 0.85rem;
    border-radius: 0; /* Sharp corners for editorial look */
    cursor: pointer; transition: all 0.4s ease;
    text-align: center; border: 1px solid transparent;
}
.btn-large { padding: 20px 50px; }
.btn-full { width: 100%; display: block; }
.btn-primary {
    background: var(--color-champagne);
    color: var(--color-obsidian);
}
.btn-primary:hover {
    background: var(--color-white);
    color: var(--color-obsidian);
}
.btn-whatsapp {
    background: transparent;
    border: 1px solid var(--color-champagne);
    color: var(--color-champagne);
}
.btn-whatsapp:hover {
    background: var(--color-champagne); color: var(--color-obsidian);
}
.wa-icon { margin-right: 10px; font-size: 1.2rem; }

/* Remove cheap glow animations */
.btn-glow, .pulse-anim { animation: none; box-shadow: none; }

/* ==========================================================================
   Animations (Subtle only)
   ========================================================================== */
.fade-up { opacity: 0; transform: translateY(20px); transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: 1s ease; }
.fade-in.visible { opacity: 1; }

/* ==========================================================================
   Sections
   ========================================================================== */
.lp-section { padding: 120px 0; position: relative; z-index: 2; border-bottom: 1px solid var(--color-border); }
.lp-section:last-child { border-bottom: none; }

/* 1. Hero Asymmetric */
.hero-asymmetric {
    min-height: 85vh; display: flex; align-items: center;
    background-color: var(--color-obsidian);
    background-image: url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.hero-asymmetric::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}
.hero-container {
    display: flex; align-items: center; justify-content: space-between; gap: 80px;
    position: relative; z-index: 2;
}
.hero-content {
    flex: 1; max-width: 600px; z-index: 2;
}
.headline {
    font-size: clamp(3.5rem, 6vw, 5rem); line-height: 1; margin-bottom: 2rem;
    letter-spacing: -2px;
}
.subheadline {
    font-size: 1.1rem; color: var(--color-text-muted); margin-bottom: 3rem; max-width: 480px;
    font-weight: 300;
}
.floating-badges {
    display: flex; gap: 20px; margin-top: 4rem; flex-wrap: wrap;
}
.badge-item {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--color-text-muted); display: flex; align-items: center; gap: 8px;
}
.badge-item svg { width: 14px; height: 14px; }


/* 2. Problem (Typography Driven, No Cards) */
.problem-dark { background: var(--color-obsidian); }
.lp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.align-center { align-items: center; }
.problem-glass-box {
    text-align: left;
    margin-bottom: 40px;
}
.problem-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 24px;
}
.problem-sq-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
}
.problem-img-wrapper:hover .problem-sq-img {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(1.1);
}
.icon-cross { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1.5rem; color: var(--color-text-muted); }
.problem-headline { font-size: 3rem; color: var(--color-white); line-height: 1.1; letter-spacing: -1px; }
.large-text { font-size: 1.1rem; color: var(--color-text-muted); }
.diamond-list { list-style: none; padding: 0; }
.diamond-list li {
    position: relative; padding-left: 0; margin-bottom: 30px;
    border-top: 1px solid var(--color-border); padding-top: 20px;
}
.diamond-list li strong {
    display: block; font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-white); font-weight: 400; margin-bottom: 10px;
}

/* 3. Solution Pillars Cards (Overlay Style) */
.solution-pillars { background: var(--color-obsidian); }
.pillars-cards-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; text-align: left;
}
.pillar-card {
    background: var(--color-dark);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.pillar-card:hover {
    border-color: var(--color-champagne);
    box-shadow: 0 0 20px rgba(229, 190, 115, 0.1);
    transform: translateY(-5px);
}
.pillar-card-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
}
.pillar-card:hover .pillar-card-bg {
    transform: scale(1.05);
}
.pillar-card-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 75%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 100%);
    z-index: 2;
}
.pillar-card-content {
    position: relative;
    z-index: 3;
    padding: 40px 30px;
}
.pillar-card-content h4 {
    font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 15px; color: var(--color-white);
}
.pillar-card-content p {
    font-size: 1.05rem; color: rgba(255, 255, 255, 0.85); margin: 0; line-height: 1.6; text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.solution-text { max-width: 600px; font-size: 1.2rem; color: var(--color-text-muted); }

/* 5. Benefits Minimal Grid */
.benefits-minimal {
    background-color: var(--color-obsidian) !important;
    background-image:
        radial-gradient(ellipse 90% 70% at 0% 50%, rgba(122, 75, 18, 0.45) 0%, transparent 55%),
        radial-gradient(ellipse 60% 80% at 30% 100%, rgba(197, 138, 42, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 15% 10%, rgba(229, 190, 115, 0.12) 0%, transparent 50%) !important;
    position: relative;
}
.benefits-diamond-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
    text-align: left; margin-top: 80px;
}
.benefit-minimal-item {
    text-align: left;
    padding: 50px 40px 50px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    position: relative;
    cursor: default;
    transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.benefit-minimal-item:hover {
    border-color: var(--color-champagne);
    box-shadow: 0 0 20px rgba(229, 190, 115, 0.1);
    background: rgba(229, 190, 115, 0.03);
}
.benefit-minimal-item:hover .b-icon-gold { opacity: 1; transform: translateY(-4px); }
.b-icon-gold {
    width: 45px; height: 45px; margin: 0 0 35px 0;
    color: var(--color-champagne); opacity: 0.7;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.benefit-minimal-item h4 { font-size: 1.5rem; margin-bottom: 15px; color: var(--color-white); letter-spacing: -0.5px; }
.benefit-minimal-item p { font-size: 1rem; color: var(--color-text-muted); line-height: 1.7; margin: 0; }

/* 8. Offer Checkout Box (Flat Editorial) */
.offer-checkout { background: var(--color-obsidian); }
.offer-checkout-box {
    max-width: 600px;
    background: linear-gradient(145deg, rgba(43, 27, 11, 0.8) 0%, var(--color-obsidian) 100%);
    border: 1px solid var(--color-border);
    border-radius: 24px; position: relative;
    overflow: visible;
    box-sizing: border-box;
    box-shadow: inset 0 0 40px rgba(154, 95, 24, 0.05), 0 20px 40px rgba(0,0,0,0.5);
}
.guarantee-seal {
    position: absolute; top: -80px; right: -80px;
    width: 160px; height: 160px;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
}
.seal-spinning-ring {
    position: absolute; top: 0; left: 0;
    animation: spin-seal 12s linear infinite;
}
@keyframes spin-seal { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.seal-ring-text {
    font-family: var(--font-body); font-size: 10.5px;
    font-weight: 500; letter-spacing: 2px;
    fill: var(--color-champagne);
}
.seal-center {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; z-index: 2;
}
.seal-number {
    font-family: var(--font-heading); font-size: 2.2rem; color: var(--color-white); line-height: 1;
}
.seal-center small {
    font-family: var(--font-body); font-size: 0.6rem; text-transform: uppercase;
    letter-spacing: 3px; color: var(--color-champagne); margin-top: 4px;
}
.offer-header { padding: 60px 50px 30px; border-bottom: 1px solid var(--color-border); box-sizing: border-box; }
.offer-headline { font-size: 2.5rem; margin-bottom: 10px; }
.offer-sub { color: var(--color-text-muted); font-size: 0.8rem; margin: 0; text-transform: uppercase; letter-spacing: 2px; }
.offer-body { padding: 40px 50px 60px; box-sizing: border-box; }
.offer-body .btn { width: 100%; box-sizing: border-box; display: block; }
.offer-price { font-family: var(--font-heading); font-size: 5rem; color: var(--color-white); margin: 20px 0; line-height: 1; letter-spacing: -2px; }
.small-text { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 3rem; }
.offer-trust span { font-size: 0.75rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* 4. Expert Split */
.expert-split { position: relative; padding: 0; background: var(--color-obsidian); display: flex; align-items: stretch; min-height: 80vh; }
.expert-bg-image {
    width: 50%; position: relative;
    border: none;
    border-radius: 0;
    overflow: hidden;
}
.bg-layer { width: 100%; height: 100%; background-size: cover; background-position: center; }
.placeholder-bg { background-color: var(--color-surface); }
.gradient-fade { display: none; } /* Removed fade. Sharp split is more editorial */
.expert-split .container { width: 50%; margin: 0; display: flex; align-items: center; padding: 80px; }
.expert-content-right { max-width: 500px; }
.expert-label { font-family: var(--font-body); font-weight: 400; text-transform: uppercase; letter-spacing: 3px; font-size: 0.75rem; margin-bottom: 20px; color: var(--color-text-muted); }
.expert-name { font-size: 4rem; margin-bottom: 1.5rem; color: var(--color-text-title); line-height: 1; letter-spacing: -1px; }
.expert-bio { color: var(--color-text-muted); font-size: 1.1rem; line-height: 1.8; }

/* 10. FAQ */
.section-faq { background: var(--color-obsidian); }
.section-faq .faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; padding: 30px 0;
    color: var(--color-white); font-family: var(--font-heading); font-size: 1.4rem;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    transition: color 0.3s ease;
}
.faq-question:hover, .faq-item.active .faq-question { color: var(--color-champagne); }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); color: var(--color-text-muted); font-size: 1.05rem; }
.faq-answer p { padding-bottom: 30px; margin: 0; }
.faq-item.active .faq-answer { max-height: 400px; }
.icon-plus { font-size: 1.5rem; color: var(--color-champagne) !important; font-weight: 400; transition: transform 0.4s ease; display: inline-block; }
.faq-item.active .icon-plus { transform: rotate(45deg); }

/* 11. Kontakt */
.section-kontakt {
    background-color: var(--color-obsidian) !important;
    background-image:
        radial-gradient(ellipse 90% 70% at 100% 50%, rgba(122, 75, 18, 0.5) 0%, transparent 55%),
        radial-gradient(ellipse 60% 90% at 75% 90%, rgba(197, 138, 42, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 85% 10%, rgba(229, 190, 115, 0.15) 0%, transparent 50%) !important;
    position: relative;
    min-height: 300px;
}
.section-kontakt::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(10, 9, 9, 0.85) 40%, rgba(10, 9, 9, 0.3) 100%);
    pointer-events: none;
}
.section-kontakt .container { position: relative; z-index: 2; }
.kontakt-inner {
    display: flex; justify-content: space-between; align-items: center; gap: 80px;
}
.kontakt-text { flex: 1; }
.kontakt-sub { color: var(--color-text-muted); font-size: 1.1rem; max-width: 500px; margin-top: 1.5rem; }
.kontakt-action { flex-shrink: 0; }
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}
.support-box {
    padding: 80px 80px 80px 0;
    border-right: 1px solid var(--color-border);
    text-align: left;
}
.support-box h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.support-box p { color: var(--color-text-muted); font-size: 1.05rem; }

.faq-accordion-box {
    padding: 80px 0 80px 80px;
}
.faq-accordion-box h2 { font-size: 2.5rem; margin-bottom: 3rem; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-of-type { border-top: 1px solid var(--color-border); }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; padding: 30px 0;
    color: var(--color-white); font-family: var(--font-heading); font-size: 1.4rem;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-answer { max-height: 0; overflow: hidden; transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); color: var(--color-text-muted); font-size: 1.05rem; }
.faq-answer p { padding-bottom: 30px; margin: 0; }
.faq-item.active .faq-answer { max-height: 400px; }
.icon-plus { font-size: 1.5rem; color: var(--color-text-muted); font-weight: 300; }

/* Responsive */
@media (max-width: 992px) {
    .lp-section { padding: 80px 0; }
    .hero-asymmetric { min-height: auto; padding: 120px 0 40px; }
    .hero-container { flex-direction: column; text-align: left; padding-top: 0; gap: 30px; }
    .hero-image-wrapper { justify-content: flex-start; width: 100%; }
    .hero-image-placeholder { aspect-ratio: 16/9; max-width: 100%; }
    
    .lp-grid, .split-grid { grid-template-columns: 1fr; gap: 3rem; }
    .pillars-cards-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .expert-split { flex-direction: column; }
    .expert-bg-image { width: 100%; height: 50vh; margin: 0; border: none; border-radius: 0; }
    .expert-split .container { width: 100%; padding: 60px 20px; }
    
    .offer-header, .offer-body { padding: 40px 30px; }
    .guarantee-seal { right: 20px; transform: scale(0.8); }
    .offer-price { font-size: 4rem; }
    
    .section-title, .headline, .expert-name { font-size: 3rem; }
    
    .site-header { position: relative; padding: 20px; }
    .hidden-mobile { display: none !important; }
    
    /* Hamburger Menu Button */
    .mobile-menu-toggle { display: flex !important; flex-direction: column; justify-content: space-between; width: 30px; height: 21px; background: none; border: none; cursor: pointer; z-index: 110; padding: 0; }
    .mobile-menu-toggle span { display: block; width: 100%; height: 2px; background-color: var(--color-champagne); transition: all 0.3s ease; }
    .mobile-menu-toggle.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

    /* Mobile Nav */
    .main-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(10, 9, 9, 0.98); backdrop-filter: blur(10px); flex-direction: column; justify-content: center; align-items: center; gap: 30px; z-index: 105; opacity: 0; visibility: hidden; transition: all 0.4s ease; transform: translateY(-20px); }
    .main-nav.active { opacity: 1; visibility: visible; transform: translateY(0); }
    .main-nav a { font-size: 1.5rem; }
    .main-nav .mobile-menu-btn { display: inline-flex; margin-top: 20px; font-size: 0.9rem; letter-spacing: 2px; color: var(--color-obsidian) !important; }
    body.menu-open { overflow: hidden; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--color-border); padding: 20px 0;
    transition: all 0.3s ease;
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo-link { display: flex; align-items: center; z-index: 110; position: relative; }
.site-logo { width: 150px; height: auto; transition: width 0.3s ease; }
.mobile-menu-btn { display: none; }
.mobile-menu-toggle { display: none; }
.main-nav { display: flex; gap: 40px; }
.main-nav a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px; color: var(--color-text-muted); font-weight: 500; }
.main-nav a:hover { color: var(--color-champagne); }
.btn-header { padding: 12px 25px; font-size: 0.75rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.lp-footer { background: var(--color-obsidian); border-top: 1px solid var(--color-border); }

.footer-top { padding: 80px 0; border-bottom: 1px solid var(--color-border); }
.footer-top-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo { width: 180px; height: auto; margin-bottom: 5px; }
.footer-tagline { color: var(--color-text-muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }

.footer-col-label {
    font-family: var(--font-body); font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--color-champagne); margin-bottom: 15px; margin-top: 0;
}
.footer-col { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.8; }
.footer-col p { margin: 0; }
.footer-cta-col { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.footer-cta-col .btn { margin-top: 0; white-space: nowrap; }

.footer-bottom { padding: 25px 0; }
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
}
.copyright { color: var(--color-text-muted); font-size: 0.8rem; margin: 0; }
.footer-legal-links { display: flex; gap: 30px; }
.footer-legal-links a { color: var(--color-text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-legal-links a:hover { color: var(--color-champagne); }

@media (max-width: 992px) {
    .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom-inner { flex-direction: column-reverse; gap: 20px; text-align: center; }
    .kontakt-inner { flex-direction: column; gap: 40px; }
    .benefits-diamond-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header-container { flex-direction: row; justify-content: space-between; align-items: center; }
    .site-logo { width: 120px; }
    
    /* Hero Image adjustment */
    .hero-asymmetric { background-position: 75% top; }
    
    /* Badges (Labels) na mesma linha no celular */
    .floating-badges { gap: 10px; flex-wrap: nowrap; justify-content: space-between; }
    .badge-item { font-size: 0.6rem; gap: 4px; letter-spacing: 1px; }
    .badge-item svg { width: 12px; height: 12px; }
    
    /* Benefits Grid - Evitar corte no mobile */
    .benefits-diamond-grid { grid-template-columns: 1fr; }
    
    /* Footer Mobile */
    .footer-top-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-brand { align-items: center; }
    .footer-legal-links { flex-direction: column; gap: 15px; }
    .footer-cta-col { align-items: center; }
}
