/* ==========================================================================
   isologismoi.online — landing page
   Ported from the Claude Design prototype "Isologismoi Landing.dc.html".
   Palette: KineaPro (deep navy / teal / green / lime).
   ========================================================================== */

:root {
  --ink: #0F2027;
  --deep: #0B1A20;
  --panel: #0E1E24;
  --teal-deep: #123641;
  --teal: #0E7C93;
  --teal-hover: #0B6577;
  --green: #3E9B4F;
  --lime: #B9CB2E;
  --off: #F7FBFC;
  --page: #EDEEF0;
  --muted: #52616B;
  --muted-2: #8A959A;
  --muted-3: #3A474D;
  --line: #E4E7E9;
  --line-2: #CFD6D9;
  --surface: #F1F3F4;
  --surface-2: #F9FAFA;
  --danger: #B04A45;
  --danger-soft: #E89A96;

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --ease: cubic-bezier(.16, 1, .3, 1);

  /* Horizontal rhythm — one source of truth.
     Every outer edge on the page lands on --edge: the nav pill, the hero
     panel, section content, the steps panel, the ΑΦΜ band and the footer.
     Only these three values change at breakpoints; nothing overrides them
     locally, so the columns cannot drift apart again. */
  --page-x: 2em;                                /* page shell margin        */
  --gutter: 4em;                                /* shell edge → content     */
  --edge: calc(var(--page-x) + var(--gutter));  /* viewport edge → content  */
}

@media (max-width: 1024px) {
  :root { --gutter: 2em; }
}

@media (max-width: 600px) {
  :root { --page-x: 1em; --gutter: 1em; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--page);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-hover); }
::selection { background: var(--lime); color: var(--ink); }

img { max-width: 100%; }

/* Screen-reader-only, used for the skip link and icon-button labels. */
.iso-sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.iso-skip:focus {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  width: auto; height: auto; clip: auto; margin: 0;
  padding: 12px 20px; border-radius: 9999px;
  background: var(--off); color: var(--ink); font-weight: 600;
}

/* --------------------------------------------------------------------------
   Animation primitives
   -------------------------------------------------------------------------- */

@keyframes iso-floatA { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(26px, -30px) scale(1.08); } }
@keyframes iso-floatB { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-32px, 22px) scale(1.1); } }
@keyframes iso-spin { to { transform: rotate(360deg); } }
@keyframes iso-fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes iso-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.iso-fu { animation: iso-fadeUp .8s var(--ease) both; }
.iso-fu-1 { animation-delay: .08s; }
.iso-fu-2 { animation-delay: .16s; }
.iso-fu-3 { animation-delay: .24s; }

/* Premium scroll reveal: blur → sharp, fade + rise/scale. */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition: opacity 1s var(--ease), transform 1.05s var(--ease), filter 1s ease;
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(.94) translateY(20px); }
[data-reveal].is-in { opacity: 1; transform: none; filter: blur(0); }

[data-stagger] > *:nth-child(1)  { transition-delay: 0ms; }
[data-stagger] > *:nth-child(2)  { transition-delay: 90ms; }
[data-stagger] > *:nth-child(3)  { transition-delay: 180ms; }
[data-stagger] > *:nth-child(4)  { transition-delay: 270ms; }
[data-stagger] > *:nth-child(5)  { transition-delay: 360ms; }
[data-stagger] > *:nth-child(6)  { transition-delay: 450ms; }
[data-stagger] > *:nth-child(7)  { transition-delay: 540ms; }
[data-stagger] > *:nth-child(8)  { transition-delay: 630ms; }
[data-stagger] > *:nth-child(9)  { transition-delay: 720ms; }
[data-stagger] > *:nth-child(10) { transition-delay: 810ms; }

.iso-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: var(--grain);
}

/* --------------------------------------------------------------------------
   Full-width layout shell
   Outer page margin 2em desktop / 1em mobile; sections get proportional
   breathing room (4em desktop → 2em tablet → 1em mobile).
   -------------------------------------------------------------------------- */

.iso-page { position: relative; overflow-x: clip; margin: 0 var(--page-x); }

.iso-w { padding-left: var(--gutter); padding-right: var(--gutter); }
.iso-sec { padding-top: 76px; padding-bottom: 76px; }
.iso-sec--tight { padding-top: 40px; }

.iso-eyebrow {
  display: inline-block; margin-bottom: 18px;
  font-size: 10px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal);
}
.iso-eyebrow--lime { color: var(--lime); }

.iso-h2 {
  margin: 0 0 22px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08; font-weight: 600; letter-spacing: -.04em;
  text-wrap: balance;
}
.iso-lead {
  margin: 0 0 16px;
  font-size: 17px; line-height: 1.62; font-weight: 300; color: var(--muted);
}

/* Shared pill buttons -------------------------------------------------- */

.iso-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 8px 8px 26px; border: none; border-radius: 9999px;
  font-family: inherit; font-size: 16px; font-weight: 600; letter-spacing: -.01em;
  cursor: pointer; transition: transform .3s var(--ease);
}
.iso-btn:hover { transform: scale(1.05); }
.iso-btn__arrow {
  width: 40px; height: 40px; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background .3s ease;
}
.iso-btn--light { background: var(--off); color: var(--ink); }
.iso-btn--light .iso-btn__arrow { background: var(--ink); color: var(--lime); }
.iso-btn--light:hover { color: var(--ink); }
.iso-btn--light:hover .iso-btn__arrow { background: var(--teal-deep); }
.iso-btn--dark { background: var(--ink); color: var(--off); font-size: 15px; }
.iso-btn--dark .iso-btn__arrow { width: 38px; height: 38px; background: var(--lime); color: var(--ink); font-size: 17px; }
.iso-btn--dark:hover { color: var(--off); }

.iso-btn-ghost {
  padding: 15px 26px; border-radius: 9999px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--off); font-family: inherit; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: background .3s ease;
}
.iso-btn-ghost:hover { background: rgba(255, 255, 255, .1); color: var(--off); }

/* --------------------------------------------------------------------------
   Floating nav
   -------------------------------------------------------------------------- */

.iso-nav {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 80;
  display: flex; justify-content: center;
  padding: 0 var(--edge); pointer-events: none;
}
.iso-nav__pill {
  position: relative; pointer-events: auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 7px 8px 7px 18px; border-radius: 9999px;
  background: var(--deep);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 10px 34px rgba(8, 23, 29, .4);
  overflow: hidden;
}
.iso-nav__pill > .iso-grain { opacity: .1; }
.iso-nav__brand {
  position: relative; display: flex; align-items: center; gap: 9px; margin-right: 6px;
}
.iso-nav__brand img { height: 26px; width: auto; }
.iso-nav__wordmark {
  font-weight: 600; font-size: 16px; letter-spacing: -.02em; line-height: 1; color: #fff;
}
.iso-nav__tld { color: rgba(247, 251, 252, .72); font-weight: 400; }
.iso-nav__links { position: relative; display: flex; align-items: center; gap: 2px; }
.iso-nav__links a {
  padding: 8px 14px; border-radius: 9999px;
  font-size: 14px; font-weight: 500; color: #F0F5F6;
  transition: background .3s ease, color .3s ease;
}
.iso-nav__links a:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.iso-nav__cta {
  position: relative; display: flex; align-items: center; gap: 9px;
  height: 42px; padding: 0 6px 0 18px; border-radius: 9999px;
  background: var(--off); color: var(--ink);
  font-size: 13.5px; font-weight: 600; letter-spacing: -.01em;
  transition: transform .3s var(--ease);
}
.iso-nav__cta:hover { transform: scale(1.05); color: var(--ink); }
.iso-nav__cta:not(.iso-nav__cta--ghost) span:last-child {
  width: 30px; height: 30px; border-radius: 9999px; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); font-size: 15px; transition: background .3s ease;
}
.iso-nav__cta:not(.iso-nav__cta--ghost):hover span:last-child { background: var(--teal-deep); }
.iso-nav__ctas { display: flex; align-items: center; gap: 8px; }
.iso-nav__cta--ghost {
  background: var(--lime); color: var(--ink);
  padding: 0 16px; border: none;
  transition: transform .3s var(--ease), filter .3s ease;
}
.iso-nav__cta--ghost:hover { filter: brightness(1.08); transform: scale(1.05); color: var(--ink); }

.iso-nav__burger {
  display: none; flex-shrink: 0; position: relative;
  width: 42px; height: 42px; border-radius: 9999px;
  background: var(--off); border: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.iso-nav__burger span {
  display: block; width: 17px; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform .3s var(--ease), opacity .2s ease;
}
.iso-nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.iso-nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.iso-nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.iso-nav__mobile {
  position: fixed; left: var(--edge); right: var(--edge); top: 78px; z-index: 79;
  max-height: 0; opacity: 0; pointer-events: none; overflow: hidden;
  background: var(--deep);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  box-shadow: 0 10px 34px rgba(8, 23, 29, .4);
  transition: max-height .35s var(--ease), opacity .25s ease;
}
.iso-nav__mobile.is-open { max-height: 480px; opacity: 1; pointer-events: auto; }
.iso-nav__mobile-links { display: flex; flex-direction: column; padding: 10px 10px 0; }
.iso-nav__mobile-links a {
  padding: 13px 16px; border-radius: 14px;
  font-size: 15px; font-weight: 500; color: #F0F5F6;
  transition: background .2s ease;
}
.iso-nav__mobile-links a:hover { background: rgba(255, 255, 255, .08); }
.iso-nav__mobile-ctas { display: flex; flex-direction: column; gap: 8px; padding: 14px 10px; }
.iso-nav__mobile-cta {
  display: flex; align-items: center; justify-content: center;
  padding: 14px 16px; border-radius: 9999px;
  font-size: 14.5px; font-weight: 600;
}
.iso-nav__mobile-cta--primary { background: var(--off); color: var(--ink); }
.iso-nav__mobile-cta--ghost {
  background: var(--lime); color: var(--ink);
  border: none;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

/* Vertical only — the horizontal edge comes from .iso-w. */
.iso-hero-sec { padding-top: 94px; padding-bottom: 20px; }

.iso-hero {
  position: relative; min-height: 92vh;
  border-radius: 40px; overflow: hidden; background: var(--deep);
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 56px 56px;
}
.iso-hero__media { position: absolute; inset: 0; }
.iso-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.iso-hero__scrim,
.iso-hero__tint { position: absolute; inset: 0; pointer-events: none; }
/* Directional scrim: dense behind the headline, opening up to the right. */
.iso-hero__scrim {
  background: linear-gradient(100deg,
    rgba(11, 26, 32, .95) 0%,
    rgba(15, 32, 39, .88) 42%,
    rgba(18, 54, 65, .72) 72%,
    rgba(8, 23, 29, .66) 100%);
}
.iso-hero__tint {
  background: linear-gradient(115deg, rgba(62, 155, 79, .3) 0%, rgba(14, 124, 147, .24) 50%, transparent 82%);
  mix-blend-mode: screen;
}
.iso-hero > .iso-grain { opacity: .14; }
.iso-hero__glow-a,
.iso-hero__glow-b { position: absolute; border-radius: 9999px; pointer-events: none; }
.iso-hero__glow-a {
  top: -120px; right: -80px; width: 560px; height: 560px;
  background: radial-gradient(circle at 40% 40%, rgba(14, 124, 147, .5), transparent 62%);
  filter: blur(70px); animation: iso-floatA 18s ease-in-out infinite;
}
.iso-hero__glow-b {
  bottom: -160px; left: -60px; width: 520px; height: 520px;
  background: radial-gradient(circle at 50% 50%, rgba(185, 203, 46, .34), transparent 62%);
  filter: blur(72px); animation: iso-floatB 22s ease-in-out infinite;
}
.iso-hero__ghost {
  position: absolute; left: 50%; top: 52%; transform: translate(-50%, -50%);
  font-size: 24vw; font-weight: 700; letter-spacing: -.06em;
  color: rgba(247, 251, 252, .035); filter: blur(2px);
  white-space: nowrap; pointer-events: none; line-height: 1;
}
.iso-hero__credit {
  position: absolute; left: 24px; bottom: 14px; z-index: 5; margin: 0;
  font-size: 10.5px; font-weight: 300; letter-spacing: .01em;
  color: rgba(247, 251, 252, .5); pointer-events: auto;
}
.iso-hero__credit a { color: rgba(247, 251, 252, .7); }
.iso-hero__grid { position: relative; width: 100%; pointer-events: none; }
.iso-hero__copy { width: 80%; }

.iso-hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; margin-bottom: 28px; border-radius: 9999px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  color: rgba(247, 251, 252, .82);
}
.iso-hero__badge-dot {
  width: 7px; height: 7px; border-radius: 9999px; background: var(--lime);
  box-shadow: 0 0 0 4px rgba(185, 203, 46, .2); flex: none;
}
.iso-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.04; font-weight: 600; letter-spacing: -.045em;
  color: var(--off); text-wrap: balance;
}
.iso-grad {
  background: linear-gradient(100deg, #3aa9c4 0%, #6bc04a 52%, #c6d63c 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.iso-hero__lead {
  margin: 0 0 36px; max-width: 640px;
  font-size: clamp(16px, 1.6vw, 19px); line-height: 1.62; font-weight: 300;
  color: rgba(247, 251, 252, .68); text-wrap: pretty;
}
.iso-hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   Section 1 — the problem
   -------------------------------------------------------------------------- */

.iso-prose { max-width: 820px; margin-bottom: 44px; }
.iso-prose p:last-child { margin-bottom: 0; }

.iso-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-bottom: 34px;
}
.iso-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: 28px 26px;
  transition: box-shadow .3s ease, transform .3s ease;
}
.iso-card:hover { box-shadow: 0 16px 40px rgba(15, 32, 39, .09); transform: translateY(-4px); }
.iso-card__x {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(176, 74, 69, .1); color: var(--danger);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-weight: 700;
}
.iso-card p { margin: 0; font-size: 15.5px; line-height: 1.5; color: var(--ink); }

.iso-callout {
  position: relative; border-radius: 32px; padding: 40px; overflow: hidden;
  background: linear-gradient(150deg, var(--teal-deep) 0%, var(--ink) 100%);
}
.iso-callout > .iso-grain { opacity: .12; }
.iso-callout__glow {
  position: absolute; top: -40px; right: -40px; width: 240px; height: 240px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(185, 203, 46, .36), transparent 60%);
  filter: blur(54px);
}
.iso-callout__kicker {
  position: relative; margin: 0 0 10px; font-size: 15px; font-weight: 600; color: var(--lime);
}
.iso-callout__text {
  position: relative; margin: 0;
  font-size: clamp(18px, 2.2vw, 24px); line-height: 1.4; font-weight: 500;
  letter-spacing: -.02em; color: var(--off);
}

/* --------------------------------------------------------------------------
   Section 2 — the law
   -------------------------------------------------------------------------- */

.iso-split { display: grid; gap: 44px; align-items: start; }
.iso-split--law { grid-template-columns: .82fr 1.18fr; }
.iso-split--acct { grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }

.iso-sticky { position: sticky; top: 96px; }
.iso-sticky .iso-h2 { margin-bottom: 20px; font-size: clamp(28px, 3.4vw, 44px); }
.iso-sticky > p { margin: 0 0 30px; font-size: 16px; line-height: 1.6; font-weight: 300; color: var(--muted); max-width: 420px; }

.iso-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.iso-pillar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 16px;
  background: #fff; border: 1px solid var(--line);
}
.iso-pillar__icon {
  flex: none; width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  display: flex; align-items: center; justify-content: center; color: var(--off);
}
.iso-pillar__label { font-size: 13.5px; font-weight: 500; line-height: 1.25; color: var(--ink); }

.iso-lawcard {
  position: relative; border-radius: 32px; padding: 34px; overflow: hidden;
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-deep) 78%);
  min-height: 520px; box-shadow: 0 24px 60px rgba(14, 124, 147, .22);
}
.iso-lawcard > .iso-grain { opacity: .12; }
.iso-lawcard__glow {
  position: absolute; bottom: -90px; right: -60px; width: 320px; height: 320px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(185, 203, 46, .4), transparent 62%);
  filter: blur(60px);
}
.iso-lawcard__kicker {
  margin: 0 0 6px; font-size: 10px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(247, 251, 252, .6);
}
.iso-lawcard h3 { margin: 0 0 22px; font-size: 22px; font-weight: 600; letter-spacing: -.02em; color: var(--off); }
.iso-lawgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.iso-lawgrid__item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 12px 14px; border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .1);
}
.iso-lawgrid__n {
  flex: none; width: 24px; height: 24px; border-radius: 9999px;
  background: rgba(255, 255, 255, .14); color: var(--lime);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.iso-lawgrid__t { font-size: 13px; line-height: 1.35; color: rgba(247, 251, 252, .9); padding-top: 3px; }

.iso-analysis {
  position: relative; margin-top: 22px; padding: 22px 24px; border-radius: 20px;
  background: rgba(15, 32, 39, .5);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 20px 44px rgba(8, 23, 29, .4);
}
.iso-analysis__head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
}
.iso-analysis__title { font-size: 13px; font-weight: 600; color: var(--off); }
.iso-analysis__live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--lime);
}
.iso-analysis__live::before {
  content: ''; width: 7px; height: 7px; border-radius: 9999px; background: var(--lime);
}
.iso-bar { margin-bottom: 14px; }
.iso-bar:last-child { margin-bottom: 0; }
.iso-bar__row {
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(247, 251, 252, .72); margin-bottom: 6px;
}
.iso-bar__val { color: var(--lime); font-weight: 600; }
.iso-bar__track { height: 6px; border-radius: 9999px; background: rgba(255, 255, 255, .1); overflow: hidden; }
.iso-bar__fill { height: 100%; border-radius: 9999px; background: linear-gradient(90deg, var(--teal), var(--lime)); }

/* --------------------------------------------------------------------------
   Section 3 — how it works (dark)
   -------------------------------------------------------------------------- */

.iso-steps-sec {
  position: relative; background: var(--panel);
  overflow: hidden; border-radius: 40px; margin: 0 var(--gutter);
}
.iso-steps-sec__mesh {
  position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 46px 46px;
}
.iso-steps-sec > .iso-grain { opacity: .12; }
.iso-steps-sec__inner { position: relative; padding-top: 84px; padding-bottom: 84px; }
.iso-steps-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: center; }
.iso-steps-grid .iso-h2 { margin-bottom: 34px; color: var(--off); }
.iso-steps { display: flex; flex-direction: column; gap: 14px; }
.iso-step {
  display: flex; gap: 18px; padding: 22px 24px; border-radius: 20px;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: background .3s ease;
}
.iso-step:hover { background: rgba(255, 255, 255, .07); }
.iso-step__n {
  flex: none; font-size: 15px; font-weight: 700; letter-spacing: .02em;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.iso-step h3 { margin: 0 0 7px; font-size: 18px; font-weight: 600; letter-spacing: -.02em; color: var(--off); }
.iso-step p { margin: 0; font-size: 14.5px; line-height: 1.55; font-weight: 300; color: rgba(247, 251, 252, .66); }

.iso-mock-wrap { perspective: 1400px; }
.iso-mock {
  position: relative; border-radius: 24px; overflow: hidden;
  background: linear-gradient(160deg, var(--teal-deep), var(--ink));
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 40px 80px rgba(8, 23, 29, .5);
  transform: rotate(3deg);
}
.iso-mock__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 15px 18px; border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.iso-mock__dot { width: 11px; height: 11px; border-radius: 9999px; }
.iso-mock__dot--r { background: var(--danger); }
.iso-mock__dot--y { background: #D8A94B; }
.iso-mock__dot--g { background: var(--green); }
.iso-mock__email {
  margin-left: 12px; font-size: 12px;
  font-family: ui-monospace, Menlo, monospace; color: rgba(247, 251, 252, .55);
}
.iso-mock__body { padding: 24px; }
.iso-mock__panel {
  padding: 16px 18px; border-radius: 14px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
}
.iso-mock__panel + .iso-mock__panel { margin-top: 14px; }
.iso-mock__label { margin: 0 0 4px; font-size: 11px; color: rgba(247, 251, 252, .5); }
.iso-mock__mono { margin: 0; font-size: 13.5px; font-family: ui-monospace, Menlo, monospace; color: var(--lime); }
.iso-mock__mono--dim { font-size: 13px; color: rgba(247, 251, 252, .82); }
.iso-mock__mono--dim + .iso-mock__mono--dim { margin-top: 3px; }
.iso-mock__badge {
  position: absolute; bottom: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 9999px;
  background: var(--lime); color: var(--ink); font-size: 13px; font-weight: 700;
  box-shadow: 0 12px 28px rgba(185, 203, 46, .4);
  animation: iso-bob 2.6s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   Section 4 — features
   -------------------------------------------------------------------------- */

.iso-sec-head { max-width: 760px; margin-bottom: 44px; }
.iso-sec-head .iso-h2 { margin-bottom: 0; }

.iso-feats { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 16px; }
.iso-feat {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 30px 28px;
  transition: box-shadow .3s ease, transform .3s ease;
}
.iso-feat:hover { box-shadow: 0 18px 44px rgba(15, 32, 39, .1); transform: translateY(-5px); }
.iso-feat__icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--lime));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--off);
}
.iso-feat h3 { margin: 0 0 10px; font-size: 18px; font-weight: 600; letter-spacing: -.02em; color: var(--ink); }
.iso-feat h3:has(+ .iso-feat__subtitle) { margin-bottom: 4px; }
.iso-feat__subtitle { margin: 0 0 10px; font-size: 12.5px; font-weight: 500; color: var(--muted-2); }
.iso-feat p { margin: 0; font-size: 14.5px; line-height: 1.55; font-weight: 300; color: var(--muted); }

/* --------------------------------------------------------------------------
   Section 5 — accountants
   -------------------------------------------------------------------------- */

.iso-acct__p { margin: 0 0 14px; font-size: 16.5px; line-height: 1.6; font-weight: 300; color: var(--muted); }
.iso-acct__p--last { margin-bottom: 26px; }
.iso-acct__p strong { color: var(--ink); font-weight: 600; }
.iso-acct__box {
  position: relative; background: var(--ink); border-radius: 20px;
  padding: 24px 26px; margin-bottom: 26px; overflow: hidden;
}
.iso-acct__box-glow {
  position: absolute; top: -30px; right: -20px; width: 180px; height: 180px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(185, 203, 46, .3), transparent 62%);
  filter: blur(44px);
}
.iso-acct__box p { position: relative; }
.iso-acct__box-title { margin: 0 0 6px; font-size: 15px; line-height: 1.5; color: var(--off); font-weight: 600; }
.iso-acct__box-text { margin: 0; font-size: 14.5px; line-height: 1.5; font-weight: 300; color: rgba(247, 251, 252, .72); }
.iso-acct__disclaimer { margin: 14px 0 0; font-size: 13px; line-height: 1.55; font-weight: 300; color: var(--muted-2); }

.iso-gains { display: flex; flex-direction: column; gap: 12px; }
.iso-gain {
  display: flex; align-items: center; gap: 20px;
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 22px 24px;
  transition: box-shadow .3s ease, transform .3s ease;
}
.iso-gain:hover { box-shadow: 0 14px 34px rgba(15, 32, 39, .09); transform: translateX(4px); }
.iso-gain__label {
  flex: none; width: 78px;
  font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--teal);
}
.iso-gain__value { font-size: 15px; line-height: 1.45; color: var(--ink); }

/* --------------------------------------------------------------------------
   Section 6 — pricing
   -------------------------------------------------------------------------- */

.iso-pricing-head { text-align: center; max-width: 660px; margin: 0 auto 48px; }
.iso-pricing-head .iso-h2 { margin-bottom: 0; }

.iso-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 18px; align-items: start; }
.iso-plan { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 32px; overflow: hidden; }
.iso-plan__head {
  height: 70px; position: relative;
  display: flex; align-items: center; justify-content: space-between; padding: 0 26px;
}
.iso-plan__head::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(15, 32, 39, .4));
}
.iso-plan__name {
  position: relative; z-index: 1; margin: 0;
  font-size: 12px; font-weight: 700; letter-spacing: .16em; color: var(--off);
}
.iso-plan--basic  .iso-plan__head { background: linear-gradient(120deg, var(--muted), var(--ink)); }
.iso-plan--office .iso-plan__head { background: linear-gradient(120deg, var(--teal-deep), var(--teal)); }
.iso-plan--full   .iso-plan__head { background: linear-gradient(120deg, var(--teal), var(--green) 60%, var(--lime)); }
.iso-plan--full   .iso-plan__head::after { content: none; }
.iso-plan__badge {
  position: relative; z-index: 1;
  padding: 5px 13px; border-radius: 9999px;
  background: rgba(15, 32, 39, .7);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--lime); font-size: 10px; font-weight: 700; letter-spacing: .12em;
}
.iso-plan--full {
  background: var(--ink); border-color: transparent;
  box-shadow: 0 30px 60px rgba(14, 124, 147, .24);
  margin-top: -14px;
}
.iso-plan--full > .iso-grain { opacity: .1; }
.iso-plan__body { position: relative; padding: 26px 26px 30px; }
.iso-plan__price {
  margin: 0 0 18px; font-size: 36px; font-weight: 700; letter-spacing: -.03em; color: var(--ink);
}
.iso-plan__price--sm { font-size: 30px; }
.iso-plan__unit { margin-left: 5px; font-size: 14px; font-weight: 400; color: var(--muted-2); }
.iso-plan__price--sm .iso-plan__unit { font-size: 13px; }
.iso-plan--full .iso-plan__price { color: var(--off); }
.iso-plan--full .iso-plan__unit { color: rgba(247, 251, 252, .55); }
.iso-plan__rows { display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.iso-plan__row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; line-height: 1.4; color: var(--ink);
}
.iso-plan__mark { flex: none; font-weight: 700; width: 16px; color: var(--green); }
.iso-plan__row.is-off { color: #9AA6AA; }
.iso-plan__row.is-off .iso-plan__mark { color: #B7C1C4; }
.iso-plan--full .iso-plan__row { color: var(--off); }
.iso-plan--full .iso-plan__mark { color: var(--lime); }
.iso-plan--full .iso-plan__row.is-off { color: rgba(247, 251, 252, .4); }
.iso-plan--full .iso-plan__row.is-off .iso-plan__mark { color: rgba(247, 251, 252, .32); }
.iso-plan__cta {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; padding: 13px; border: none; border-radius: 9999px;
  background: var(--surface); color: var(--ink);
  font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background .3s ease;
}
.iso-plan__cta:hover { background: var(--line); color: var(--ink); }
.iso-plan--full .iso-plan__cta {
  background: var(--off); transition: transform .3s var(--ease);
}
.iso-plan--full .iso-plan__cta:hover { background: var(--off); transform: scale(1.03); }
.iso-plan__note {
  margin: 10px 0 0; font-size: 12px; line-height: 1.5; font-weight: 400;
  color: var(--muted); text-align: center;
}
.iso-plan--full .iso-plan__note { color: rgba(247, 251, 252, .65); }
.iso-plans-note {
  margin: 26px 0 0; text-align: center; font-size: 13px; font-weight: 300; color: var(--muted-2);
}

/* --------------------------------------------------------------------------
   ΑΦΜ check
   -------------------------------------------------------------------------- */

.iso-check-sec { padding-top: 20px; padding-bottom: 40px; }
.iso-check {
  position: relative; border-radius: 40px; overflow: hidden;
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-deep) 60%, var(--ink) 100%);
  padding: 72px 40px;
}
.iso-check > .iso-grain { opacity: .12; }
.iso-check__glow {
  position: absolute; top: -80px; right: -40px; width: 340px; height: 340px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(185, 203, 46, .32), transparent 62%);
  filter: blur(60px);
}
.iso-check__inner { position: relative; max-width: 680px; margin: 0 auto; text-align: center; }
.iso-check__inner .iso-h2 {
  margin-bottom: 14px; font-size: clamp(28px, 3.4vw, 42px); color: var(--off);
}
.iso-check__lead {
  margin: 0 0 30px; font-size: 16px; line-height: 1.55; font-weight: 300;
  color: rgba(247, 251, 252, .78);
}
.iso-check__form {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  max-width: 520px; margin: 0 auto;
}
.iso-check__input {
  flex: 1; min-width: 200px; height: 56px; padding: 0 22px;
  font-size: 16px; font-family: inherit; color: var(--off);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .14); border-radius: 16px; outline: none;
  transition: border-color .3s ease, background .3s ease;
}
.iso-check__input::placeholder { color: rgba(247, 251, 252, .45); }
.iso-check__input:focus { border-color: var(--lime); background: rgba(255, 255, 255, .1); }
.iso-check__submit {
  height: 56px; padding: 0 32px; border: none; border-radius: 16px;
  background: var(--off); color: var(--ink);
  font-size: 15px; font-weight: 600; font-family: inherit; cursor: pointer;
  transition: transform .3s var(--ease);
}
.iso-check__submit:hover { transform: scale(1.04); }
.iso-check__spinner {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 12px;
  color: var(--off); font-size: 15px;
}
.iso-check__spinner::before {
  content: ''; width: 20px; height: 20px; border-radius: 9999px;
  border: 3px solid rgba(255, 255, 255, .3); border-top-color: var(--lime);
  animation: iso-spin .8s linear infinite;
}
.iso-check__result {
  margin-top: 28px; text-align: left;
  background: rgba(15, 32, 39, .55);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 24px; padding: 28px;
  box-shadow: 0 24px 50px rgba(8, 23, 29, .4);
}
.iso-check__result-kicker {
  margin: 0 0 4px; font-size: 10px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(247, 251, 252, .55);
}
.iso-check__result-sum {
  margin: 0 0 20px; font-size: 18px; font-weight: 500; letter-spacing: -.02em; color: var(--off);
}
.iso-check__items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.iso-check__item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 13px; border-radius: 12px; font-size: 13.5px;
}
.iso-check__item.is-ok   { background: rgba(62, 155, 79, .18); color: var(--lime); }
.iso-check__item.is-miss { background: rgba(176, 74, 69, .22); color: var(--danger-soft); }
.iso-check__item span { flex: none; font-weight: 700; }
.iso-check__note {
  margin: 20px 0 0; font-size: 13px; font-weight: 300;
  color: rgba(247, 251, 252, .6); line-height: 1.5;
}
.iso-check__acct { margin: 26px 0 0; font-size: 14.5px; color: rgba(247, 251, 252, .82); }
.iso-check__acct button {
  background: none; border: none; padding: 0; font: inherit;
  color: var(--lime); font-weight: 600; cursor: pointer; text-decoration: underline;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.iso-faq-sec { padding-top: 56px; padding-bottom: 80px; }
.iso-faq-head { text-align: center; margin-bottom: 40px; }
.iso-faq-head .iso-h2 { margin-bottom: 0; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.1; }
.iso-faq { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.iso-faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  transition: border-color .3s ease;
}
.iso-faq__item:hover { border-color: var(--line-2); }
.iso-faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: transparent; border: none; text-align: left;
  cursor: pointer; font-family: inherit;
}
.iso-faq__q > span:first-child {
  font-size: 16px; font-weight: 500; letter-spacing: -.01em; color: var(--ink); line-height: 1.4;
}
.iso-faq__plus {
  flex: none; width: 28px; height: 28px; border-radius: 9999px;
  background: var(--ink); color: var(--lime); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease;
}
.iso-faq__item.is-open .iso-faq__plus { transform: rotate(45deg); }
.iso-faq__a {
  margin: 0; padding: 0 24px 22px;
  font-size: 15px; line-height: 1.6; font-weight: 300; color: var(--muted);
}
.iso-faq__item:not(.is-open) .iso-faq__a { display: none; }

/* --------------------------------------------------------------------------
   Closing CTA band
   -------------------------------------------------------------------------- */

.iso-cta-sec { padding-top: 20px; padding-bottom: 70px; }
.iso-cta {
  position: relative; border-radius: 40px; overflow: hidden;
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-deep) 58%, var(--ink) 100%);
  padding: 64px 44px; text-align: center;
}
.iso-cta > .iso-grain { opacity: .12; }
.iso-cta__glow {
  position: absolute; bottom: -120px; left: -60px; width: 360px; height: 360px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(185, 203, 46, .34), transparent 62%);
  filter: blur(64px);
}
.iso-cta__inner { position: relative; max-width: 680px; margin: 0 auto; }
.iso-cta__inner .iso-h2 { margin-bottom: 14px; font-size: clamp(28px, 3.4vw, 42px); color: var(--off); }
.iso-cta__lead {
  margin: 0 0 30px; font-size: 16px; line-height: 1.55; font-weight: 300;
  color: rgba(247, 251, 252, .78); text-wrap: pretty;
}
.iso-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.iso-cta__actions .iso-btn-ghost { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .16); }
.iso-cta__actions .iso-btn-ghost:hover { background: rgba(255, 255, 255, .12); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.iso-footer {
  position: relative; background: var(--deep); color: rgba(247, 251, 252, .72);
  overflow: hidden; border-radius: 40px; margin: 0 var(--gutter) 2em;
}
.iso-footer > .iso-grain { opacity: .1; }
.iso-footer__inner { position: relative; padding-top: 56px; padding-bottom: 34px; }
.iso-footer__top {
  display: flex; flex-wrap: wrap; gap: 30px;
  justify-content: space-between; align-items: flex-start; margin-bottom: 36px;
}
.iso-footer__about { max-width: 360px; }
.iso-footer__logo { height: 28px; width: auto; display: block; margin-bottom: 16px; }
.iso-footer__wordmark {
  display: flex; align-items: baseline; gap: 1px;
  font-weight: 600; font-size: 20px; letter-spacing: -.02em; margin-bottom: 14px;
}
.iso-footer__wordmark .iso-grad {
  background: linear-gradient(90deg, #3aa9c4, #6bc04a, #c6d63c);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.iso-footer__tld { color: rgba(247, 251, 252, .55); font-weight: 400; }
.iso-footer__about p { margin: 0; font-size: 14px; line-height: 1.6; font-weight: 300; }
.iso-footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.iso-footer__col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.iso-footer__col-title {
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(247, 251, 252, .4); margin-bottom: 2px;
}
.iso-footer__col a,
.iso-footer__col button {
  color: rgba(247, 251, 252, .72);
  background: none; border: none; padding: 0; font: inherit; text-align: left; cursor: pointer;
}
.iso-footer__col a:hover,
.iso-footer__col button:hover { color: #fff; }
.iso-footer__rule { height: 1px; background: rgba(255, 255, 255, .1); margin-bottom: 24px; }
.iso-footer__disclaimer {
  margin: 0 0 18px; font-size: 12.5px; line-height: 1.6; font-weight: 300;
  color: rgba(247, 251, 252, .5);
}
.iso-footer__bottom {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}
.iso-footer__copy { font-size: 12.5px; color: rgba(247, 251, 252, .45); }
.iso-footer__copy a { color: rgba(247, 251, 252, .62); }
.iso-footer__credit {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(247, 251, 252, .5);
}
.iso-footer__credit img { height: 24px; width: auto; opacity: .9; }

/* --------------------------------------------------------------------------
   Modals (contact + legal)
   -------------------------------------------------------------------------- */

.iso-modal {
  position: fixed; inset: 0; z-index: 110;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 4vh 16px; overflow-y: auto;
  background: rgba(8, 23, 29, .66);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.iso-modal[hidden] { display: none; }
.iso-modal--legal {
  z-index: 100; background: rgba(8, 23, 29, .62);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.iso-modal__box {
  width: 100%; max-width: 620px; margin: auto;
  background: #fff; border-radius: 28px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(8, 23, 29, .5);
}
.iso-modal--legal .iso-modal__box { max-width: 820px; }
.iso-modal__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 26px 28px;
  background: linear-gradient(150deg, var(--teal), var(--teal-deep) 70%, var(--ink));
}
.iso-modal--legal .iso-modal__head {
  position: sticky; top: 0; z-index: 2; align-items: center;
  padding: 22px 26px; background: linear-gradient(150deg, var(--teal-deep), var(--ink));
}
.iso-modal__kicker {
  margin: 0 0 5px; font-size: 9px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--lime);
}
.iso-modal__title {
  margin: 0 0 5px; font-size: clamp(19px, 2.6vw, 23px); font-weight: 600;
  letter-spacing: -.02em; color: var(--off); line-height: 1.2;
}
.iso-modal--legal .iso-modal__title { margin-bottom: 0; font-size: clamp(17px, 2.4vw, 21px); }
.iso-modal__sub { margin: 0; font-size: 13.5px; line-height: 1.5; font-weight: 300; color: rgba(247, 251, 252, .72); }
.iso-modal__close {
  flex: none; width: 40px; height: 40px; border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .06);
  color: var(--off); font-size: 20px; line-height: 1; cursor: pointer; font-family: inherit;
  transition: background .3s ease;
}
.iso-modal__close:hover { background: rgba(255, 255, 255, .14); }

/* Contact form ---------------------------------------------------------- */

.iso-form { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 18px; }
.iso-form__label {
  display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .02em;
  color: var(--ink); margin-bottom: 7px;
}
.iso-form__label--role { margin-bottom: 9px; }
.iso-form__req { color: var(--teal); }
.iso-form__2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.iso-form__roles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.iso-form__role {
  padding: 15px 16px; border-radius: 16px;
  border: 1.5px solid var(--line); background: #fff;
  text-align: left; cursor: pointer; font-family: inherit;
  transition: border-color .25s ease, background .25s ease;
}
.iso-form__role:hover { border-color: var(--teal); }
.iso-form__role.is-active { border-color: var(--teal); background: #EAF4F6; }
.iso-form__role b { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.iso-form__role span { display: block; font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.4; }
.iso-form input[type="text"],
.iso-form input[type="tel"],
.iso-form input[type="email"],
.iso-form input[type="number"],
.iso-form textarea {
  width: 100%; padding: 0 14px; height: 46px;
  border-radius: 14px; border: 1.5px solid var(--line); background: var(--surface-2);
  font-family: inherit; font-size: 14.5px; color: var(--ink); outline: none;
  transition: border-color .25s ease, background .25s ease;
}
.iso-form textarea {
  height: auto; padding: 13px 14px; line-height: 1.55; resize: vertical;
}
.iso-form input:focus,
.iso-form textarea:focus { border-color: var(--teal); background: #fff; }
.iso-form__consent { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; }
.iso-form__consent input {
  flex: none; width: 19px; height: 19px; margin-top: 2px; accent-color: var(--teal); cursor: pointer;
}
.iso-form__consent span { font-size: 13px; line-height: 1.55; font-weight: 300; color: var(--muted); }
.iso-form__consent a { color: var(--teal); font-weight: 500; }
.iso-form__msg {
  margin: 0; padding: 12px 15px; border-radius: 14px; font-size: 13.5px; font-weight: 400;
}
.iso-form__msg--err { background: #FDF0EF; border: 1px solid #F3D3D0; color: #9B3A32; }
.iso-form__msg--ok  { background: #EDF6EE; border: 1px solid #CFE6D3; color: #2C6A38; }
.iso-form__foot { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.iso-form__submit {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 8px 8px 8px 24px; border: none; border-radius: 9999px;
  background: var(--ink); color: var(--off);
  font-size: 15px; font-weight: 600; font-family: inherit; cursor: pointer;
  transition: transform .3s var(--ease);
}
.iso-form__submit:hover { transform: scale(1.04); }
.iso-form__submit:disabled { opacity: .6; cursor: progress; transform: none; }
.iso-form__submit__arrow {
  width: 36px; height: 36px; border-radius: 9999px; background: var(--lime);
  display: flex; align-items: center; justify-content: center; color: var(--ink); font-size: 16px;
}
.iso-form__note { font-size: 12.5px; font-weight: 300; color: var(--muted-2); }
/* Honeypot — off-screen, never shown to humans. */
.iso-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Legal body ------------------------------------------------------------ */

.iso-legal { padding: 32px clamp(22px, 4vw, 40px) 12px; }
.iso-legal__meta { margin: 0 0 22px; font-size: 13px; font-weight: 300; color: var(--muted-2); }
.iso-legal__doc h3 { margin: 28px 0 10px; font-size: 17px; font-weight: 600; color: var(--ink); }
.iso-legal__doc > :first-child { margin-top: 0; }
.iso-legal__doc p { margin: 0 0 16px; font-size: 15px; line-height: 1.7; font-weight: 300; color: var(--muted-3); }
.iso-legal__doc ul { margin: 0 0 16px; padding-left: 20px; font-size: 15px; line-height: 1.8; font-weight: 300; color: var(--muted-3); }
.iso-legal__doc strong { font-weight: 600; color: var(--ink); }
.iso-legal__doc table { border-collapse: collapse; width: 100%; }
.iso-legal__doc .iso-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; }
.iso-legal__doc th {
  text-align: left; padding: 11px 13px; border-bottom: 1px solid var(--line);
  background: #F7F9F9; font-size: 13px; font-weight: 600; color: var(--ink);
}
.iso-legal__doc td {
  padding: 11px 13px; border-bottom: 1px solid var(--line);
  font-size: 13.5px; font-weight: 300; color: var(--muted-3);
}
.iso-legal__doc tr:last-child td { border-bottom: none; }
.iso-legal__doc .iso-legal__hint { font-size: 12.5px; line-height: 1.6; color: var(--muted-2); }
.iso-legal__switch {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 34px 0 0;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.iso-legal__switch button {
  padding: 9px 16px; border: none; border-radius: 9999px;
  background: var(--surface); color: var(--ink);
  font-family: inherit; font-size: 13px; font-weight: 500; cursor: pointer;
}
.iso-legal__switch button:hover { background: var(--line); }
.iso-legal__switch .iso-legal__close {
  margin-left: auto; padding: 9px 20px; background: var(--ink); color: var(--off);
}
.iso-legal__switch .iso-legal__close:hover { background: var(--teal-deep); }
.iso-legal__foot {
  margin: 0; padding-bottom: 24px; font-size: 12px; line-height: 1.6;
  font-weight: 300; color: var(--muted-2);
}

/* --------------------------------------------------------------------------
   Cookie banner
   -------------------------------------------------------------------------- */

.iso-cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; justify-content: center; padding: 16px; pointer-events: none;
}
.iso-cookie[hidden] { display: none; }
.iso-cookie__card {
  pointer-events: auto; width: 100%; max-width: 960px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px;
  padding: 20px 24px; border-radius: 24px;
  background: rgba(11, 26, 32, .9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 20px 60px rgba(8, 23, 29, .5);
}
.iso-cookie__text { flex: 1; min-width: 240px; }
.iso-cookie__text b { display: block; margin-bottom: 5px; font-size: 14px; font-weight: 600; color: var(--off); }
.iso-cookie__text p { margin: 0; font-size: 13px; line-height: 1.55; font-weight: 300; color: rgba(247, 251, 252, .7); }
.iso-cookie__text button {
  background: none; border: none; padding: 0; font: inherit;
  color: var(--lime); text-decoration: underline; cursor: pointer;
}
.iso-cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.iso-cookie__actions button {
  height: 44px; border-radius: 9999px; font-family: inherit;
  font-size: 13.5px; font-weight: 500; cursor: pointer;
}
.iso-cookie__reject {
  padding: 0 20px; border: 1px solid rgba(255, 255, 255, .2);
  background: transparent; color: var(--off); transition: background .3s ease;
}
.iso-cookie__reject:hover { background: rgba(255, 255, 255, .08); }
.iso-cookie__accept {
  padding: 0 24px; border: none; background: var(--lime); color: var(--ink);
  font-weight: 600; transition: transform .3s var(--ease);
}
.iso-cookie__accept:hover { transform: scale(1.04); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
}

@media (max-width: 860px) {
  .iso-nav__links { display: none; }
  .iso-nav__cta--ghost { display: none; }
  .iso-nav__cta--primary { display: none; }
  .iso-nav__burger { display: flex; }
  .iso-hero__copy { width: 100%; }
  .iso-hero { padding: 30px 20px 40px; border-radius: 28px; }
  .iso-split--law,
  .iso-split--acct { grid-template-columns: 1fr; }
  .iso-sticky { position: static; }
  .iso-steps-grid { grid-template-columns: 1fr; gap: 34px; }
  .iso-hero__ghost { font-size: 40vw; }
  .iso-sec { padding-top: 54px; padding-bottom: 54px; }
  .iso-mock { transform: rotate(0deg); }
  .iso-steps-sec { border-radius: 28px; }
  .iso-cta { padding: 44px 22px; border-radius: 28px; }
}

@media (max-width: 620px) {
  .iso-form__2,
  .iso-form__roles { grid-template-columns: 1fr; }
  .iso-modal__head { padding: 20px; }
  .iso-form { padding: 22px 20px 26px; }
  .iso-legal { padding: 24px 20px 10px; }
  .iso-cookie__card { padding: 18px; border-radius: 20px; }
}

@media (max-width: 600px) {
  .iso-footer { border-radius: 28px; margin-bottom: 1em; }
}

@media (max-width: 560px) {
  .iso-lawgrid,
  .iso-check__items,
  .iso-pillars { grid-template-columns: 1fr; }
  .iso-footer__cols { gap: 30px; }
  .iso-nav__pill { padding: 6px 6px 6px 14px; gap: 6px; }
  .iso-plan--full { margin-top: 0; }
  .iso-check { padding: 52px 22px; }
}

@media (max-width: 430px) {
  .iso-nav__tld { display: none; }
  .iso-hero { padding: 26px 16px 34px; }
  .iso-mock__email { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
}
