@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --navy: #11263d;
  --navy-deep: #0b1a2a;
  --ink: #172335;
  --muted: #657487;
  --line: #dbe3eb;
  --soft: #f2f6f8;
  --white: #fff;
  --teal: #2d9f9a;
  --teal-dark: #16736f;
  --gold: #d1a45c;
  --shadow: 0 24px 70px rgba(12, 30, 49, .12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font: 16px/1.65 'DM Sans', system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible { outline: 3px solid #f0b451; outline-offset: 3px; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3 { margin: 0 0 18px; color: var(--ink); font-family: 'Space Grotesk', system-ui, sans-serif; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.85rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.3rem; letter-spacing: -.02em; }
p { margin: 0 0 20px; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 48px)); }
.centered { text-align: center; }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 100; padding: 10px 16px; color: #fff; background: var(--navy); border-radius: 8px; }
.skip-link:focus { top: 20px; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(219,227,235,.8); backdrop-filter: blur(18px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: 'Space Grotesk', system-ui, sans-serif; font-weight: 700; letter-spacing: -.03em; }
.brand-mark { position: relative; display: inline-block; width: 35px; height: 35px; border: 2px solid var(--navy); border-radius: 9px; transform: rotate(30deg); }
.brand-mark span { position: absolute; display: block; width: 9px; height: 9px; border: 2px solid var(--teal); border-radius: 2px; transform: rotate(-30deg); }
.brand-mark span:nth-child(1) { top: 5px; left: 5px; }
.brand-mark span:nth-child(2) { right: 5px; bottom: 5px; }
.brand-mark span:nth-child(3) { top: 11px; left: 11px; background: var(--navy); }
.brand-name { font-size: 1.1rem; }
.site-nav { display: flex; align-items: center; gap: 25px; font-size: .94rem; font-weight: 600; }
.site-nav > a:not(.button) { position: relative; color: #536175; }
.site-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--teal); content: ''; transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.site-nav > a:not(.button):hover, .site-nav > a.active { color: var(--navy); }
.site-nav > a:not(.button):hover::after, .site-nav > a.active::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; padding: 8px; color: var(--navy); background: transparent; border: 0; }
.icon { width: 18px; height: 18px; flex: 0 0 auto; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 17px; font-size: .9rem; }
.button-primary { color: var(--white); background: var(--teal); box-shadow: 0 12px 25px rgba(45,159,154,.25); }
.button-primary:hover { background: var(--teal-dark); }
.button-outline { color: var(--navy); border-color: var(--navy); }
.button-outline:hover { color: var(--white); background: var(--navy); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.48); }
.button-ghost:hover { background: rgba(255,255,255,.12); }
.button-light { color: var(--navy); background: var(--white); }
.button-light:hover { background: #eef5f6; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.inline-link { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 5px; color: var(--teal-dark); border-bottom: 2px solid var(--teal); font-weight: 700; }
.inline-link .icon { transition: transform .2s ease; }
.inline-link:hover .icon { transform: translateX(4px); }
.text-button { padding: 0; color: var(--teal-dark); background: transparent; border: 0; font-weight: 700; text-align: left; }

.hero { overflow: hidden; color: var(--white); background: var(--navy); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; min-height: 670px; gap: 80px; }
.hero .eyebrow, .page-hero .eyebrow { color: var(--gold); }
.hero h1 { color: var(--white); }
.hero h1 em { color: #82d4cf; font-style: normal; }
.hero-intro { max-width: 650px; color: rgba(255,255,255,.75); font-size: 1.2rem; }
.hero-copy .button-row { margin-top: 32px; }
.hero-visual { position: relative; display: grid; min-height: 450px; place-items: center; }
.hero-visual::before { position: absolute; inset: 8% 2% 8% 8%; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; content: ''; transform: rotate(-15deg); }
.orb { position: absolute; border-radius: 999px; filter: blur(1px); }
.orb-one { width: 210px; height: 210px; background: radial-gradient(circle at 30% 30%, #7adfd6, #1e6d7c 64%, transparent 65%); opacity: .85; transform: translate(-100px, -120px); }
.orb-two { width: 280px; height: 280px; background: radial-gradient(circle at 60% 60%, #d1a45c, #754e36 60%, transparent 62%); opacity: .6; transform: translate(90px, 100px); }
.hero-panel { position: relative; width: min(410px, 86%); min-height: 280px; padding: 38px; background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.22); border-radius: 28px; box-shadow: 0 30px 80px rgba(0,0,0,.18); backdrop-filter: blur(14px); transform: rotate(7deg); }
.panel-label { color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .18em; }
.panel-bars { display: grid; grid-template-columns: repeat(4, 1fr); align-items: end; height: 125px; gap: 13px; margin: 32px 0 22px; }
.panel-bars i { display: block; border-radius: 6px 6px 0 0; background: linear-gradient(#82d4cf, #2d9f9a); }
.panel-bars i:nth-child(1) { height: 45%; }.panel-bars i:nth-child(2) { height: 74%; }.panel-bars i:nth-child(3) { height: 59%; }.panel-bars i:nth-child(4) { height: 92%; }
.panel-caption { color: rgba(255,255,255,.75); font-size: .95rem; }

.section { padding: 108px 0; }
.section-light { background: #fff; }
.section-soft { background: var(--soft); }
.section-navy { color: #fff; background: var(--navy); }
.section-heading { max-width: 700px; margin-bottom: 52px; }
.section-heading > p:last-child { max-width: 640px; color: var(--muted); font-size: 1.1rem; }
.section-heading-light h2 { color: var(--white); }.section-heading-light > p:last-child { color: rgba(255,255,255,.7); }
.eyebrow { margin-bottom: 14px; color: var(--teal-dark); font-size: .75rem; font-weight: 800; letter-spacing: .18em; }
.eyebrow-light { color: var(--gold); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 34px; }
.service-card { min-height: 360px; padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 26px rgba(19,40,62,.04); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.service-card:hover { border-color: rgba(45,159,154,.6); box-shadow: var(--shadow); transform: translateY(-4px); }
.card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }.card-number, .step-number { color: var(--teal-dark); font: 700 .8rem 'Space Grotesk', sans-serif; letter-spacing: .12em; }.card-line { width: 40px; height: 1px; background: var(--gold); }
.service-card h2 { font-size: 1.65rem; }.service-card p { color: var(--muted); }
.check-list { display: grid; gap: 9px; }.check-list li, .approach-list li { display: flex; align-items: flex-start; gap: 9px; color: #4d5e71; font-size: .95rem; }.check-list .icon, .approach-list .icon { margin-top: 4px; color: var(--teal); }
.section-navy .check-list li, .section-navy .process-step p { color: rgba(255,255,255,.68); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }.process-step { padding: 30px 0 0; border-top: 1px solid rgba(255,255,255,.3); }.section-light .process-step { border-color: var(--line); }.process-step h2 { margin-top: 24px; font-size: 1.55rem; }.process-step p { color: var(--muted); }
.section-light .step-number { color: var(--teal-dark); }
.approach { background: #eaf2f4; }.approach-grid, .split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }.approach-grid > div:last-child { max-width: 600px; }.approach-grid p, .split-section p { color: #536477; font-size: 1.1rem; }.approach-list { display: grid; gap: 12px; margin-top: 28px; }
.cta-band { color: #fff; background: var(--teal-dark); }.cta-inner { display: flex; align-items: center; justify-content: space-between; min-height: 285px; gap: 36px; }.cta-inner h2 { max-width: 650px; color: #fff; }.cta-inner p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.75); font-size: 1.05rem; }

.page-hero { padding: 90px 0 100px; color: #fff; background: var(--navy); }.page-hero h1 { color: #fff; }.page-hero .hero-intro { max-width: 720px; }
.service-list { display: grid; gap: 0; }.service-row { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; padding: 46px 0; border-bottom: 1px solid var(--line); }.service-row:first-child { padding-top: 0; }.service-row-title { display: flex; align-items: flex-start; gap: 22px; }.service-row-title h2 { font-size: clamp(1.75rem, 3.2vw, 2.75rem); }.service-row > div:last-child p { max-width: 620px; color: var(--muted); font-size: 1.08rem; }.service-row .check-list { grid-template-columns: repeat(2, 1fr); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }.values-grid article { padding: 30px; background: #fff; border-radius: var(--radius); }.values-grid article > span { color: var(--teal-dark); font-weight: 700; }.values-grid h2 { margin-top: 26px; font-size: 1.7rem; }.values-grid p { color: var(--muted); }.truth-card { margin-top: 22px; padding: 24px 28px; color: var(--navy); background: #e3eeef; border-left: 4px solid var(--teal); border-radius: 10px; }
.faq-list details { padding: 24px 0; border-bottom: 1px solid var(--line); }.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--navy); font: 600 1.2rem 'Space Grotesk', sans-serif; cursor: pointer; list-style: none; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary::after { color: var(--teal-dark); content: '+'; font-size: 1.7rem; font-weight: 400; }.faq-list details[open] summary::after { content: '–'; }.faq-list details p { max-width: 700px; margin: 16px 0 0; color: var(--muted); }.faq-contact { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-top: 38px; }.faq-contact p { margin: 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }.contact-details > p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }.contact-list { display: grid; gap: 14px; margin-top: 35px; }.contact-list > a, .contact-list > div { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; color: var(--muted); border-bottom: 1px solid var(--line); }.contact-list > a .icon, .contact-list > div .icon { color: var(--teal-dark); }.contact-list small { display: block; margin-bottom: 2px; color: var(--navy); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }.contact-list span { overflow-wrap: anywhere; }.contact-list a:hover { color: var(--teal-dark); }
.contact-form { padding: 36px; background: var(--soft); border-radius: var(--radius); }.contact-form > p { color: var(--muted); }.form-note { font-size: .9rem; }.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }.contact-form label, .contact-form legend { display: grid; gap: 7px; color: var(--navy); font-size: .88rem; font-weight: 700; }.contact-form label:not(.choice):not(.consent):not(.honeypot) { margin-bottom: 18px; }.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 12px 14px; color: var(--ink); background: #fff; border: 1px solid #cbd6df; border-radius: 9px; }.contact-form textarea { resize: vertical; }.contact-form fieldset { margin: 5px 0 22px; padding: 0; border: 0; }.contact-form fieldset legend { margin-bottom: 8px; }.choice { display: inline-flex !important; grid-template-columns: auto 1fr; align-items: center; margin: 0 20px 0 0 !important; color: var(--muted) !important; font-weight: 500 !important; }.choice input { width: auto; }.consent { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; margin-bottom: 22px !important; color: var(--muted) !important; font-weight: 500 !important; }.consent input { width: auto; margin-top: 5px; }.honeypot { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }.form-status { min-height: 26px; margin-top: 15px; color: var(--teal-dark); font-weight: 700; }.form-status.error { color: #a33d36; }.pricing-card { padding: 48px; background: var(--soft); border-radius: var(--radius); }.pricing-card .seller { color: var(--muted); }.pricing-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 34px 0; }.pricing-facts > div { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }.pricing-facts small { display: block; margin-bottom: 6px; color: var(--teal-dark); font-size: .7rem; font-weight: 800; letter-spacing: .13em; }.pricing-facts strong { display: block; font-family: 'Space Grotesk', sans-serif; }.pricing-card h3 { margin-top: 36px; }.notice { margin: 30px 0 22px; padding: 18px 20px; color: #285259; background: #dcefed; border-left: 4px solid var(--teal); border-radius: 8px; }.policy-note { color: var(--muted); }.policy-note a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }

.legal-document { padding-top: 70px; padding-bottom: 100px; }.policy-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 45px; padding: 15px 18px; color: var(--muted); background: var(--soft); border-left: 4px solid var(--teal); border-radius: 8px; font-size: .94rem; }.policy-status { color: #7a5224; font-weight: 700; }.legal-section { padding: 27px 0; border-top: 1px solid var(--line); }.legal-section h2 { font-size: 1.5rem; }.legal-section p { max-width: 780px; color: #56687a; }.legal-section a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }

.site-footer { color: rgba(255,255,255,.7); background: var(--navy-deep); }.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr 1.2fr; gap: 28px; padding-top: 75px; padding-bottom: 60px; }.site-footer .brand { color: #fff; }.site-footer .brand-mark { border-color: #fff; }.site-footer h2 { margin-bottom: 18px; color: #fff; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; }.footer-brand p { max-width: 250px; font-size: .88rem; }.footer-brand p:first-of-type { margin-top: 24px; color: #fff; }.footer-links { display: grid; gap: 8px; font-size: .88rem; }.footer-links a:hover, .footer-contact a:hover, .site-footer .text-button:hover { color: #82d4cf; }.footer-contact > a { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 11px; font-size: .88rem; overflow-wrap: anywhere; }.footer-contact > a .icon { color: #82d4cf; }.footer-contact p { margin-bottom: 9px; font-size: .88rem; }.site-footer .cookie-preferences { margin-top: 17px; font-size: .88rem; }.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding: 21px 0; color: rgba(255,255,255,.48); border-top: 1px solid rgba(255,255,255,.15); font-size: .78rem; }

.cookie-banner { position: fixed; right: 20px; bottom: 20px; left: 20px; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 25px; max-width: 980px; margin: auto; padding: 20px 24px; color: #fff; background: var(--navy-deep); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; box-shadow: var(--shadow); }.cookie-banner p { margin: 0; font-size: .9rem; }.cookie-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }.cookie-actions button { min-height: 38px; padding: 0 14px; border-radius: 999px; font-size: .82rem; font-weight: 700; }.cookie-accept { color: var(--navy); background: #82d4cf; border: 0; }.cookie-reject, .cookie-manage { color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.35); }.kdw-cookie-overlay { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 20px; background: rgba(7,18,29,.7); }.kdw-cookie-dialog { width: min(520px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: 30px; background: #fff; border-radius: 14px; box-shadow: var(--shadow); }.kdw-cookie-dialog h2 { font-size: 1.8rem; }.kdw-cookie-dialog p { color: var(--muted); }.kdw-cookie-option { display: flex; align-items: flex-start; gap: 12px; margin: 15px 0; padding: 14px; background: var(--soft); border-radius: 9px; }.kdw-cookie-option input { margin-top: 5px; }.kdw-cookie-option strong { display: block; color: var(--navy); }.kdw-cookie-option span { display: block; color: var(--muted); font-size: .86rem; }.kdw-cookie-dialog-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; }

@media (max-width: 1000px) { .site-nav { gap: 14px; }.hero-grid { gap: 35px; }.footer-grid { grid-template-columns: repeat(3, 1fr); }.footer-brand { grid-column: 1 / -1; }.contact-grid { gap: 40px; } }
@media (max-width: 760px) {
  .container, .narrow { width: min(100% - 34px, 600px); }
  .header-inner { min-height: 70px; }.menu-toggle { display: inline-flex; }.site-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 15px 17px 20px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 20px 35px rgba(13,34,54,.08); }.site-nav.open { display: flex; }.site-nav > a { padding: 12px 4px; }.site-nav > a:not(.button)::after { display: none; }.site-nav .button { margin-top: 9px; }
  h1 { font-size: clamp(2.6rem, 14vw, 4rem); }.hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; padding-bottom: 55px; }.hero-visual { min-height: 330px; }.hero-panel { min-height: 230px; }.section { padding: 75px 0; }.section-heading { margin-bottom: 34px; }.service-grid, .process-grid, .values-grid, .approach-grid, .split-section, .contact-grid { grid-template-columns: 1fr; }.process-grid { gap: 28px; }.process-step { padding-top: 22px; }.cta-inner { align-items: flex-start; flex-direction: column; min-height: auto; padding-top: 65px; padding-bottom: 65px; }.page-hero { padding: 70px 0 75px; }.service-row { grid-template-columns: 1fr; gap: 18px; padding: 35px 0; }.service-row .check-list { grid-template-columns: 1fr; }.contact-form, .pricing-card { padding: 24px; }.form-grid, .pricing-facts { grid-template-columns: 1fr; }.footer-grid { grid-template-columns: repeat(2, 1fr); padding-top: 55px; }.footer-brand { grid-column: 1 / -1; }.footer-bottom { flex-direction: column; gap: 8px; }.cookie-banner { align-items: stretch; flex-direction: column; right: 10px; bottom: 10px; left: 10px; padding: 17px; }.cookie-actions { justify-content: flex-start; }
}
