@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/geist-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/geist-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --green: #005039;
  --green-deep: #003e2d;
  --lime: #c5d95a;
  --cream: #f4f1e9;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #17231f;
  --muted: #5f6d68;
  --line: #d9dfdb;
  --container: 1180px;
  --radius: 14px;
  --shadow: 0 22px 60px rgba(16, 48, 38, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; overflow-x: clip; background: var(--paper); color: var(--ink); font-family: "Geist", Arial, Helvetica, sans-serif; }
body, main { text-align: left; }
main { width: 100%; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
section[id] { scroll-margin-top: 86px; }

:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 11px 15px; border-radius: 8px; background: var(--green-deep); color: white; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 30; width: 100%; background: rgba(255, 253, 248, .96); border-bottom: 1px solid rgba(0, 80, 57, .11); backdrop-filter: blur(14px); }
.header-inner { position: relative; max-width: 1400px; height: 78px; margin: auto; padding: 0 36px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand-logo { width: 190px; height: 50px; object-fit: contain; object-position: left center; }
.desktop-navigation { display: flex; align-items: center; gap: 22px; margin-left: auto; font-size: 13px; font-weight: 570; }
.desktop-navigation a { padding: 10px 0; transition: color .18s ease; }
.desktop-navigation a:hover { color: var(--green); }
.mobile-menu { display: none; }
.menu-toggle { width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); display: grid; place-content: center; gap: 4px; cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--green); border-radius: 2px; }
.mobile-navigation { position: absolute; top: calc(100% + 1px); left: 20px; right: 20px; padding: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 0 0 14px 14px; box-shadow: var(--shadow); }
.mobile-navigation[hidden] { display: none; }
.mobile-navigation a:not(.button) { display: block; padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 620; }
.mobile-navigation .button { width: 100%; margin-top: 16px; }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 23px; border: 1px solid var(--green); border-radius: 999px; background: var(--green); color: white; font-size: 14px; font-weight: 680; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); background: var(--green-deep); border-color: var(--green-deep); }
.button-small { min-height: 44px; padding: 0 19px; font-size: 13px; }
.button-outline { background: transparent; color: var(--green); }
.button-light { background: white; color: var(--green); border-color: white; }
.button-light:hover { background: var(--cream); color: var(--green); border-color: var(--cream); }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding: 8px 0 6px; border-bottom: 1px solid #9ca8a3; color: var(--ink); font-size: 14px; font-weight: 670; }
.text-link span { color: var(--green); }
.eyebrow { margin: 0 0 18px; color: var(--green); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 760; }
.eyebrow-light { color: var(--lime); }

.hero h1, .section h2, .studio-section h2, .app-section h2, .reviews-section h2, .contact h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.04em; text-wrap: balance; }
.hero { max-width: 1280px; min-height: min(780px, calc(100svh - 78px)); margin: 0 auto; padding: 38px 36px 54px; display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(48px, 6vw, 88px); align-items: center; }
.hero-copy { max-width: 690px; }
.hero h1 { max-width: 720px; font-size: clamp(56px, 5.8vw, 82px); line-height: .98; }
.hero h1 > span { display: block; margin-bottom: 16px; font-family: "Geist", Arial, Helvetica, sans-serif; font-size: .23em; line-height: 1.2; letter-spacing: .02em; color: var(--green); font-weight: 700; }
.hero h1 em, .contact h2 em { color: var(--green); font-weight: 400; }
.hero-lead { max-width: 650px; margin: 27px 0 31px; color: #46534f; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.58; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.hero-trust { list-style: none; padding: 26px 0 0; margin: 31px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; color: var(--muted); font-size: 12px; }
.hero-trust li { position: relative; padding-left: 23px; }
.hero-trust li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.hero-visual { position: relative; margin: 0; width: 100%; aspect-ratio: .84; max-height: 680px; overflow: hidden; border-radius: 26px 26px 8px 8px; background: var(--cream); box-shadow: var(--shadow); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 35, 25, .52), transparent 30%); pointer-events: none; }
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.hero-visual figcaption { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 22px; display: flex; justify-content: space-between; align-items: end; gap: 18px; color: white; }
.hero-visual figcaption strong { font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.hero-visual figcaption span { font-size: 12px; opacity: .9; text-align: right; }

.trust-bar { max-width: 1280px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-bar > * { min-height: 94px; padding: 24px 32px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.trust-bar > *:last-child { border-right: 0; }
.trust-bar strong { color: var(--green); font-size: 15px; }
.trust-bar span { margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.4; }

.section { max-width: var(--container); margin: 0 auto; padding: 100px 28px; }
.section-heading { max-width: 900px; margin: 0 auto; text-align: center; }
.section h2, .studio-section h2, .app-section h2, .reviews-section h2 { font-size: clamp(42px, 4.4vw, 62px); line-height: 1.08; }
.persona-grid { margin-top: 52px; display: grid; grid-template-columns: .82fr 1.18fr; gap: 18px; }
.persona-card { min-height: 420px; overflow: hidden; border-radius: var(--radius); background: var(--cream); }
.persona-card h3 { margin: 0 0 15px; font-family: Georgia, serif; font-size: clamp(28px, 2.7vw, 36px); line-height: 1.1; letter-spacing: -.03em; font-weight: 400; text-wrap: balance; }
.persona-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.card-number { display: block; margin-bottom: 22px; color: var(--green); font-size: 10px; letter-spacing: .12em; font-weight: 780; }
.persona-simple { padding: 34px; display: flex; flex-direction: column; justify-content: space-between; }
.persona-simple ul { list-style: none; padding: 18px 0 0; margin: 26px 0 0; border-top: 1px solid rgba(0, 80, 57, .16); display: flex; flex-wrap: wrap; gap: 8px; }
.persona-simple li { padding: 7px 10px; border: 1px solid rgba(0, 80, 57, .2); border-radius: 999px; font-size: 11px; }
.persona-image { position: relative; background: #dfe5e0; }
.persona-image > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.persona-image > div { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 24px; border-radius: 10px; background: rgba(255, 253, 248, .95); backdrop-filter: blur(8px); }
.persona-image h3 { font-size: 29px; }
.persona-image .card-number { margin-bottom: 12px; }
.persona-wide { grid-column: 1 / -1; min-height: 470px; display: grid; grid-template-columns: 1.05fr .95fr; background: #e5e8e1; }
.persona-wide > img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 36%; }
.persona-wide > div { padding: 44px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.persona-wide .text-link { margin-top: 24px; }

.app-section { max-width: 1400px; margin: 0 auto; padding-bottom: 62px; overflow: hidden; background: var(--green); color: white; }
.app-copy { padding-top: 92px; padding-bottom: 48px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; align-items: end; }
.app-copy h2 { max-width: 650px; }
.app-description > p { margin: 0; color: #ccdad5; font-size: 15px; line-height: 1.75; }
.app-proof { margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.app-proof span { padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .24); color: #cad9d3; font-size: 11px; line-height: 1.4; }
.app-proof b { display: block; margin-bottom: 3px; color: white; font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.app-gallery { padding: 18px max(28px, calc((100vw - 1124px) / 2)) 30px; display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-color: var(--lime) transparent; overscroll-behavior-inline: contain; }
.app-screen { flex: 0 0 230px; margin: 0; padding: 7px; border-radius: 31px; background: #101815; box-shadow: 0 28px 58px rgba(0, 0, 0, .28); scroll-snap-align: center; }
.app-screen:nth-child(even) { transform: translateY(13px); }
.app-screen-main { flex-basis: 250px; }
.app-screen img { width: 100%; height: auto; border-radius: 24px; }
.gallery-hint { margin: 5px max(28px, calc((100vw - 1124px) / 2)) 0; color: #cad9d3; font-size: 11px; }
.gallery-hint span { margin-left: 6px; color: var(--lime); }

.process { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(55px, 8vw, 105px); align-items: center; }
.process-media { position: relative; overflow: hidden; border-radius: var(--radius); }
.process-media > img { width: 100%; min-height: 600px; object-fit: cover; object-position: 55% center; }
.process-caption { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 17px 19px; border-radius: 9px; background: rgba(255, 253, 248, .95); display: flex; justify-content: space-between; gap: 20px; font-size: 12px; }
.process-caption span { color: var(--green); font-weight: 700; }
.process-content h2 { margin-bottom: 30px; }
.steps article { padding: 21px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 42px 1fr; gap: 18px; }
.steps article > span { padding-top: 4px; color: var(--green); font-size: 10px; font-weight: 760; }
.steps h3 { margin: 0 0 7px; font-size: 17px; }
.steps p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.pricing { max-width: 1260px; }
.pricing-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 65px; align-items: end; }
.pricing-heading > p { max-width: 430px; margin: 0 0 6px; color: var(--muted); line-height: 1.7; }
.pricing-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.price-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--green); background: var(--green); color: white; box-shadow: 0 24px 58px rgba(0, 80, 57, .18); }
.best-label { position: absolute; top: 0; left: 50%; padding: 7px 13px; border-radius: 999px; background: var(--lime); color: var(--green-deep); font-size: 10px; font-weight: 800; white-space: nowrap; transform: translate(-50%, -50%); }
.plan-label { min-height: 25px; margin: 0 0 8px; color: var(--green); text-transform: uppercase; letter-spacing: .11em; font-size: 10px; font-weight: 760; }
.featured .plan-label { color: var(--lime); }
.price-card h3 { margin: 0 0 15px; font-family: Georgia, serif; font-size: 34px; line-height: 1.1; font-weight: 400; }
.plan-description { min-height: 142px; margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.62; }
.featured .plan-description { color: #c8d8d2; }
.price-main { padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: 8px; }
.featured .price-main { border-color: rgba(255, 255, 255, .2); }
.price-main strong { font-size: 31px; letter-spacing: -.04em; }
.price-main span { color: var(--muted); font-size: 10px; }
.featured .price-main span { color: #c8d8d2; }
.price-prepaid { margin: 15px 0 20px; padding: 13px; border-radius: 9px; background: var(--cream); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price-prepaid div { display: flex; flex-direction: column; }
.price-prepaid b { color: var(--green); font-size: 17px; }
.price-prepaid span { margin-top: 2px; color: var(--muted); font-size: 9px; }
.price-prepaid em { padding: 6px 8px; border-radius: 999px; background: white; color: var(--green); font-size: 9px; font-style: normal; font-weight: 760; text-align: center; }
.price-card ul { flex: 1; list-style: none; padding: 0; margin: 0 0 25px; }
.price-card li { padding: 7px 0; display: grid; grid-template-columns: 15px 1fr; gap: 7px; font-size: 12px; line-height: 1.4; }
.price-card li b { color: var(--green); }
.featured li b { color: var(--lime); }
.pricing-note { max-width: 700px; margin: 30px auto 0; color: var(--muted); font-size: 12px; text-align: center; }

.consultation-strip { max-width: var(--container); margin: 0 auto 95px; padding: 42px 48px; border-radius: var(--radius); background: var(--cream); display: grid; grid-template-columns: 1fr auto auto; gap: 44px; align-items: center; }
.consultation-strip .eyebrow { margin-bottom: 9px; }
.consultation-strip h2 { font-size: 38px; }
.consultation-strip p:last-child { margin: 10px 0 0; color: var(--muted); font-size: 12px; }
.consult-price { display: flex; gap: 30px; }
.consult-price span { color: var(--muted); font-size: 10px; }
.consult-price strong { display: block; margin-top: 5px; color: var(--green); font-size: 21px; }

.studio-section { max-width: 1400px; margin: 0 auto; padding: 90px max(28px, 7vw); background: var(--cream); display: grid; grid-template-columns: .64fr 1.36fr; gap: 70px; align-items: center; }
.studio-copy > p:not(.eyebrow) { margin: 25px 0 21px; color: var(--muted); line-height: 1.72; }
.studio-collage { position: relative; padding: 0 0 86px 62px; }
.studio-wide { width: 100%; aspect-ratio: 1.35; object-fit: cover; border-radius: var(--radius); }
.studio-sign { position: absolute; left: 0; bottom: 0; width: 43%; aspect-ratio: 1.42; object-fit: cover; border: 8px solid var(--cream); border-radius: 12px; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-copy > p:not(.eyebrow) { margin: 17px 0 0; color: var(--muted); line-height: 1.75; }
.about-images { position: relative; min-height: 640px; }
.about-main { width: 78%; height: 590px; margin-left: auto; object-fit: cover; object-position: 48% 35%; border-radius: var(--radius); }
.about-small { position: absolute; left: 0; bottom: 0; width: 48%; height: 230px; object-fit: cover; object-position: center 22%; border: 8px solid var(--paper); border-radius: 12px; }

.certificates { background: var(--cream); }
.cert-intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: 75px; align-items: center; }
.cert-intro > img { width: 100%; aspect-ratio: 1.32; object-fit: cover; border-radius: var(--radius); }
.cert-intro div > p:not(.eyebrow) { color: var(--muted); line-height: 1.72; }
.certificate-disclosure { margin-top: 26px; }
.certificate-toggle { width: 100%; padding: 17px 0; border: 0; border-top: 1px solid rgba(0, 80, 57, .22); border-bottom: 1px solid rgba(0, 80, 57, .22); background: transparent; color: var(--green); display: flex; align-items: center; justify-content: space-between; gap: 20px; font-weight: 720; text-align: left; cursor: pointer; }
.certificate-toggle b { font-size: 22px; font-weight: 400; transition: transform .18s ease; }
.certificate-toggle[aria-expanded="true"] b { transform: rotate(45deg); }
.certificate-gallery { grid-column: 1 / -1; margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.certificate-gallery[hidden] { display: none; }
.certificate-gallery figure { margin: 0; padding: 9px; border: 1px solid var(--line); border-radius: 10px; background: white; }
.certificate-gallery img { width: 100%; height: auto; aspect-ratio: 768 / 543; object-fit: cover; }
.certificate-gallery figcaption { padding: 10px 2px 2px; color: var(--muted); font-size: 10px; }

.reviews-section { max-width: 1280px; margin: 0 auto; padding: 96px max(28px, 5vw); }
.reviews-header { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(48px, 7vw, 90px); align-items: end; }
.reviews-heading h2 { max-width: 760px; }
.reviews-summary { max-width: 430px; padding: 4px 0 5px 28px; border-left: 1px solid var(--line); }
.reviews-score { display: flex; align-items: center; gap: 14px; }
.reviews-score strong { font-family: Georgia, "Times New Roman", serif; color: var(--green); font-size: 34px; font-weight: 400; line-height: 1; }
.reviews-summary p { max-width: 390px; margin: 13px 0 15px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.stars { color: #e69b00; letter-spacing: 3px; font-size: 19px; }
.reviews-carousel { margin-top: 52px; }
.reviews-viewport { width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; touch-action: pan-x pan-y pinch-zoom; }
.reviews-viewport::-webkit-scrollbar { display: none; }
.reviews-track { display: flex; gap: 18px; }
.review-card { flex: 0 0 calc((100% - 36px) / 3); min-width: 0; min-height: 300px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: white; display: flex; flex-direction: column; scroll-snap-align: start; box-shadow: 0 14px 35px rgba(16, 48, 38, .05); }
.review-card-header { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 13px; align-items: center; }
.review-card-header h3 { overflow: hidden; margin: 0 0 3px; font-size: 15px; font-weight: 720; text-overflow: ellipsis; white-space: nowrap; }
.review-card-header div > span { color: var(--muted); font-size: 11px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-size: 17px; font-weight: 720; }
.review-avatar-green { background: var(--green); color: white; }
.review-avatar-lime { background: var(--lime); color: var(--green-deep); }
.review-avatar-cream { background: var(--cream); color: var(--green); border: 1px solid var(--line); }
.google-mark { width: 29px; height: 29px; border: 1px solid var(--line); border-radius: 50%; background: white; color: #4285f4; display: grid; place-items: center; font-size: 15px; font-weight: 800; }
.review-card > .stars { margin-top: 25px; font-size: 17px; }
.review-card blockquote { margin: 17px 0 0; }
.review-card blockquote p { margin: 0; color: #33413c; font-size: 15px; line-height: 1.68; }
.reviews-controls { min-height: 52px; margin-top: 24px; display: grid; grid-template-columns: auto minmax(100px, 1fr) auto; gap: 24px; align-items: center; }
.reviews-status { min-width: 105px; margin: 0; color: var(--muted); font-size: 12px; font-variant-numeric: tabular-nums; }
.reviews-progress { position: relative; width: min(320px, 100%); height: 2px; justify-self: center; overflow: hidden; background: var(--line); }
.reviews-progress span { position: absolute; top: 0; bottom: 0; left: 0; width: 50%; background: var(--green); transition: left .35s ease, width .35s ease; }
.reviews-arrows { display: flex; gap: 9px; }
.reviews-arrow { width: 48px; height: 48px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--green); display: grid; place-items: center; font-size: 21px; line-height: 1; cursor: pointer; transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease; }
.reviews-arrow:hover { border-color: var(--green); background: var(--green); color: white; transform: translateY(-2px); }

.faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; }
.faq-title { position: sticky; top: 115px; align-self: start; }
.faq-title > p:last-child { max-width: 360px; color: var(--muted); line-height: 1.72; }
.faq-list { border-bottom: 1px solid var(--line); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item h3 button { width: 100%; padding: 23px 0; border: 0; background: transparent; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 22px; font-size: 15px; font-weight: 670; text-align: left; cursor: pointer; }
.faq-item h3 button b { color: var(--green); font-size: 22px; font-weight: 400; transition: transform .18s ease; }
.faq-item h3 button[aria-expanded="true"] b { transform: rotate(45deg); }
.faq-panel[hidden] { display: none; }
.faq-panel p { margin: -3px 42px 24px 0; color: var(--muted); font-size: 14px; line-height: 1.72; }

.contact { padding: 105px 28px 55px; background: var(--green); color: white; }
.contact-inner { max-width: var(--container); margin: auto; }
.contact h2 { font-size: clamp(54px, 7vw, 90px); line-height: 1; }
.contact h2 em { color: var(--lime); }
.contact-intro { max-width: 690px; margin: 25px 0 0; color: #cad9d3; font-size: 16px; line-height: 1.72; }
.contact-actions { margin: 34px 0 60px; display: flex; align-items: center; gap: 30px; }
.contact-mail { padding-bottom: 6px; border-bottom: 1px solid rgba(255, 255, 255, .45); }
.contact-layout { margin-bottom: 60px; display: grid; grid-template-columns: 1.06fr .94fr; gap: 22px; align-items: stretch; }
.contact-form, .contact-place { overflow: hidden; border-radius: var(--radius); background: var(--paper); color: var(--ink); }
.contact-form { padding: 31px; }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form label > span { color: var(--ink); font-size: 12px; font-weight: 700; }
.contact-form label small { margin-left: 4px; color: var(--muted); font-weight: 400; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-width: 0; padding: 12px 13px; border: 1px solid var(--line); border-radius: 8px; outline: 0; background: white; color: var(--ink); font-size: 14px; transition: border-color .18s ease, box-shadow .18s ease; }
.contact-form input, .contact-form select { min-height: 48px; }
.contact-form textarea { min-height: 126px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0, 80, 57, .11); }
.form-message { grid-column: 1 / -1; }
.form-privacy { margin: 17px 0 13px; color: var(--muted); font-size: 10px; line-height: 1.55; }
.contact-form .form-consent { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.form-consent input { width: 18px; min-height: 18px; margin: 1px 0 0; accent-color: var(--green); }
.contact-form .form-consent > span { color: var(--muted); font-size: 10px; font-weight: 400; line-height: 1.5; }
.form-consent a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.form-submit { margin-top: 22px; display: flex; align-items: center; gap: 17px; }
.form-submit .button { background: var(--green); color: white; border-color: var(--green); }
.form-submit .button[disabled] { opacity: .68; cursor: wait; }
.form-submit p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.45; }
.form-submit p:empty { display: none; }
.form-submit p.is-success { color: var(--green); font-weight: 680; }
.form-submit p.is-error { color: #a4372c; font-weight: 680; }
.contact-place { min-height: 100%; display: flex; flex-direction: column; }
.contact-place-copy { padding: 31px; }
.contact-place-copy .eyebrow { margin-bottom: 12px; }
.contact-place h3 { margin: 0 0 15px; font-family: Georgia, serif; font-size: 27px; line-height: 1.28; font-weight: 400; }
.contact-place-copy > p:not(.eyebrow) { margin: 0 0 11px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.text-link-light { color: var(--green); }
.contact-map { width: 100%; min-height: 285px; flex: 1; border: 0; display: block; }
.contact-meta { padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .22); display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.contact-meta span { color: #c7d7d1; font-size: 12px; line-height: 1.65; }
.contact-meta b { display: block; margin-bottom: 4px; color: white; }
.contact-meta a { color: white; }

footer { max-width: 1400px; min-height: 122px; margin: auto; padding: 28px 36px; display: flex; justify-content: space-between; align-items: center; gap: 30px; color: var(--muted); font-size: 11px; }
.brand-logo-footer { width: 205px; height: 54px; }
.footer-copy { display: grid; gap: 6px; text-align: center; }
.footer-copy p { margin: 0; }
.footer-copy a { color: var(--green); font-weight: 650; }
.footer-links { display: flex; gap: 20px; }

.legal-hero { max-width: var(--container); margin: 0 auto; padding: 88px 28px 74px; }
.legal-back { display: inline-flex; margin-bottom: 62px; padding-bottom: 5px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 650; }
.legal-hero .eyebrow { margin-bottom: 22px; }
.legal-hero h1 { max-width: 880px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(58px, 7vw, 92px); font-weight: 400; letter-spacing: -.055em; line-height: .98; }
.legal-lead { max-width: 720px; margin: 28px 0 0; color: var(--muted); font-size: clamp(17px, 1.7vw, 21px); line-height: 1.65; }
.legal-updated { margin: 28px 0 0; color: var(--green); font-size: 11px; font-weight: 720; letter-spacing: .08em; text-transform: uppercase; }
.legal-layout { max-width: var(--container); margin: 0 auto; padding: 0 28px 112px; display: grid; grid-template-columns: 220px minmax(0, 820px); justify-content: space-between; gap: clamp(60px, 8vw, 110px); align-items: start; }
.legal-toc { position: sticky; top: 112px; padding-top: 29px; border-top: 1px solid var(--line); }
.legal-toc > p { margin: 0 0 18px; color: var(--green); font-size: 10px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.legal-toc nav { display: grid; gap: 3px; }
.legal-toc a { padding: 7px 0; color: var(--muted); font-size: 12px; line-height: 1.35; transition: color .18s ease, transform .18s ease; }
.legal-toc a:hover { color: var(--green); transform: translateX(3px); }
.legal-content { min-width: 0; }
.legal-notice { margin-bottom: 20px; padding: 26px 28px; border-radius: var(--radius); background: var(--green); color: white; }
.legal-notice strong { display: block; margin-bottom: 7px; color: var(--lime); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.legal-notice p { margin: 0; color: #d6e2de; font-size: 14px; line-height: 1.65; }
.legal-section { position: relative; padding: 44px 0 46px; border-top: 1px solid var(--line); scroll-margin-top: 100px; }
.legal-number { display: block; margin-bottom: 14px; color: var(--green); font-size: 10px; font-weight: 760; letter-spacing: .12em; }
.legal-section h2 { max-width: 700px; margin: 0 0 22px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(31px, 3.3vw, 42px); font-weight: 400; letter-spacing: -.035em; line-height: 1.08; }
.legal-section p { margin: 0 0 16px; color: #485651; font-size: 14px; line-height: 1.78; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.legal-section li { position: relative; padding-left: 24px; color: #485651; font-size: 14px; line-height: 1.72; }
.legal-section li::before { content: ""; position: absolute; top: .72em; left: 1px; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 3px rgba(197, 217, 90, .25); }
.legal-section a { color: var(--green); text-decoration: underline; text-decoration-color: rgba(0, 80, 57, .35); text-underline-offset: 3px; }
.legal-address { width: min(100%, 430px); margin: 18px 0 21px; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: white; color: var(--muted); font-style: normal; font-size: 13px; line-height: 1.7; }
.legal-address strong { color: var(--ink); }
.legal-callout { margin-top: 25px; padding: 20px 22px; border-left: 3px solid var(--lime); border-radius: 0 10px 10px 0; background: var(--cream); color: #485651; font-size: 13px; line-height: 1.65; }
.legal-callout strong { color: var(--green); }
.legal-rights { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 25px; }

@media (max-width: 1140px) {
  .desktop-navigation { display: none; }
  .mobile-menu { display: block; }
  .header-cta { margin-left: auto; }
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .price-card { max-width: 820px; width: 100%; margin: auto; }
  .plan-description { min-height: 0; }
  .consultation-strip { margin-left: 28px; margin-right: 28px; }
}

@media (max-width: 960px) {
  .hero { min-height: 0; padding-top: 64px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(58px, 9vw, 78px); }
  .hero-visual { max-height: none; aspect-ratio: 1.2; }
  .trust-bar { grid-template-columns: 1fr; }
  .trust-bar > * { min-height: 78px; padding: 18px 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-bar > *:last-child { border-bottom: 0; }
  .app-copy, .process, .pricing-heading, .studio-section, .about, .cert-intro, .faq { grid-template-columns: 1fr; }
  .app-copy, .process, .about, .cert-intro, .faq { gap: 52px; }
  .app-copy { align-items: start; }
  .app-description { max-width: 760px; }
  .process-media > img { min-height: 520px; }
  .pricing-heading { gap: 22px; }
  .pricing-heading > p { max-width: 720px; }
  .consultation-strip { grid-template-columns: 1fr; gap: 26px; }
  .consultation-strip .button { justify-self: start; }
  .studio-copy, .about-copy, .cert-intro > div, .faq-title { max-width: 760px; }
  .reviews-header { grid-template-columns: 1fr; gap: 32px; }
  .reviews-summary { max-width: 760px; padding-left: 0; border-left: 0; }
  .review-card { flex-basis: calc((100% - 18px) / 2); }
  .faq-title { position: static; }
  .certificate-gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 36px; }
  .legal-toc { position: static; }
  .legal-toc nav { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 24px; }
}

@media (max-width: 760px) {
  .header-inner { height: 70px; padding: 0 18px; gap: 14px; }
  .brand-logo { width: 155px; height: 44px; }
  .header-cta { display: none; }
  .mobile-navigation { left: 10px; right: 10px; }
  section[id] { scroll-margin-top: 76px; }
  .hero { padding: 48px 20px 42px; gap: 42px; }
  .hero h1 { font-size: clamp(47px, 12.5vw, 60px); }
  .hero h1 > span { margin-bottom: 13px; font-size: .29em; }
  .hero-lead { margin: 23px 0 27px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 10px; }
  .hero-trust { margin-top: 27px; }
  .hero-visual { aspect-ratio: .9; border-radius: 20px 20px 7px 7px; }
  .hero-visual figcaption { left: 18px; right: 18px; bottom: 17px; }
  .hero-visual figcaption strong { font-size: 20px; }
  .hero-visual figcaption span { font-size: 10px; }
  .trust-bar > * { padding-left: 20px; padding-right: 20px; }
  .section { padding: 76px 20px; }
  .section h2, .studio-section h2, .app-section h2, .reviews-section h2 { font-size: 39px; }
  .persona-grid { margin-top: 40px; grid-template-columns: 1fr; gap: 15px; }
  .persona-card { min-height: 370px; }
  .persona-simple { padding: 27px; }
  .persona-card h3 { font-size: 29px; }
  .persona-image { min-height: 490px; }
  .persona-image > div { left: 13px; right: 13px; bottom: 13px; padding: 21px; }
  .persona-image h3 { font-size: 27px; }
  .persona-wide { grid-column: auto; min-height: 0; display: flex; flex-direction: column; }
  .persona-wide > img { height: 340px; object-position: 50% 32%; }
  .persona-wide > div { padding: 28px; }
  .app-section { padding-bottom: 50px; }
  .app-copy { padding-top: 74px; padding-bottom: 33px; gap: 32px; }
  .app-proof { grid-template-columns: 1fr 1fr; gap: 17px 12px; }
  .app-proof span:last-child { grid-column: 1 / -1; }
  .app-gallery { padding-left: 20px; padding-right: 20px; gap: 15px; }
  .app-screen { flex-basis: 205px; }
  .app-screen-main { flex-basis: 220px; }
  .gallery-hint { margin-left: 20px; margin-right: 20px; }
  .process { gap: 46px; }
  .process-media > img { min-height: 480px; object-position: 56% center; }
  .process-caption { left: 13px; right: 13px; bottom: 13px; flex-direction: column; gap: 4px; }
  .price-card { padding: 27px 22px; }
  .price-prepaid { align-items: flex-start; flex-direction: column; }
  .pricing-note { text-align: left; }
  .consultation-strip { margin: 0 20px 76px; padding: 30px 22px; }
  .consultation-strip h2 { font-size: 34px; }
  .consult-price { gap: 21px; }
  .studio-section { padding: 76px 20px; gap: 44px; }
  .studio-collage { padding: 0 0 62px 32px; }
  .studio-wide { aspect-ratio: .95; }
  .studio-sign { width: 57%; border-width: 6px; }
  .about { gap: 45px; }
  .about-images { min-height: 545px; }
  .about-main { width: 84%; height: 505px; }
  .about-small { width: 51%; height: 195px; border-width: 6px; }
  .cert-intro { gap: 36px; }
  .cert-intro > img { aspect-ratio: 1.42; }
  .certificate-gallery { grid-template-columns: 1fr; }
  .reviews-section { padding: 76px 20px; }
  .reviews-carousel { margin-top: 40px; }
  .review-card { flex-basis: 86%; min-height: 285px; padding: 24px; }
  .reviews-controls { grid-template-columns: 1fr auto; gap: 15px; }
  .reviews-progress { display: none; }
  .faq { gap: 42px; }
  .faq-item h3 button { min-height: 62px; padding: 20px 0; font-size: 14px; line-height: 1.45; }
  .faq-panel p { margin-right: 22px; }
  .contact { padding: 78px 20px 43px; }
  .contact h2 { font-size: 50px; }
  .contact-actions { margin: 34px 0 52px; align-items: flex-start; flex-direction: column; gap: 20px; }
  .contact-mail { font-size: 14px; }
  .contact-form { padding: 25px 19px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-message { grid-column: auto; }
  .form-submit { align-items: flex-start; flex-direction: column; }
  .contact-place-copy { padding: 26px 21px; }
  .contact-map { min-height: 295px; }
  .contact-meta { grid-template-columns: 1fr; gap: 23px; }
  footer { padding: 28px 20px; align-items: flex-start; flex-direction: column; gap: 20px; }
  .footer-copy { text-align: left; }
  .footer-links { flex-wrap: wrap; }
  .legal-hero { padding: 66px 20px 56px; }
  .legal-back { margin-bottom: 48px; }
  .legal-hero h1 { font-size: 52px; }
  .legal-layout { padding: 0 20px 82px; }
  .legal-toc { display: none; }
  .legal-notice { padding: 23px 21px; }
  .legal-section { padding: 38px 0 40px; }
  .legal-section h2 { font-size: 32px; }
  .legal-rights { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: clamp(43px, 12vw, 48px); }
  .hero-visual figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }
  .hero-visual figcaption span { text-align: left; }
  .section { padding-left: 18px; padding-right: 18px; }
  .section h2, .studio-section h2, .app-section h2, .reviews-section h2 { font-size: 36px; }
  .persona-card h3 { font-size: 27px; }
  .app-copy { padding-left: 18px; padding-right: 18px; }
  .consult-price { flex-direction: column; gap: 16px; }
  .studio-section { padding-left: 18px; padding-right: 18px; }
  .about-images { min-height: 505px; }
  .about-main { height: 468px; }
  .about-small { height: 170px; }
  .contact { padding-left: 18px; padding-right: 18px; }
  .contact h2 { font-size: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
