/* ─── VARIÁVEIS ─── */
:root {
  --sage: #6b7c5c;
  --sage-light: #8a9b6e;
  --amber: #b8732a;
  --cream: #ede9de;
  --cream-dark: #e0dace;
  --charcoal: #2a2a28;
  --charcoal-soft: #3d3d3a;
  --muted: #8a8878;
  --white: #faf9f6;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
font-family: var(--font-body);
background-color: var(--white);
color: var(--charcoal);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
position: fixed; top: 0; left: 0; right: 0;
z-index: 100;
padding: 20px 60px;
display: flex; align-items: center; justify-content: space-between;
background: rgba(250,249,246,0.92);
backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(107,124,92,0.12);
transition: all 0.3s ease;
}
.nav-logo {
font-family: var(--font-display);
font-size: 1.15rem;
font-weight: 600;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--charcoal);
line-height: 1.2;
}
.nav-logo span {
display: block;
font-size: 0.6rem;
font-family: var(--font-body);
font-weight: 300;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--muted);
margin-top: 2px;
}
.nav-cta {
font-family: var(--font-body);
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--white);
background: var(--sage);
padding: 11px 24px;
border: none;
cursor: pointer;
text-decoration: none;
transition: background 0.25s, transform 0.2s;
}
.nav-cta:hover { background: var(--charcoal); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
min-height: 100vh;
display: grid;
grid-template-columns: 1fr 1fr;
padding-top: 80px;
background: var(--cream);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute; top: 0; right: 0;
width: 55%; height: 100%;
background: var(--charcoal);
z-index: 0;
}
.hero-left {
position: relative; z-index: 1;
padding: 80px 60px 80px 80px;
display: flex; flex-direction: column; justify-content: center;
}
.hero-eyebrow {
font-size: 0.68rem;
font-weight: 500;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--sage);
margin-bottom: 28px;
display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
content: '';
display: block; width: 32px; height: 1px;
background: var(--sage);
}
.hero h1 {
font-family: var(--font-display);
font-size: clamp(2.4rem, 4vw, 3.6rem);
font-weight: 400;
line-height: 1.18;
color: var(--charcoal);
margin-bottom: 28px;
}
.hero h1 em {
font-style: italic;
color: var(--sage);
font-weight: 300;
}
.hero-sub {
font-size: 1rem;
font-weight: 300;
line-height: 1.75;
color: var(--charcoal-soft);
max-width: 460px;
margin-bottom: 40px;
}
.hero-bullets {
list-style: none;
margin-bottom: 50px;
display: flex; flex-direction: column; gap: 12px;
}
.hero-bullets li {
display: flex; align-items: flex-start; gap: 12px;
font-size: 0.88rem;
font-weight: 400;
color: var(--charcoal-soft);
line-height: 1.5;
}
.hero-bullets li::before {
content: '—';
color: var(--sage);
flex-shrink: 0;
font-weight: 300;
}
.hero-right {
position: relative; z-index: 1;
display: flex; align-items: center; justify-content: center;
padding: 80px 80px 80px 60px;
}
.hero-card {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.1);
padding: 56px 48px;
color: var(--cream);
max-width: 400px;
width: 100%;
}
.hero-card-quote {
font-family: var(--font-display);
font-size: clamp(1.6rem, 2.5vw, 2.4rem);
font-weight: 300;
font-style: italic;
line-height: 1.45;
color: var(--cream);
margin-bottom: 32px;
}
.hero-card-quote strong {
font-weight: 500;
font-style: normal;
color: var(--amber);
}
.hero-card-divider {
width: 40px; height: 1px;
background: rgba(255,255,255,0.2);
margin-bottom: 24px;
}
.hero-card-label {
font-size: 0.72rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: rgba(255,255,255,0.4);
font-weight: 400;
}

/* ─── BUTTONS ─── */
.btn-primary {
display: inline-block;
font-family: var(--font-body);
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--white);
background: var(--sage);
padding: 16px 36px;
border: none;
cursor: pointer;
text-decoration: none;
transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
border: 1px solid var(--sage);
}
.btn-primary:hover {
background: var(--charcoal);
border-color: var(--charcoal);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(42,42,40,0.15);
}
.btn-outline {
display: inline-block;
font-family: var(--font-body);
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--sage);
background: transparent;
padding: 16px 36px;
border: 1px solid var(--sage);
cursor: pointer;
text-decoration: none;
transition: all 0.25s;
}
.btn-outline:hover {
background: var(--sage);
color: var(--white);
transform: translateY(-2px);
}
.btn-light {
display: inline-block;
font-family: var(--font-body);
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--charcoal);
background: var(--cream);
padding: 16px 36px;
border: none;
cursor: pointer;
text-decoration: none;
transition: all 0.25s;
}
.btn-light:hover {
background: var(--white);
transform: translateY(-2px);
}

/* ─── SECTIONS ─── */
section { padding: 100px 0; }

.container {
max-width: 1180px;
margin: 0 auto;
padding: 0 60px;
}

.section-eyebrow {
font-size: 0.68rem;
font-weight: 500;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--sage);
margin-bottom: 20px;
display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before {
content: '';
display: block; width: 24px; height: 1px;
background: var(--sage);
}

h2 {
font-family: var(--font-display);
font-size: clamp(2rem, 3.5vw, 3rem);
font-weight: 400;
line-height: 1.22;
color: var(--charcoal);
}
h2 em { font-style: italic; font-weight: 300; color: var(--sage); }

h3 {
font-family: var(--font-display);
font-size: 1.5rem;
font-weight: 500;
color: var(--charcoal);
}

p {
font-size: 0.95rem;
line-height: 1.8;
color: var(--charcoal-soft);
font-weight: 300;
}

/* ─── STATS BAR ─── */
.stats-bar {
background: var(--charcoal);
padding: 48px 0;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
}
.stat-item {
padding: 0 40px;
border-right: 1px solid rgba(255,255,255,0.08);
text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
font-family: var(--font-display);
font-size: 2.8rem;
font-weight: 300;
color: var(--cream);
line-height: 1;
margin-bottom: 8px;
}
.stat-number span { color: var(--amber); }
.stat-label {
font-size: 0.7rem;
font-weight: 400;
letter-spacing: 0.15em;
text-transform: uppercase;
color: rgba(255,255,255,0.35);
}

/* ─── PROBLEM ─── */
.problem-section { background: var(--white); }
.problem-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
margin-top: 60px;
}
.problem-cards {
display: flex; flex-direction: column; gap: 1px;
}
.problem-card {
background: var(--cream);
padding: 28px 32px;
display: flex; align-items: flex-start; gap: 20px;
transition: transform 0.2s;
}
.problem-card:hover { transform: translateX(4px); }
.problem-icon {
width: 40px; height: 40px;
background: var(--charcoal);
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
font-size: 1rem;
color: var(--cream);
}
.problem-card p {
font-size: 0.9rem;
font-weight: 400;
color: var(--charcoal);
line-height: 1.55;
margin: 0;
}
.problem-card p strong {
display: block;
font-weight: 500;
margin-bottom: 4px;
}
.problem-text-col {}
.problem-large-quote {
font-family: var(--font-display);
font-size: clamp(1.4rem, 2.5vw, 2rem);
font-weight: 300;
font-style: italic;
line-height: 1.55;
color: var(--charcoal-soft);
margin-bottom: 32px;
padding-left: 24px;
border-left: 2px solid var(--sage);
}

/* ─── SOLUTION ─── */
.solution-section { background: var(--cream); }
.solution-inner {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 80px;
align-items: start;
margin-top: 60px;
}
.solution-pillars {
display: flex; flex-direction: column; gap: 32px;
}
.pillar {
display: flex; flex-direction: column; gap: 8px;
}
.pillar-num {
font-family: var(--font-display);
font-size: 3rem;
font-weight: 300;
color: var(--cream-dark);
line-height: 1;
}
.pillar-title {
font-size: 0.8rem;
font-weight: 500;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--charcoal);
}
.pillar-desc {
font-size: 0.85rem;
font-weight: 300;
color: var(--muted);
line-height: 1.65;
margin: 0;
}
.solution-visual {
background: var(--charcoal);
padding: 64px 56px;
color: var(--cream);
position: relative;
overflow: hidden;
}
.solution-visual::before {
content: '""';
position: absolute; top: -20px; left: 24px;
font-family: var(--font-display);
font-size: 12rem;
line-height: 1;
color: rgba(255,255,255,0.04);
font-weight: 300;
}
.solution-visual-quote {
font-family: var(--font-display);
font-size: clamp(1.4rem, 2.2vw, 2rem);
font-weight: 300;
font-style: italic;
line-height: 1.55;
margin-bottom: 32px;
color: var(--cream);
position: relative; z-index: 1;
}
.solution-visual-quote strong {
font-weight: 500;
font-style: normal;
color: var(--amber);
}
.testimonial-author {
display: flex; flex-direction: column; gap: 4px;
position: relative; z-index: 1;
}
.testimonial-author strong {
font-size: 0.82rem;
font-weight: 500;
letter-spacing: 0.1em;
color: var(--cream);
}
.testimonial-author span {
font-size: 0.72rem;
color: rgba(255,255,255,0.4);
letter-spacing: 0.1em;
}

/* ─── DIFFERENTIALS ─── */
.diff-section { background: var(--white); }
.diff-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1px;
background: var(--cream-dark);
margin-top: 60px;
}
.diff-card {
background: var(--white);
padding: 48px 44px;
transition: background 0.25s;
}
.diff-card:hover { background: var(--cream); }
.diff-card-num {
font-family: var(--font-display);
font-size: 0.9rem;
font-weight: 400;
color: var(--sage);
margin-bottom: 20px;
letter-spacing: 0.1em;
}
.diff-card h3 {
font-size: 1.25rem;
margin-bottom: 16px;
}
.diff-card p {
font-size: 0.88rem;
line-height: 1.75;
margin: 0;
}

/* ─── SERVICES ─── */
.services-section { background: var(--cream); }
.services-header {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: end;
margin-bottom: 64px;
}
.services-intro p { max-width: 400px; }
.services-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}
.service-card {
background: var(--white);
padding: 44px 40px;
position: relative;
overflow: hidden;
transition: transform 0.25s, box-shadow 0.25s;
border-bottom: 2px solid transparent;
}
.service-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(42,42,40,0.08);
border-bottom-color: var(--sage);
}
.service-card-tag {
font-size: 0.65rem;
font-weight: 500;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--sage);
margin-bottom: 20px;
}
.service-card h3 {
font-size: 1.2rem;
margin-bottom: 16px;
}
.service-card p {
font-size: 0.85rem;
line-height: 1.75;
margin: 0;
}
.service-card-bg {
position: absolute;
bottom: -20px; right: -10px;
font-family: var(--font-display);
font-size: 8rem;
line-height: 1;
color: var(--cream);
font-weight: 300;
z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card--featured {
grid-column: 1 / -1;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0 48px;
align-items: start;
}
.service-card--featured .service-card-tag { grid-column: 1 / -1; }
.service-card--featured h3 { grid-column: 1; }
.service-card--featured > p { grid-column: 1; margin: 0; }
.service-card--featured .service-card-bg {
position: static;
grid-column: 2; grid-row: 3;
font-size: 5rem;
color: var(--cream);
bottom: auto; right: auto;
text-align: right;
align-self: end;
}
.service-features {
grid-column: 2;
grid-row: 2 / 4;
list-style: none;
display: flex; flex-direction: column; gap: 8px;
align-self: start;
}
.service-features li {
display: flex; align-items: flex-start; gap: 10px;
font-size: 0.83rem;
font-weight: 400;
color: var(--charcoal-soft);
line-height: 1.5;
padding: 11px 14px;
background: var(--cream);
position: relative; z-index: 1;
}
.service-features li::before {
content: '→';
color: var(--sage);
flex-shrink: 0;
font-size: 0.75rem;
}
@media (max-width: 900px) {
.service-card--featured { grid-template-columns: 1fr; }
.service-card--featured .service-card-tag,
.service-card--featured h3,
.service-card--featured > p,
.service-card--featured .service-card-bg { grid-column: 1; }
.service-features { grid-column: 1; grid-row: auto; margin-top: 16px; }
}

/* ─── PROCESS ─── */
.process-section { background: var(--charcoal); }
.process-section .section-eyebrow { color: rgba(237,233,222,0.5); }
.process-section .section-eyebrow::before { background: rgba(237,233,222,0.3); }
.process-section h2 { color: var(--cream); }
.process-steps {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
margin-top: 64px;
position: relative;
}
.process-steps::before {
content: '';
position: absolute;
top: 32px; left: 0; right: 0;
height: 1px;
background: rgba(255,255,255,0.08);
}
.process-step {
padding: 0 32px;
border-right: 1px solid rgba(255,255,255,0.06);
padding-top: 0;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child { border-right: none; padding-right: 0; }
.process-step-num {
width: 64px; height: 64px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.1);
display: flex; align-items: center; justify-content: center;
font-family: var(--font-display);
font-size: 1.6rem;
font-weight: 300;
color: var(--sage-light);
margin-bottom: 32px;
position: relative; z-index: 1;
}
.process-step h3 {
font-size: 1.05rem;
font-weight: 500;
color: var(--cream);
margin-bottom: 12px;
}
.process-step p {
font-size: 0.82rem;
color: rgba(237,233,222,0.45);
line-height: 1.75;
margin: 0;
}

/* ─── AUDIENCE ─── */
.audience-section { background: var(--white); }
.audience-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
margin-top: 60px;
}
.audience-list {
display: flex; flex-direction: column; gap: 0;
}
.audience-item {
display: flex; align-items: center; gap: 20px;
padding: 20px 0;
border-bottom: 1px solid var(--cream-dark);
transition: padding-left 0.2s;
}
.audience-item:hover { padding-left: 8px; }
.audience-item::before {
content: '';
width: 6px; height: 6px;
background: var(--sage);
border-radius: 50%;
flex-shrink: 0;
}
.audience-item span {
font-size: 0.92rem;
font-weight: 400;
color: var(--charcoal);
}
.audience-text h3 {
font-size: 1.4rem;
margin-bottom: 20px;
}
.audience-text p {
font-size: 0.9rem;
line-height: 1.8;
margin-bottom: 16px;
}
.audience-traits {
display: flex; flex-wrap: wrap; gap: 8px;
margin-top: 28px;
}
.trait-tag {
padding: 8px 16px;
border: 1px solid var(--cream-dark);
font-size: 0.72rem;
font-weight: 400;
letter-spacing: 0.1em;
color: var(--charcoal-soft);
background: var(--cream);
}

/* ─── SOCIAL PROOF ─── */
.proof-section { background: var(--cream); }
.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1px;
background: var(--cream-dark);
margin-top: 60px;
}
.testimonial-card {
background: var(--white);
padding: 44px 36px;
}
.testimonial-stars {
display: flex; gap: 4px;
margin-bottom: 20px;
}
.star { color: var(--amber); font-size: 0.8rem; }
.testimonial-text {
font-family: var(--font-display);
font-size: 1.05rem;
font-weight: 300;
font-style: italic;
line-height: 1.65;
color: var(--charcoal-soft);
margin-bottom: 28px;
}
.testimonial-divider {
width: 32px; height: 1px;
background: var(--cream-dark);
margin-bottom: 20px;
}
.testimonial-name {
font-size: 0.78rem;
font-weight: 500;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--charcoal);
margin-bottom: 4px;
}
.testimonial-role {
font-size: 0.72rem;
color: var(--muted);
letter-spacing: 0.05em;
}
.cases-row {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
margin-top: 24px;
}
.case-card {
background: var(--charcoal);
padding: 44px 40px;
color: var(--cream);
position: relative;
overflow: hidden;
}
.case-tag {
font-size: 0.65rem;
font-weight: 500;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--sage-light);
margin-bottom: 12px;
}
.case-card h3 {
color: var(--cream);
font-size: 1.15rem;
margin-bottom: 12px;
}
.case-card p {
color: rgba(237,233,222,0.55);
font-size: 0.82rem;
line-height: 1.75;
margin-bottom: 28px;
}
.case-metrics {
display: flex; flex-wrap: wrap; gap: 20px;
}
.metric {
display: flex; flex-direction: column; gap: 4px;
}
.metric-val {
font-family: var(--font-display);
font-size: 1.8rem;
font-weight: 300;
color: var(--cream);
line-height: 1;
}
.metric-val span { color: var(--amber); font-size: 1.1rem; }
.metric-label {
font-size: 0.65rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: rgba(255,255,255,0.3);
}
.clients-row {
margin-top: 24px;
background: var(--white);
padding: 40px 44px;
}
.clients-row-label {
font-size: 0.65rem;
font-weight: 500;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 24px;
}
.clients-list {
display: flex; flex-wrap: wrap; gap: 8px;
}
.client-tag {
padding: 8px 20px;
background: var(--cream);
font-size: 0.78rem;
font-weight: 400;
color: var(--charcoal);
letter-spacing: 0.05em;
}

/* ─── PHILOSOPHY ─── */
.philosophy-section {
background: var(--sage);
position: relative;
overflow: hidden;
}
.philosophy-section::before {
content: '""';
position: absolute; bottom: -80px; right: 40px;
font-family: var(--font-display);
font-size: 20rem;
line-height: 1;
color: rgba(0,0,0,0.06);
font-weight: 300;
}
.philosophy-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.philosophy-section .section-eyebrow { color: rgba(255,255,255,0.6); }
.philosophy-section .section-eyebrow::before { background: rgba(255,255,255,0.4); }
.philosophy-section h2 {
color: var(--white);
margin-bottom: 28px;
}
.philosophy-section h2 em { color: rgba(255,255,255,0.6); }
.philosophy-section p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.philosophy-principles {
display: flex; flex-direction: column; gap: 0;
position: relative; z-index: 1;
}
.principle {
display: flex; align-items: flex-start; gap: 20px;
padding: 24px 0;
border-bottom: 1px solid rgba(255,255,255,0.12);
}
.principle:last-child { border-bottom: none; }
.principle-icon {
width: 44px; height: 44px;
background: rgba(255,255,255,0.12);
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
font-size: 1.1rem;
color: var(--white);
}
.principle-content {}
.principle-content strong {
display: block;
font-size: 0.82rem;
font-weight: 500;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--white);
margin-bottom: 4px;
}
.principle-content p {
font-size: 0.82rem;
color: rgba(255,255,255,0.6);
margin: 0;
line-height: 1.6;
}

/* ─── CTA FINAL ─── */
.cta-section { background: var(--charcoal); padding: 120px 0; }
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-section .section-eyebrow {
justify-content: center;
color: rgba(237,233,222,0.4);
}
.cta-section .section-eyebrow::before { background: rgba(237,233,222,0.2); }
.cta-section h2 {
color: var(--cream);
margin-bottom: 20px;
font-size: clamp(2rem, 4vw, 3.2rem);
}
.cta-section h2 em { color: var(--sage-light); }
.cta-section p {
color: rgba(237,233,222,0.5);
font-size: 0.95rem;
margin-bottom: 48px;
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
.cta-contact {
margin-top: 48px;
padding-top: 48px;
border-top: 1px solid rgba(255,255,255,0.06);
display: flex; align-items: center; justify-content: center; gap: 40px;
}
.contact-item {
display: flex; flex-direction: column; gap: 4px;
text-align: center;
}
.contact-item span:first-child {
font-size: 0.62rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: rgba(255,255,255,0.25);
}
.contact-item a {
font-size: 0.85rem;
color: var(--cream);
text-decoration: none;
font-weight: 400;
transition: color 0.2s;
}
.contact-item a:hover { color: var(--sage-light); }

/* ─── FAQ ─── */
.faq-section { background: var(--white); }
.faq-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0 80px;
margin-top: 60px;
}
.faq-item {
padding: 28px 0;
border-bottom: 1px solid var(--cream-dark);
cursor: pointer;
}
.faq-q {
display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
font-size: 0.92rem;
font-weight: 500;
color: var(--charcoal);
margin-bottom: 0;
transition: color 0.2s;
line-height: 1.5;
}
.faq-q:hover { color: var(--sage); }
.faq-toggle {
width: 24px; height: 24px;
background: var(--cream);
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
font-size: 1rem;
color: var(--sage);
transition: transform 0.25s, background 0.2s;
}
.faq-item.open .faq-toggle {
transform: rotate(45deg);
background: var(--sage);
color: var(--white);
}
.faq-a {
font-size: 0.85rem;
font-weight: 300;
color: var(--charcoal-soft);
line-height: 1.8;
max-height: 0;
overflow: hidden;
transition: max-height 0.35s ease, margin-top 0.35s;
margin-top: 0;
}
.faq-item.open .faq-a {
max-height: 200px;
margin-top: 16px;
}

/* ─── FOOTER ─── */
footer {
background: var(--cream);
padding: 40px 0;
border-top: 1px solid var(--cream-dark);
}
.footer-inner {
display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
font-family: var(--font-display);
font-size: 1rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--charcoal);
line-height: 1.2;
}
.footer-logo span {
display: block;
font-size: 0.58rem;
font-family: var(--font-body);
font-weight: 300;
letter-spacing: 0.2em;
color: var(--muted);
}
.footer-copy {
font-size: 0.72rem;
color: var(--muted);
letter-spacing: 0.08em;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-3 { animation-delay: 0.3s; opacity: 0; }
.fade-up-4 { animation-delay: 0.4s; opacity: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
nav { padding: 16px 24px; }
.container { padding: 0 24px; }
.hero { grid-template-columns: 1fr; min-height: auto; }
.hero::before { display: none; }
.hero-left { padding: 60px 24px 40px; }
.hero-right {
background: var(--charcoal);
padding: 40px 24px 60px;
}
.hero-card { max-width: 100%; }
.stats-grid { grid-template-columns: repeat(2, 1fr); }
.stat-item { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.problem-grid, .solution-inner, .audience-grid, .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
.diff-grid, .services-grid, .testimonials-grid, .cases-row, .faq-grid { grid-template-columns: 1fr; }
.process-steps { grid-template-columns: repeat(2, 1fr); }
.process-steps::before { display: none; }
.process-step { padding: 0 0 32px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
.services-header { grid-template-columns: 1fr; gap: 24px; }
.cta-contact { flex-direction: column; gap: 24px; }
.footer-inner { flex-direction: column; gap: 16px; text-align: center; }
section { padding: 64px 0; }
}
