/* ==========================================================================
   Wizo — main stylesheet
   1. Tokens      2. Base      3. Layout      4. Nav
   5. Hero        6. Sections  7. Cards       8. Forms
   9. Footer     10. Animations
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */
:root {
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --cyan:     #22d3ee;
  --gradient: linear-gradient(120deg, #1d4ed8 0%, #3b82f6 55%, #22d3ee 100%);

  --ink:      #0b0f19;
  --ink-soft: #39415a;
  --muted:    #6b7389;
  --line:     #e6eaf3;

  --bg:       #ffffff;
  --bg-soft:  #f6f8fd;
  --bg-blue:  #f2f6ff;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(11, 15, 25, .05);
  --shadow-md: 0 10px 30px -12px rgba(11, 15, 25, .16);
  --shadow-lg: 0 30px 70px -30px rgba(11, 15, 25, .28);
  --shadow-blue: 0 18px 40px -18px rgba(37, 99, 235, .55);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --nav-h: 72px;
  --wrap: 1160px;
}

/* 2. Base ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 640;
  letter-spacing: -.025em;
  line-height: 1.12;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: -.038em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -.032em; }
h3 { font-size: 1.22rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-700); }

img, svg { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: var(--r-sm);
  z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 16px; color: #fff; }

/* 3. Layout ---------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }

section { padding: clamp(68px, 9vw, 118px) 0; }
.section-soft { background: var(--bg-soft); }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-600);
  margin-bottom: 14px;
}
.kicker::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--gradient);
}

.section-head { max-width: 640px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-head p { font-size: 1.08rem; color: var(--muted); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); }

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-size: .97rem; font-weight: 560;
  padding: 14px 26px; border-radius: var(--r-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap; text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--gradient); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 24px 48px -18px rgba(37, 99, 235, .65); }

.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { color: var(--ink); border-color: #c9d4ea; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { color: #fff; transform: translateY(-2px); }

.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-lg { padding: 17px 32px; font-size: 1.02rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* 4. Nav ------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(11, 15, 25, .5); }

.nav-inner {
  height: var(--nav-h);
  display: flex; align-items: center; gap: 22px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; }
.logo:hover { color: var(--ink); }
.logo-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--gradient);
  display: grid; place-items: center;
  color: #fff; font-size: .95rem; font-weight: 700;
  box-shadow: var(--shadow-blue);
}
.logo-text { font-size: 1.24rem; letter-spacing: -.03em; }

.nav-links { display: flex; gap: 4px; margin-left: 10px; }
.nav-links a {
  padding: 9px 13px; border-radius: var(--r-sm);
  color: var(--ink-soft); font-size: .95rem; font-weight: 500;
  transition: background .18s, color .18s;
}
.nav-links a:hover { background: var(--bg-blue); color: var(--blue-700); }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }

/* Language switch */
.lang {
  display: inline-flex; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: var(--r-pill); padding: 3px;
}
.lang button {
  font: inherit; font-size: .82rem; font-weight: 650; letter-spacing: .04em;
  padding: 6px 13px; border: 0; border-radius: var(--r-pill);
  background: transparent; color: var(--muted); cursor: pointer;
  transition: background .2s, color .2s;
}
.lang button:hover { color: var(--ink); }
.lang button[aria-pressed="true"] { background: #fff; color: var(--blue-700); box-shadow: var(--shadow-sm); }

.nav-toggle {
  display: none; width: 42px; height: 42px; padding: 0;
  border: 1px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer;
}
.nav-toggle span { display: block; width: 17px; height: 1.8px; margin: 3.5px auto; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.3px) rotate(-45deg); }

.nav-mobile { display: none; border-top: 1px solid var(--line); background: #fff; padding: 14px 0 22px; }
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 13px 4px; color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--line); }
.nav-mobile .btn { width: 100%; margin-top: 16px; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* 5. Hero ------------------------------------------------------------------ */
.hero { position: relative; padding: clamp(54px, 7vw, 92px) 0 clamp(60px, 8vw, 104px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -30% 0 auto -10%;
  height: 720px; z-index: -1;
  background:
    radial-gradient(560px 380px at 12% 32%, rgba(59, 130, 246, .16), transparent 65%),
    radial-gradient(520px 340px at 82% 18%, rgba(34, 211, 238, .14), transparent 62%);
  filter: blur(4px);
}

.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero-copy { max-width: 560px; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.25rem); margin-bottom: 30px; }
.hero-note { margin-top: 20px; font-size: .93rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-note .dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, .16); flex: none; }

.pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 7px 15px 7px 9px; font-size: .85rem; font-weight: 500; color: var(--ink-soft);
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.pill-badge b { color: var(--blue-700); font-weight: 650; }

/* Browser mock in hero */
.browser {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: #fbfcfe; }
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #dfe4ee; }
.browser-url {
  margin-left: 10px; flex: 1; height: 22px; border-radius: var(--r-pill);
  background: #f1f4fa; font-size: .68rem; color: var(--muted);
  display: flex; align-items: center; padding: 0 12px; font-style: normal;
}
.browser-body { padding: 22px; display: grid; gap: 14px; }

.mock-hero { border-radius: var(--r-md); background: var(--gradient); padding: 24px; color: #fff; }
.mock-hero .l1 { height: 11px; width: 62%; border-radius: 4px; background: rgba(255,255,255,.9); margin-bottom: 9px; }
.mock-hero .l2 { height: 8px; width: 84%; border-radius: 4px; background: rgba(255,255,255,.5); margin-bottom: 7px; }
.mock-hero .l3 { height: 8px; width: 45%; border-radius: 4px; background: rgba(255,255,255,.5); margin-bottom: 16px; }
.mock-hero .b { height: 26px; width: 108px; border-radius: var(--r-pill); background: #fff; }

.mock-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mock-card { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px; background: #fff; }
.mock-card i { display: block; width: 22px; height: 22px; border-radius: 7px; background: var(--bg-blue); margin-bottom: 9px; }
.mock-card .l { height: 6px; border-radius: 3px; background: #eceff6; margin-bottom: 5px; }
.mock-card .l.s { width: 62%; }

.float-card {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: 12px 16px; font-size: .84rem; font-weight: 560; color: var(--ink);
  display: flex; align-items: center; gap: 10px;
}
.hero-visual { position: relative; }
.float-card.one { left: -22px; bottom: 58px; animation: floaty 6s ease-in-out infinite; }
.float-card.two { right: -14px; top: 42px; animation: floaty 7s ease-in-out .6s infinite; }
.float-card svg { width: 18px; height: 18px; color: var(--blue-600); }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 34px; }
  .hero-copy { max-width: none; }
  .float-card { display: none; }
}

/* 6. Sections -------------------------------------------------------------- */
/* What we do */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.service {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(26px, 3.4vw, 40px);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.service::after {
  content: ""; position: absolute; inset: auto -40% -60% auto; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(59,130,246,.13), transparent 68%);
  opacity: 0; transition: opacity .35s ease;
}
.service:hover { transform: translateY(-4px); border-color: #d3deF5; box-shadow: var(--shadow-md); }
.service:hover::after { opacity: 1; }
.service-num {
  font-size: .82rem; font-weight: 700; letter-spacing: .1em;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 16px; display: block;
}
.service h3 { font-size: 1.5rem; margin-bottom: 6px; }
.service .who { color: var(--blue-700); font-weight: 560; font-size: .95rem; margin-bottom: 12px; }
.service p { color: var(--muted); }
.service-list { margin-top: 18px; display: grid; gap: 9px; }
.service-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.service-list svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--blue-600); }

/* Benefits */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit { padding: 4px; }
.benefit-icon {
  width: 50px; height: 50px; border-radius: 15px;
  background: var(--bg-blue); border: 1px solid #dce8ff;
  display: grid; place-items: center; color: var(--blue-600);
  margin-bottom: 18px; transition: transform .3s ease;
}
.benefit:hover .benefit-icon { transform: translateY(-4px) rotate(-4deg); }
.benefit-icon svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 1.1rem; margin-bottom: 7px; }
.benefit p { color: var(--muted); font-size: .96rem; }

/* Cases */
.case {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 56px);
  align-items: center; padding: clamp(26px, 3.6vw, 44px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.case + .case { margin-top: 26px; }
.case:nth-child(even) .case-visual { order: -1; }
.case-tag {
  display: inline-flex; align-items: center; gap: 7px; font-size: .74rem; font-weight: 650;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  background: var(--bg-soft); border: 1px solid var(--line);
  padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 16px;
}
.case h3 { font-size: 1.65rem; margin-bottom: 2px; }
.case .city { color: var(--muted); font-size: .93rem; margin-bottom: 18px; }
.case-block { margin-bottom: 16px; }
.case-label { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.case-label.before { color: #b4436c; }
.case-label.after  { color: var(--blue-700); }
.case-label.gain   { color: #1a8a5a; }
.case-block p { color: var(--muted); font-size: .97rem; }
.case-block ul { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 14px; margin-top: 10px; }
.case-block ul li { font-size: .93rem; color: var(--ink-soft); display: flex; gap: 8px; align-items: center; }
.case-block ul li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-500); flex: none; }
.case-note { font-size: .82rem; color: var(--muted); border-top: 1px dashed var(--line); padding-top: 14px; margin-top: 18px; }

/* phone mockups inside cases */
.phone-duo { display: flex; gap: 18px; align-items: center; justify-content: center; }
.phone {
  width: 170px; border-radius: 26px; border: 8px solid #14181f; background: #fff;
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.phone.old { border-color: #5c626d; filter: saturate(.35); }
.phone-notch { height: 16px; background: #14181f; border-radius: 0 0 9px 9px; width: 62px; margin: 0 auto; position: relative; z-index: 2; }
.phone.old .phone-notch { background: #5c626d; }
.phone-screen { padding: 12px; display: grid; gap: 8px; min-height: 250px; font-size: 8px; }
.phone-label {
  text-align: center; font-size: .72rem; font-weight: 650; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-top: 12px;
}
.ps-bar { height: 20px; border-radius: 6px; background: var(--gradient); }
.ps-bar.grey { background: #c8ccd4; }
.ps-img { height: 54px; border-radius: 8px; background: linear-gradient(135deg, #dbe7ff, #f0f5ff); }
.ps-img.grey { background: #dcdfe5; border-radius: 2px; }
.ps-line { height: 7px; border-radius: 4px; background: #e9edf5; }
.ps-line.w70 { width: 70%; } .ps-line.w45 { width: 45%; } .ps-line.w90 { width: 90%; }
.ps-line.grey { background: #dcdfe5; border-radius: 1px; }
.ps-btn { height: 22px; border-radius: 20px; background: var(--blue-600); }
.ps-btn.grey { background: #b6bac2; border-radius: 2px; }
.ps-chips { display: flex; gap: 5px; }
.ps-chips i { flex: 1; height: 15px; border-radius: 20px; background: var(--bg-blue); }

@media (max-width: 860px) {
  .services, .benefits, .case { grid-template-columns: 1fr; }
  .benefits { gap: 28px; }
  .case:nth-child(even) .case-visual { order: 0; }
  .case-block ul { grid-template-columns: 1fr; }
}
@media (min-width: 861px) and (max-width: 1050px) {
  .benefits { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
}

/* 7. Example cards --------------------------------------------------------- */
.disclaimer {
  display: flex; gap: 11px; align-items: flex-start;
  background: var(--bg-blue); border: 1px solid #dbe7ff;
  border-radius: var(--r-md); padding: 14px 18px;
  font-size: .93rem; color: var(--ink-soft); margin-bottom: 34px;
}
.disclaimer svg { width: 18px; height: 18px; color: var(--blue-600); flex: none; margin-top: 3px; }

.examples { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.ex-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; color: inherit;
  transition: transform .32s cubic-bezier(.2,.7,.2,1), box-shadow .32s ease, border-color .3s ease;
}
.ex-card:hover { transform: translateY(-6px); border-color: #d3def5; box-shadow: var(--shadow-lg); color: inherit; }

.ex-preview {
  height: 182px; position: relative; overflow: hidden;
  background: var(--c-bg, #f4f4f4); padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
  border-bottom: 1px solid var(--line);
}
.ex-card:hover .ex-preview .zoom { transform: scale(1.04); }
.ex-preview .zoom { transition: transform .5s cubic-bezier(.2,.7,.2,1); }

/* preview building blocks (recoloured per card) */
.pv-nav { display: flex; align-items: center; gap: 6px; }
.pv-dot { width: 16px; height: 16px; border-radius: 5px; background: var(--c-1); }
.pv-dot.round { border-radius: 50%; }
.pv-menu { display: flex; gap: 5px; margin-left: auto; }
.pv-menu i { width: 16px; height: 4px; border-radius: 2px; background: var(--c-2); opacity: .55; }
.pv-title { height: 13px; border-radius: 3px; background: var(--c-1); width: 68%; }
.pv-title.sm { height: 8px; width: 44%; opacity: .6; }
.pv-block { flex: 1; border-radius: 8px; background: var(--c-2); }
.pv-block.soft { opacity: .35; }
.pv-cols { display: flex; gap: 7px; flex: 1; }
.pv-cols > * { flex: 1; border-radius: 7px; background: var(--c-2); }
.pv-cols > *:nth-child(2) { opacity: .6; }
.pv-cols > *:nth-child(3) { opacity: .35; }
.pv-btn { height: 16px; width: 62px; border-radius: 20px; background: var(--c-3); }
.pv-btn.square { border-radius: 3px; }
.pv-circle { width: 62px; height: 62px; border-radius: 50%; background: var(--c-3); align-self: center; }
.pv-stack { display: grid; gap: 5px; flex: 1; }
.pv-stack i { border-radius: 4px; background: var(--c-2); opacity: .5; }
.pv-split { display: flex; gap: 10px; flex: 1; }
.pv-split .l { flex: 1.1; display: grid; gap: 6px; align-content: center; }
.pv-split .r { flex: 1; border-radius: 8px; background: var(--c-2); }
.pv-line { height: 6px; border-radius: 3px; background: var(--c-1); opacity: .8; }
.pv-line.s { width: 55%; opacity: .45; }

.ex-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.ex-sector { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.ex-card h3 { font-size: 1.18rem; margin-bottom: 3px; }
.ex-city { font-size: .88rem; color: var(--muted); margin-bottom: 16px; }
.ex-foot { margin-top: auto; display: flex; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); }
.ex-open { display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; font-weight: 560; color: var(--blue-600); }
.ex-open svg { width: 15px; height: 15px; transition: transform .25s ease; }
.ex-card:hover .ex-open svg { transform: translateX(3px); }

@media (max-width: 980px) { .examples { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .examples { grid-template-columns: 1fr; } }

/* Pricing ------------------------------------------------------------------ */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 60px); align-items: center; }
.price-figure {
  background: var(--ink); color: #fff; border-radius: var(--r-xl);
  padding: clamp(30px, 4vw, 46px); position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.price-figure::before {
  content: ""; position: absolute; inset: -50% -20% auto auto; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(59,130,246,.55), transparent 65%);
}
.price-figure > * { position: relative; }
.price-range { font-size: clamp(2.6rem, 6vw, 3.6rem); font-weight: 680; letter-spacing: -.04em; color: #fff; line-height: 1; }
.price-range small { font-size: .95rem; font-weight: 500; letter-spacing: 0; color: rgba(255,255,255,.62); display: block; margin-top: 12px; }
.price-list { margin-top: 28px; display: grid; gap: 12px; }
.price-list li { display: flex; gap: 11px; align-items: flex-start; color: rgba(255,255,255,.82); font-size: .96rem; }
.price-list svg { width: 18px; height: 18px; color: var(--cyan); flex: none; margin-top: 3px; }
.price-quote { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.7); font-size: .93rem; }

@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } }

/* Free concept ------------------------------------------------------------- */
.concept {
  background: var(--gradient); color: #fff; border-radius: var(--r-xl);
  padding: clamp(34px, 5vw, 64px); text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.concept::before, .concept::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.concept::before { width: 340px; height: 340px; top: -140px; left: -90px; }
.concept::after { width: 260px; height: 260px; bottom: -120px; right: -60px; }
.concept > * { position: relative; }
.concept h2 { color: #fff; max-width: 640px; margin-inline: auto; }
.concept p { color: rgba(255,255,255,.86); max-width: 600px; margin: 0 auto 28px; font-size: 1.06rem; }
.concept .btn { background: #fff; color: var(--blue-700); box-shadow: 0 18px 40px -18px rgba(0,0,0,.5); }
.concept .btn:hover { color: var(--blue-700); }
.concept-steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; margin-top: 30px; font-size: .9rem; color: rgba(255,255,255,.8); }
.concept-steps span { display: inline-flex; align-items: center; gap: 8px; }
.concept-steps b { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.2); display: grid; place-items: center; font-size: .74rem; }

/* 8. Contact / forms ------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(26px, 4vw, 52px); align-items: start; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(24px, 3.4vw, 38px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .88rem; font-weight: 560; color: var(--ink); margin-bottom: 7px; }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: .96rem; color: var(--ink);
  padding: 12px 15px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fdfdff; transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, .13);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.choices { display: grid; gap: 9px; }
.choice {
  display: flex; align-items: center; gap: 11px; cursor: pointer;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 12px 15px; font-size: .95rem; transition: border-color .2s, background .2s;
}
.choice:hover { border-color: #c9d7f2; background: #fbfcff; }
.choice input { width: 18px; height: 18px; accent-color: var(--blue-600); flex: none; margin: 0; }
.choice:has(input:checked) { border-color: var(--blue-500); background: var(--bg-blue); }

.form-card .btn-primary { width: 100%; margin-top: 8px; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-status { margin-top: 14px; font-size: .92rem; padding: 12px 15px; border-radius: var(--r-sm); background: #ecfdf5; color: #10684a; border: 1px solid #c3ecd9; }
.form-status[hidden] { display: none; }

.contact-side { display: grid; gap: 14px; }
.contact-item {
  display: flex; gap: 14px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 17px 20px; color: inherit;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s;
}
.contact-item:hover { transform: translateY(-2px); border-color: #d3def5; box-shadow: var(--shadow-md); color: inherit; }
.contact-item .ic { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; flex: none; }
.contact-item .ic svg { width: 21px; height: 21px; }
.ic.blue { background: var(--bg-blue); color: var(--blue-600); }
.ic.green { background: #e9f9ef; color: #17a34a; }
.contact-item .k { display: block; font-size: .78rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.contact-item .v { display: block; font-weight: 560; color: var(--ink); font-size: 1rem; word-break: break-word; }

.contact-hours { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; font-size: .93rem; color: var(--muted); }
.contact-hours b { color: var(--ink); display: block; margin-bottom: 6px; font-weight: 600; }

@media (max-width: 860px) { .contact-grid, .field-row { grid-template-columns: 1fr; } }

/* 9. Footer ---------------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(255,255,255,.66); padding: 62px 0 96px; }
.footer a { color: rgba(255,255,255,.66); }
.footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .logo { color: #fff; }
.footer .logo:hover { color: #fff; }
.footer-about p { margin-top: 14px; max-width: 280px; font-size: .95rem; }
.footer h4 { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.footer-col li { margin-bottom: 10px; font-size: .95rem; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; padding-top: 26px; font-size: .88rem; }
.footer-bottom .lang { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }
.footer-bottom .lang button { color: rgba(255,255,255,.6); }
.footer-bottom .lang button[aria-pressed="true"] { background: rgba(255,255,255,.14); color: #fff; box-shadow: none; }
@media (max-width: 780px) { .footer-top { grid-template-columns: 1fr 1fr; } }

/* WhatsApp floating button */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, .7);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float svg { width: 29px; height: 29px; }
@media (max-width: 520px) { .wa-float { width: 50px; height: 50px; right: 14px; bottom: 14px; } .wa-float svg { width: 26px; height: 26px; } }

/* 10. Animations ----------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; }
.reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; }
.reveal[data-d="4"] { transition-delay: .28s; }
.reveal[data-d="5"] { transition-delay: .35s; }
.reveal[data-d="6"] { transition-delay: .42s; }

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

/* Legal pages -------------------------------------------------------------- */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.35rem; margin-top: 36px; }
