:root {
  --ink: #08182f;
  --ink-2: #122847;
  --cream: #f7f4ec;
  --paper: #fffdf8;
  --gold: #f7c844;
  --gold-deep: #e6a719;
  --teal: #1b8f86;
  --blue: #2563eb;
  --muted: #5c6878;
  --line: #dfe3e8;
  --white: #fff;
  --danger: #b42318;
  --success: #18794e;
  --shadow: 0 24px 70px rgba(8, 24, 47, .12);
  --radius: 22px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Sans", system-ui, sans-serif; font-size: 16px; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, .button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 .6em; font-family: "Manrope", system-ui, sans-serif; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 6.5vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.2rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 780px; }
.section { padding: clamp(76px, 9vw, 128px) 0; }
.section-sm { padding: 54px 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-cream { background: var(--cream); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 44px; }
.section-head > div { max-width: 730px; }
.section-head p { max-width: 500px; color: var(--muted); }
.section-dark .section-head p { color: #bac5d5; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--teal); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 3px; content: ""; border-radius: 9px; background: currentColor; }
.section-dark .eyebrow, .hero .eyebrow { color: var(--gold); }
.lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.section-dark .lead { color: #cbd4e0; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-weight: 700; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; padding: 0 24px; border: 1px solid transparent; border-radius: 11px; background: var(--gold); color: var(--ink); font-weight: 800; box-shadow: 0 10px 25px rgba(247, 200, 68, .18); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); background: #ffd45f; box-shadow: 0 14px 32px rgba(247, 200, 68, .28); }
.button-outline { border-color: rgba(255,255,255,.35); background: transparent; color: var(--white); box-shadow: none; }
.button-outline:hover { background: rgba(255,255,255,.08); }
.button-dark { background: var(--ink); color: var(--white); box-shadow: none; }
.button-small { min-height: 40px; padding: 0 16px; font-size: .9rem; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; padding: 10px 14px; transform: translateY(-150%); border-radius: 6px; background: var(--white); color: var(--ink); }
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { position: fixed; z-index: 50; top: 0; right: 0; left: 0; color: var(--white); transition: background .2s ease, box-shadow .2s ease; }
.site-header.is-scrolled { background: rgba(8,24,47,.96); box-shadow: 0 8px 30px rgba(0,0,0,.14); backdrop-filter: blur(16px); }
.nav-wrap { display: flex; min-height: 82px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: "Manrope", sans-serif; font-size: 1.28rem; font-weight: 800; letter-spacing: -.04em; }
.brand img { width: auto; height: 46px; object-fit: contain; }
.brand-mark { display: inline-grid; width: 38px; height: 38px; place-items: center; border-radius: 11px 4px 11px 4px; background: var(--gold); color: var(--ink); font-size: 1.2rem; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a { padding: 10px 14px; border-radius: 8px; color: #d8e1ec; font-weight: 600; }
.site-nav a:hover, .site-nav a.is-active { color: var(--white); background: rgba(255,255,255,.08); }
.site-nav .nav-cta { margin-left: 8px; padding: 11px 18px; background: var(--gold); color: var(--ink); }
.site-nav .nav-cta:hover, .site-nav .nav-cta.is-active { background: #ffd45f; color: var(--ink); }
.nav-toggle { display: none; width: 44px; height: 42px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 0; border-radius: 9px; background: rgba(255,255,255,.1); }
.nav-toggle > span:not(.sr-only) { width: 21px; height: 2px; background: white; }

.hero { position: relative; min-height: max(760px, 100svh); overflow: hidden; padding: 0; color: var(--white); background: var(--ink); }
.hero::before, .hero::after { content: none; }
.hero-slider-track { min-height: max(760px, 100svh); }
.hero-grid { position: static; z-index: 1; display: flex; min-height: max(760px, 100svh); align-items: center; padding-top: 128px; padding-bottom: 150px; }
.hero-copy { position: relative; z-index: 3; width: min(100%, 780px); text-shadow: 0 2px 26px rgba(0,0,0,.3); }
.hero h1, .hero-heading { max-width: 870px; font-size: clamp(2.65rem, 6.5vw, 5.7rem); }
.hero h1 em, .hero-heading em { color: var(--gold); font-style: normal; }
.hero-copy > p { max-width: 690px; color: #c5cfdd; font-size: clamp(1.08rem, 2vw, 1.3rem); }
.hero-slide { position: relative; z-index: 1; min-height: max(760px, 100svh); }
.hero-slide:nth-child(3) .hero-copy { width: min(100%, 710px); margin-left: auto; }
.hero-slide.is-active { animation: heroReveal .55s ease both; }
@keyframes heroReveal { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.offer-price { display: flex; width: fit-content; align-items: center; gap: 14px; margin: 0 0 22px; padding: 9px 10px 9px 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: rgba(255,255,255,.07); }
.offer-price span { color: #d5deea; font-weight: 700; }
.offer-price strong { padding: 8px 13px; border-radius: 8px; background: var(--gold); color: var(--ink); font-family: "Manrope", sans-serif; font-size: 1.25rem; }
.hero-copy .offer-note { margin-top: -24px; color: #9fadc0; font-size: .78rem; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 44px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; color: #cbd4e0; font-size: .92rem; }
.hero-proof span::before { margin-right: 8px; color: var(--gold); content: "●"; }
.hero-visual { position: absolute; z-index: 0; inset: 0; min-height: 100%; margin: 0; }
.hero-visual > img { width: 100%; height: 100%; border: 0; border-radius: 0; object-fit: cover; object-position: center; box-shadow: none; }
.hero-slide:first-child .hero-visual > img { object-position: 58% center; }
.hero-slide:nth-child(2) .hero-visual > img { object-position: 55% center; }
.hero-slide:nth-child(3) .hero-visual > img { object-position: 35% center; }
.hero-visual::after { position: absolute; z-index: 1; inset: 0; content: ""; pointer-events: none; border-radius: 0; background: linear-gradient(90deg, rgba(4,15,31,.97) 0%, rgba(4,15,31,.9) 33%, rgba(4,15,31,.5) 61%, rgba(4,15,31,.14) 100%); }
.hero-slide:nth-child(3) .hero-visual::after { background: linear-gradient(270deg, rgba(4,15,31,.97) 0%, rgba(4,15,31,.9) 34%, rgba(4,15,31,.5) 66%, rgba(4,15,31,.16) 100%); }
.hero-panel { position: absolute; z-index: 2; right: max(28px, calc((100vw - var(--container)) / 2)); bottom: 112px; left: auto; width: min(340px, 28vw); padding: 20px; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; background: rgba(8,24,47,.74); box-shadow: 0 24px 60px rgba(0,0,0,.28); backdrop-filter: blur(18px); }
.hero-slide:nth-child(3) .hero-panel { right: auto; left: max(28px, calc((100vw - var(--container)) / 2)); }
.hero-panel::before { position: absolute; top: -10px; left: 35px; width: 78px; height: 6px; content: ""; border-radius: 4px; background: var(--gold); }
.hero-panel-label { color: var(--gold); font-size: .75rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero-panel h2 { margin: 10px 0 0; font-size: 1.45rem; }
.hero-panel.offer-panel { border-color: rgba(247,200,68,.45); }
.hero-slider-controls { position: absolute; z-index: 4; right: 0; bottom: 28px; left: 50%; display: flex; align-items: center; gap: 10px; margin-top: 0; transform: translateX(-50%); }
.slider-dots { display: flex; flex: 1; gap: 8px; }
.slider-dot, .slider-arrow, .slider-pause { min-height: 43px; border: 1px solid rgba(255,255,255,.18); border-radius: 9px; background: rgba(255,255,255,.06); color: #c7d1de; font-weight: 700; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.slider-dot { flex: 1; padding: 0 13px; text-align: left; }
.slider-dot span { margin-right: 7px; color: var(--gold); font-size: .75rem; }
.slider-dot:hover, .slider-dot.is-active, .slider-arrow:hover, .slider-pause:hover { border-color: rgba(247,200,68,.7); background: rgba(247,200,68,.12); color: var(--white); }
.slider-dot.is-active { box-shadow: inset 0 -3px 0 var(--gold); }
.slider-arrow { width: 43px; flex: 0 0 43px; font-size: 1.1rem; }
.slider-pause { padding: 0 14px; font-size: .76rem; }
.outcome-list { display: grid; gap: 14px; }
.outcome { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; padding: 14px; border-radius: 14px; background: rgba(255,255,255,.065); }
.outcome-number { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink); font-weight: 800; }
.outcome strong { display: block; }
.outcome small { color: #b9c5d3; }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-wrap { padding: 34px 0; }
.trust-label { margin-bottom: 20px; color: var(--muted); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.logo-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.client-logo { display: flex; min-height: 70px; align-items: center; justify-content: center; padding: 12px; border: 1px solid #e8ebef; border-radius: 12px; background: #fbfbfa; color: #556174; font-family: "Manrope", sans-serif; font-size: .83rem; font-weight: 800; line-height: 1.2; text-align: center; }
.client-logo img { max-width: 120px; max-height: 44px; object-fit: contain; }

.bucket-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.bucket-card { position: relative; overflow: hidden; padding: clamp(30px, 5vw, 52px); border-radius: var(--radius); background: var(--cream); }
.bucket-card.grow { color: var(--white); background: var(--ink-2); }
.bucket-card.visual-card { padding: 0; }
.image-wrap { position: relative; overflow: hidden; }
.bucket-image { width: 100%; height: 270px; object-fit: cover; transition: transform .5s ease; }
.visual-card:hover .bucket-image { transform: scale(1.025); }
.bucket-body { padding: clamp(30px, 5vw, 48px); }
.bucket-card .bucket-tag { display: inline-block; margin-bottom: 50px; padding: 6px 10px; border-radius: 6px; background: var(--gold); color: var(--ink); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.visual-card .bucket-tag { margin-bottom: 28px; }
.bucket-card h3 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.bucket-card p { max-width: 490px; color: var(--muted); }
.bucket-card.grow p { color: #c5cedb; }
.service-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 32px; }
.service-pills span { padding: 7px 11px; border: 1px solid rgba(8,24,47,.12); border-radius: 100px; background: rgba(255,255,255,.55); font-size: .86rem; }
.grow .service-pills span { border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.07); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.feature-index { margin-bottom: 35px; color: var(--teal); font-family: "Manrope", sans-serif; font-size: .85rem; font-weight: 800; }
.feature-card p { color: var(--muted); }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card { display: flex; min-height: 410px; flex-direction: column; justify-content: space-between; padding: 30px; border-radius: 20px; background: var(--white); color: var(--ink); transition: transform .2s ease, box-shadow .2s ease; }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.case-card:nth-child(2) { background: var(--gold); }
.case-card:nth-child(3) { background: #dbece9; }
.case-category { color: var(--teal); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.case-card:nth-child(2) .case-category { color: #795300; }
.case-card h3 { margin-top: 14px; font-size: 1.65rem; }
.case-card p { color: var(--muted); }
.case-result { padding-top: 22px; border-top: 1px solid rgba(8,24,47,.12); font-weight: 700; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { display: flex; min-height: 330px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); color: var(--ink); box-shadow: 0 14px 40px rgba(8,24,47,.07); }
.section-dark .testimonial-card { border-color: rgba(255,255,255,.12); background: var(--ink-2); color: var(--white); }
.rating { display: flex; align-items: center; gap: 3px; color: #c7cdd5; }
.rating .filled { color: var(--gold-deep); }
.rating strong { margin-left: 8px; color: var(--ink); font-size: .78rem; }
.section-dark .rating strong { color: var(--white); }
.testimonial-card blockquote { margin: 30px 0; color: #344258; font-family: "Manrope", sans-serif; font-size: 1.12rem; font-weight: 600; line-height: 1.6; }
.section-dark .testimonial-card blockquote { color: #d7e0eb; }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-card footer strong, .testimonial-card footer small { display: block; }
.testimonial-card footer small { color: var(--muted); }
.section-dark .testimonial-card footer small { color: #9eadc0; }
.testimonial-avatar { display: grid; width: 44px; height: 44px; flex: 0 0 44px; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink); font-family: "Manrope", sans-serif; font-weight: 800; }
.testimonial-awaiting { display: flex; max-width: 820px; align-items: center; gap: 28px; padding: 30px; border: 1px dashed #bdc5cf; border-radius: 18px; background: rgba(255,255,255,.55); }
.section-dark .testimonial-awaiting { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.05); }
.testimonial-awaiting .rating { flex: 0 0 auto; font-size: 1.4rem; }
.testimonial-awaiting h3 { margin-bottom: 5px; }
.testimonial-awaiting p { margin: 0; color: var(--muted); }
.section-dark .testimonial-awaiting p { color: #aebaca; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: process; }
.process-step { position: relative; padding: 28px; border-left: 1px solid rgba(255,255,255,.17); counter-increment: process; }
.process-step::before { display: grid; width: 48px; height: 48px; margin-bottom: 34px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--gold); content: "0" counter(process); font-weight: 800; }
.process-step p { color: #b9c5d3; }

.lead-section { background: linear-gradient(135deg, var(--gold) 0%, #ffdb75 100%); }
.lead-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 90px); align-items: start; }
.lead-intro { position: sticky; top: 120px; }
.lead-intro .eyebrow { color: #775306; }
.lead-intro ul { padding: 0; list-style: none; }
.lead-intro li { margin: 12px 0; font-weight: 700; }
.lead-intro li::before { margin-right: 10px; content: "✓"; }
.lead-form { padding: clamp(28px, 5vw, 48px); border-radius: 22px; background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #cfd5dc; border-radius: 9px; outline: none; background: #fff; color: var(--ink); transition: border .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: .82rem; }
.alert { margin-bottom: 20px; padding: 13px 15px; border-radius: 8px; background: #fee4e2; color: var(--danger); }
.alert-success { background: #dcfae6; color: var(--success); }
.honeypot { position: absolute !important; left: -9999px !important; }

.page-hero { padding: 164px 0 82px; color: var(--white); background: var(--ink); }
.page-hero h1 { max-width: 940px; font-size: clamp(2.7rem, 6vw, 5rem); }
.page-hero p { max-width: 760px; color: #c3cedc; font-size: 1.18rem; }
.crumbs { margin-bottom: 30px; color: #9cacc0; font-size: .85rem; }
.crumbs a { color: var(--gold); }
.service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; counter-reset: service-card; }
.service-photo { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; align-items: stretch; min-height: 360px; margin: 0 0 28px; overflow: hidden; border-radius: 20px; background: var(--ink); box-shadow: var(--shadow); }
.service-photo img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.service-photo figcaption { display: flex; flex-direction: column; justify-content: end; padding: 34px; color: #d2dbe6; font-size: 1.05rem; }
.service-photo figcaption span { margin-bottom: 14px; color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-row { position: relative; display: grid; min-height: 310px; grid-template-columns: 72px 1fr; grid-template-rows: 1fr auto; gap: 22px; align-items: start; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-top: 4px solid var(--teal); border-radius: 22px; background: linear-gradient(145deg, var(--white) 0%, #fbfcfd 100%); box-shadow: 0 10px 30px rgba(8,24,47,.045); counter-increment: service-card; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-row:nth-child(2n) { border-top-color: var(--gold-deep); }
.service-row::after { position: absolute; top: 18px; right: 24px; color: rgba(8,24,47,.055); content: "0" counter(service-card); font-family: "Manrope", sans-serif; font-size: 4.7rem; font-weight: 800; line-height: 1; letter-spacing: -.08em; }
.service-row:hover { z-index: 1; transform: translateY(-6px); border-color: rgba(27,143,134,.42); box-shadow: 0 24px 55px rgba(8,24,47,.12); }
.service-list > .service-row:last-child:nth-child(odd) { grid-column: 1 / -1; min-height: 250px; }
.service-icon { position: relative; z-index: 1; display: grid; width: 72px; height: 72px; place-items: center; border: 1px solid rgba(8,24,47,.07); border-radius: 20px; background: var(--cream); color: var(--teal); box-shadow: inset 0 1px 0 rgba(255,255,255,.8); }
.service-icon img { width: 44px; height: 44px; object-fit: contain; }
.service-row > div:nth-child(2) { position: relative; z-index: 1; align-self: center; padding-right: 42px; }
.service-row p { max-width: 640px; margin: 0; color: var(--muted); }
.service-row h3 { margin-bottom: 8px; font-size: 1.38rem; }
.service-row > .text-link { position: relative; z-index: 1; grid-column: 1 / -1; align-self: end; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); }
.service-row > .text-link::after { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); }
.service-row:hover > .text-link::after { transform: translateX(4px); background: var(--teal); }
.services-all-link { display: flex; justify-content: center; margin-top: 34px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 100px); align-items: center; }
.check-list { display: grid; gap: 13px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 10px; }
.check-list li::before { color: var(--teal); content: "✓"; font-weight: 800; }
.seo-panel { padding: 38px; border-radius: 22px; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.seo-panel p { color: #c2ccda; }
.seo-panel .metric { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.seo-panel .metric span:last-child { color: var(--gold); font-weight: 800; }
.work-detail-grid { display: grid; gap: 26px; }
.work-detail { display: grid; grid-template-columns: .65fr 1.35fr; gap: 44px; padding: 42px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.work-detail h2 { font-size: 2rem; }
.work-detail dl { display: grid; gap: 17px; margin: 0; }
.work-detail dt { color: var(--teal); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.work-detail dd { margin: 4px 0 0; color: var(--muted); }
.about-intro { align-items: start; }
.founder-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(42px, 8vw, 100px); align-items: center; }
.founder-portrait { position: relative; display: grid; min-height: 520px; place-items: center; overflow: hidden; border-radius: 28px; background: linear-gradient(145deg, var(--ink), var(--ink-2)); box-shadow: var(--shadow); }
.founder-portrait::before, .founder-portrait::after { position: absolute; content: ""; border-radius: 50%; }
.founder-portrait::before { top: -90px; right: -90px; width: 300px; height: 300px; border: 60px solid rgba(247,200,68,.12); }
.founder-portrait::after { bottom: -80px; left: -80px; width: 260px; height: 260px; background: rgba(27,143,134,.22); }
.founder-portrait > span { position: relative; z-index: 1; display: grid; width: 150px; height: 150px; place-items: center; border-radius: 42px 14px 42px 14px; background: var(--gold); color: var(--ink); font-family: "Manrope", sans-serif; font-size: 5rem; font-weight: 800; }
.founder-portrait small { position: absolute; z-index: 1; right: 24px; bottom: 22px; left: 24px; color: #aebaca; text-align: center; }
.founder-role { margin-top: -12px; color: var(--teal); font-weight: 800; letter-spacing: .03em; }
.founder-principle { margin: 30px 0 0; padding: 25px 28px; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; background: var(--white); color: #344258; }
.founder-principle strong { display: block; margin-bottom: 6px; color: var(--teal); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.founder-principle p { margin: 0; font-family: "Manrope", sans-serif; font-size: 1.1rem; font-weight: 600; }
.section-dark .about-value { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.06); }
.section-dark .about-value p { color: #b9c5d3; }
.contact-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 50px; }
.contact-card { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.contact-list { display: grid; gap: 20px; margin-top: 30px; }
.contact-item small { display: block; color: var(--muted); }
.contact-item a, .contact-item strong { font-weight: 700; }
.map-frame { width: 100%; min-height: 390px; border: 0; border-radius: 18px; background: #e7ebef; }
.faq-list { max-width: 850px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 22px 0; border: 0; background: transparent; color: var(--ink); font-weight: 800; text-align: left; }
.faq-question::after { content: "+"; font-size: 1.5rem; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { padding: 0 0 20px; color: var(--muted); }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.insight-card { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.insight-card small { color: var(--teal); font-weight: 800; text-transform: uppercase; }
.insight-card p { color: var(--muted); }
.article { max-width: 800px; }
.article h2 { margin-top: 48px; font-size: 2rem; }
.article h3 { margin-top: 32px; }
.article p, .article li { color: #425167; }
.article li { margin-bottom: 9px; }
.thank-you { min-height: 100vh; display: grid; place-items: center; padding: 130px 20px 80px; color: var(--white); background: var(--ink); text-align: center; }
.thank-you-card { max-width: 720px; }
.thank-icon { display: grid; width: 82px; height: 82px; margin: 0 auto 28px; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink); font-size: 2.3rem; font-weight: 800; }
.thank-you h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.thank-you p { color: #c6d0dc; font-size: 1.15rem; }

.site-footer { padding: 76px 0 24px; color: #c1ccda; background: #061226; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 70px; }
.footer-grid > div:first-child p { max-width: 400px; margin-top: 22px; }
.footer-grid h2 { margin-bottom: 18px; color: var(--white); font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid a, .footer-grid address { display: block; margin: 10px 0; font-style: normal; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand { color: var(--white); }
.social-links { display: flex; gap: 16px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }
.footer-bottom p { margin: 0; }
.whatsapp-fab { position: fixed; z-index: 45; right: 22px; bottom: 22px; display: grid; width: 60px; height: 60px; place-items: center; border: 3px solid var(--white); border-radius: 50%; background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,.22); transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-fab img { width: 39px; height: 39px; object-fit: contain; }
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 15px 35px rgba(0,0,0,.28); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .site-nav { position: absolute; top: 72px; right: 20px; left: 20px; display: none; align-items: stretch; flex-direction: column; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: var(--ink-2); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav .nav-cta { margin: 4px 0 0; text-align: center; }
  .lead-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero, .hero-slider-track, .hero-slide, .hero-grid { min-height: max(740px, 100svh); }
  .hero-panel { display: none; }
  .hero-visual { max-width: none; min-height: 100%; }
  .hero-visual > img { height: 100%; }
  .logo-row { grid-template-columns: repeat(3, 1fr); }
  .feature-grid, .case-grid, .insight-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-intro { position: static; }
  .service-list { grid-template-columns: 1fr; }
  .service-list > .service-row:last-child:nth-child(odd) { grid-column: auto; }
  .service-row { min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 30px; }
  .hero { padding: 0; }
  .hero, .hero-slider-track, .hero-slide, .hero-grid { min-height: max(760px, 100svh); }
  .hero-grid { gap: 0; padding-top: 112px; padding-bottom: 148px; }
  .hero h1, .hero-heading { font-size: clamp(2.45rem, 11vw, 4.2rem); }
  .hero-slide:nth-child(3) .hero-copy { margin-left: 0; }
  .hero-slide:nth-child(3) .hero-visual::after { background: linear-gradient(90deg, rgba(4,15,31,.97) 0%, rgba(4,15,31,.88) 58%, rgba(4,15,31,.48) 100%); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero-visual { min-height: 100%; }
  .hero-visual > img { height: 100%; border-radius: 0; }
  .hero-slider-controls { bottom: 16px; align-items: stretch; flex-wrap: wrap; margin-top: 0; }
  .slider-dots { order: -1; width: 100%; flex-basis: 100%; }
  .slider-dot { min-width: 0; padding: 8px; font-size: .72rem; text-align: center; }
  .slider-dot span { display: block; margin: 0; }
  .slider-pause { margin-left: auto; }
  .offer-price { align-items: flex-start; flex-direction: column; gap: 6px; }
  .service-photo { grid-template-columns: 1fr; }
  .service-photo img { min-height: 260px; height: 260px; }
  .service-photo figcaption { padding: 24px; }
  .logo-row { grid-template-columns: repeat(2, 1fr); }
  .bucket-grid, .feature-grid, .case-grid, .insight-grid, .testimonial-grid, .split, .founder-grid, .footer-grid { grid-template-columns: 1fr; }
  .testimonial-awaiting { align-items: flex-start; flex-direction: column; }
  .founder-portrait { min-height: 400px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-top: 1px solid rgba(255,255,255,.15); border-left: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .service-row { min-height: 0; grid-template-columns: 62px 1fr; gap: 18px; padding: 25px; border-radius: 17px; }
  .service-icon { width: 62px; height: 62px; border-radius: 16px; }
  .service-icon img { width: 38px; height: 38px; }
  .service-row > div:nth-child(2) { padding-right: 10px; }
  .service-row h3 { font-size: 1.18rem; }
  .service-row > .text-link { grid-column: 1 / -1; }
  .work-detail { grid-template-columns: 1fr; gap: 20px; padding: 27px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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