/* =========================================================
   AESTUS CONSULTING — Financijsko savjetovanje landing
   Brand: Aestus Blue #1A00FF · Aestus Red #FA4031 · Lato
   ========================================================= */

:root {
  --blue: #1a00ff;
  --blue-deep: #1400c4;
  --red: #fa4031;
  --ink: #0b0b16;
  --body: #50505d;
  --muted: #8a8a96;
  --line: #e7e7ef;
  --bg: #ffffff;
  --tint: #f5f5fb;
  --dark: #07071a;
  --dark-2: #0d0d2a;

  --grad: linear-gradient(72deg, var(--red) 0%, #b3199a 42%, var(--blue) 100%);
  --grad-soft: linear-gradient(72deg, rgba(250,64,49,.08), rgba(26,0,255,.08));

  --wrap: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -28px rgba(11, 11, 60, .28);
  --shadow-sm: 0 10px 28px -16px rgba(11, 11, 60, .25);

  --font: "Lato", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { color: var(--ink); line-height: 1.08; letter-spacing: -.02em; font-weight: 900; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

/* grid children must be allowed to shrink below their content's min-content,
   otherwise long words / form controls force horizontal overflow on mobile */
.hero-grid > *, .benefits-grid > *, .form-grid > *, .team-grid > *, .faq-wrap > *, .cards-3 > * { min-width: 0; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================ BUTTONS ============================ */
.btn {
  --b: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font); font-weight: 700; font-size: 16px;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 26px -12px rgba(26, 0, 255, .65); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(26, 0, 255, .7); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--blue); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(0,0,0,.4); }
.btn-sm { padding: 11px 20px; font-size: 14.5px; }
.btn-lg { padding: 17px 34px; font-size: 17px; }
.btn-block { width: 100%; }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(0,0,0,.3); }
.header-inner { display: flex; align-items: center; gap: 22px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 30px; width: auto; }
.brand-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); padding: 4px 9px; border: 1px solid rgba(26,0,255,.25); border-radius: 999px;
}
.nav { display: flex; gap: 28px; margin-inline: auto; }
.nav a { font-size: 15.5px; font-weight: 700; color: var(--ink); opacity: .82; transition: opacity .2s, color .2s; }
.nav a:hover { opacity: 1; color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.phone { font-weight: 700; font-size: 15px; color: var(--ink); }
.phone:hover { color: var(--blue); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; gap: 6px; padding: 14px 24px 24px; border-bottom: 1px solid var(--line); background: #fff; }
.mobile-menu a { font-weight: 700; font-size: 17px; padding: 12px 4px; color: var(--ink); }
.mobile-menu .btn { margin-top: 10px; }

/* ============================ HERO ============================ */
.hero { position: relative; padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 5vw, 70px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.eyebrow { font-size: 13.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.hero h1 { font-size: clamp(38px, 5.4vw, 68px); margin-bottom: 22px; }
.hero-sub { font-size: clamp(17px, 1.4vw, 19.5px); color: var(--body); max-width: 36ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-trust { list-style: none; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 14.5px; color: var(--muted); }
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust strong { color: var(--ink); font-weight: 900; }
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); }

.hero-media { position: relative; }
.hero-photo { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 55%, rgba(11,11,60,.18)); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.ae-watermark { position: absolute; top: 18px; left: 18px; width: 42px; height: 42px; background: rgba(255,255,255,.92); border-radius: 12px; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.ae-watermark img { width: 24px; }
.floating-card {
  position: absolute; left: -22px; bottom: -26px; max-width: 320px;
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; padding: 18px 20px; border-radius: 16px; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.fc-icon { flex: none; width: 34px; height: 34px; border-radius: 9px; background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 17px; }
.fc-title { color: var(--ink); font-weight: 900; font-size: 14.5px; line-height: 1.3; }
.fc-sub { font-size: 13px; color: var(--muted); margin-top: 3px; }
.hero-rule { height: 4px; border-radius: 4px; background: var(--grad); max-width: var(--wrap); margin: clamp(40px,5vw,64px) auto 0; margin-inline: max(24px, calc((100% - var(--wrap))/2 + 24px)); }

/* ============================ SECTIONS ============================ */
.section { padding-block: clamp(58px, 7vw, 104px); }
.section-tint { background: var(--tint); }
.section-head { max-width: 720px; margin: 0 auto clamp(36px, 4vw, 56px); text-align: center; }
.section-head.left { text-align: left; margin-inline: 0; }
.kicker { font-size: 13px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.kicker-light { color: #9b9bff; }
.section-head h2, .benefits-head h2, .form-intro h2, .team-copy h2 { font-size: clamp(28px, 3.4vw, 44px); }
.section-lead { font-size: 18px; color: var(--body); margin-top: 16px; }
.section-head .section-lead { margin-inline: auto; max-width: 60ch; }

/* ============ Situations ============ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.situation {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px 30px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.situation::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0; background: var(--grad); transition: width .35s ease; }
.situation:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.situation:hover::before { width: 100%; }
.sit-no { display: inline-block; font-size: 14px; font-weight: 900; color: var(--red); letter-spacing: .08em; margin-bottom: 14px; }
.situation h3 { font-size: 20.5px; margin-bottom: 12px; }
.situation p { font-size: 15.5px; }

.situation-strip {
  display: flex; align-items: center; gap: 26px; margin-top: 24px;
  background: var(--ink); color: #fff; border-radius: var(--radius); padding: 30px 34px;
}
.situation-strip .ss-mark { flex: none; width: 52px; height: 52px; border-radius: 14px; background: var(--grad); display: grid; place-items: center; font-size: 30px; font-weight: 300; color: #fff; }
.situation-strip h3 { color: #fff; font-size: 21px; margin-bottom: 6px; }
.situation-strip p { color: rgba(255,255,255,.72); font-size: 15px; }
.situation-strip .ss-text { flex: 1; }
.situation-strip .btn { flex: none; }

/* ============ Benefits ============ */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.benefits-head .section-lead { margin-bottom: 26px; }
.benefits-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.benefits-photo img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.benefits-list { list-style: none; display: grid; gap: 4px; }
.benefits-list li { display: flex; gap: 20px; padding: 22px 8px; border-bottom: 1px solid var(--line); align-items: flex-start; }
.benefits-list li:last-child { border-bottom: 0; }
.b-num { flex: none; font-size: 15px; font-weight: 900; color: var(--blue); padding-top: 3px; }
.benefits-list h3 { font-size: 20px; margin-bottom: 6px; }
.benefits-list p { font-size: 15.5px; }

/* ============ Why ============ */
.why-card { background: var(--tint); border-radius: var(--radius); padding: 34px 28px; transition: transform .25s ease, box-shadow .25s ease; }
.section-tint .why-card, .why-card { background: #fff; border: 1px solid var(--line); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why-ic { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px; background: var(--grad-soft); color: var(--blue); font-size: 22px; margin-bottom: 18px; }
.why-card h3 { font-size: 21px; margin-bottom: 12px; }
.why-card p { font-size: 15.5px; }
.service-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 38px; }
.service-chips span {
  font-size: 14.5px; font-weight: 700; color: var(--ink);
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
}
.service-chips span:nth-child(2) { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============ One-stop services ============ */
.services-list { list-style: none; display: grid; gap: 4px; max-width: 60ch; margin-inline: auto; }
.services-list li { padding: 22px 8px; border-bottom: 1px solid var(--line); font-size: 16.5px; color: var(--body); line-height: 1.7; }
.services-list li:last-child { border-bottom: 0; }
.services-list li strong { color: var(--ink); font-weight: 900; }

/* ============ Testimonials ============ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  display: flex; flex-direction: column; gap: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.t-logo { height: 40px; width: auto; max-width: 160px; object-fit: contain; object-position: left center; }
.testimonial blockquote { font-size: 15.5px; color: var(--body); line-height: 1.75; font-style: normal; flex: 1; }
.t-author { font-weight: 900; color: var(--blue); font-size: 15px; margin-top: 2px; }

/* ============ Process ============ */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; position: relative; }
.step { position: relative; padding-top: 8px; }
.step-no {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
  background: #fff; border: 2px solid var(--line); color: var(--ink); font-weight: 900; font-size: 22px; margin-bottom: 20px;
  position: relative; z-index: 2; transition: .3s;
}
.step:hover .step-no { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-3px); }
.steps::before { content: ""; position: absolute; top: 36px; left: 56px; right: 56px; height: 2px; background: linear-gradient(90deg, var(--red), var(--blue)); opacity: .25; z-index: 1; }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 15px; }

/* ============ Team (dark) ============ */
.section-dark { position: relative; background: var(--dark); color: #fff; overflow: hidden; }
.section-dark h2 { color: #fff; }
.coast { position: absolute; inset: 0; opacity: .10; mix-blend-mode: screen; pointer-events: none; }
.coast img { width: 100%; height: 100%; object-fit: cover; object-position: bottom; filter: invert(1) grayscale(1) brightness(1.6); }
.team-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.team-copy p { color: rgba(255,255,255,.74); margin-top: 18px; font-size: 17px; }
.team-stats { display: flex; gap: 30px; margin-top: 32px; flex-wrap: wrap; }
.team-stats div { display: flex; flex-direction: column; }
.team-stats strong { font-size: 26px; font-weight: 900; color: #fff; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.team-stats span { font-size: 13.5px; color: rgba(255,255,255,.6); letter-spacing: .02em; }
.team-photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 70px -30px rgba(0,0,0,.7); border: 1px solid rgba(255,255,255,.08); }
.team-photo img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.team-photo figcaption { font-size: 13px; color: rgba(255,255,255,.55); padding: 14px 18px; background: var(--dark-2); }

/* ============ Form ============ */
.form-section { background: var(--tint); }
.form-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 4vw, 60px); align-items: start; }
.form-intro { position: sticky; top: 96px; }
.form-intro .section-lead { margin-bottom: 26px; }
.form-assure { list-style: none; display: grid; gap: 14px; }
.form-assure li { position: relative; padding-left: 32px; font-weight: 700; color: var(--ink); font-size: 15.5px; }
.form-assure li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; border-radius: 50%; background: var(--grad); color: #fff; font-size: 12px; display: grid; place-items: center; font-weight: 900; }

.lead-form { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow); }
.lead-form::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--grad); border-radius: 22px 22px 0 0; }
.form-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 24px; }
.fb-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--ink); background: var(--tint); border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; }
.fb-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); flex: none; }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: var(--muted); }
.field { margin-bottom: 22px; }
.field > label { display: block; font-weight: 900; color: var(--ink); font-size: 15.5px; margin-bottom: 12px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form input[type="text"], .lead-form input[type="tel"], .lead-form input[type="email"] {
  width: 100%; height: 50px; padding: 0 16px; font-family: var(--font); font-size: 16px; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 12px; background: #fff; transition: border-color .2s, box-shadow .2s;
}
.lead-form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(26,0,255,.12); }
.lead-form textarea {
  width: 100%; min-height: 96px; padding: 13px 16px; font-family: var(--font); font-size: 16px; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 12px; background: #fff; resize: vertical; line-height: 1.5;
  transition: border-color .2s, box-shadow .2s;
}
.lead-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(26,0,255,.12); }
.lead-form textarea::placeholder { color: var(--muted); }
.field > label .opt { color: var(--muted); font-weight: 400; }

.segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.segmented button {
  font-family: var(--font); font-weight: 700; font-size: 15px; color: var(--ink);
  padding: 14px 12px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; transition: .2s;
}
.segmented button:hover { border-color: var(--blue); }
.segmented button.active { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 10px 22px -12px rgba(26,0,255,.6); }

.radio-cards { display: grid; gap: 10px; }
.radio-card { position: relative; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; cursor: pointer; transition: .2s; font-weight: 700; color: var(--ink); font-size: 15px; }
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card::before { content: ""; flex: none; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line); transition: .2s; }
.radio-card:hover { border-color: var(--blue); }
.radio-card:has(input:checked) { border-color: var(--blue); background: rgba(26,0,255,.04); }
.radio-card:has(input:checked)::before { border-color: var(--blue); background: radial-gradient(circle, var(--blue) 0 42%, transparent 46%); }

.field.invalid input, .field.invalid .segmented button, .field.invalid .radio-cards { border-color: var(--red); }
.field.invalid .segmented, .field.invalid .radio-cards { outline: 1px solid transparent; }
.field.invalid > label { color: var(--red); }

.form-fineprint { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; line-height: 1.5; }
.form-success { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 56px 40px; text-align: center; box-shadow: var(--shadow); }
.success-mark { width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%; background: var(--grad); color: #fff; font-size: 32px; font-weight: 900; display: grid; place-items: center; }
.form-success h3 { font-size: 26px; margin-bottom: 10px; }
.form-success p { font-size: 17px; max-width: 38ch; margin-inline: auto; }

/* ============ FAQ ============ */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 4vw, 60px); align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px; background: #fff; transition: border-color .2s, box-shadow .2s; }
.faq-list details[open] { border-color: rgba(26,0,255,.3); box-shadow: var(--shadow-sm); }
.faq-list summary { list-style: none; cursor: pointer; font-weight: 900; color: var(--ink); font-size: 17px; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex: none; font-size: 24px; font-weight: 400; color: var(--blue); transition: transform .25s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 0 20px; font-size: 15.5px; }

/* ============ Final CTA ============ */
.final-cta { background: var(--grad); color: #fff; }
.final-inner { text-align: center; padding-block: clamp(56px, 6vw, 88px); display: grid; gap: 28px; justify-items: center; }
.final-cta h2 { color: #fff; font-size: clamp(26px, 3.2vw, 42px); max-width: 18ch; }
.final-inner p { color: rgba(255,255,255,.92); font-size: 17px; max-width: 52ch; margin-top: -8px; }

/* ============ Footer ============ */
.site-footer { position: relative; background: var(--dark); color: rgba(255,255,255,.7); overflow: hidden; padding-top: clamp(48px, 5vw, 72px); }
.coast-foot { opacity: .12; }
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 40px; align-items: start; padding-bottom: 40px; }
.footer-logo { height: 34px; width: auto; }
.slogan { margin-top: 16px; font-weight: 900; color: #fff; font-size: 18px; letter-spacing: -.01em; }
.footer-contact { display: grid; gap: 8px; font-size: 15px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.5); }

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.hero .reveal.d1 { transition-delay: .08s; }
.hero .reveal.d2 { transition-delay: .16s; }
.hero .reveal.d3 { transition-delay: .24s; }
.hero .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  .nav, .header-cta .phone, .brand-tag { display: none; }
  .burger { display: none; }
  .header-cta { margin-left: auto; }
  .header-cta .btn { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 520px; margin-top: 6px; }
  .hero-sub { max-width: 100%; }
  .benefits-grid, .form-grid, .team-grid, .faq-wrap { grid-template-columns: 1fr; }
  .form-intro { position: static; }
  .cards-3 { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .btn-sm { padding: 9px 15px; font-size: 13px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; white-space: normal; }
  .situation-strip { flex-direction: column; align-items: flex-start; gap: 18px; text-align: left; }
  .steps { grid-template-columns: 1fr; gap: 14px; }
  .step { display: flex; gap: 18px; align-items: flex-start; }
  .step-no { margin-bottom: 0; width: 48px; height: 48px; font-size: 19px; }
  .field-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .floating-card { left: 0; right: 0; bottom: -18px; max-width: none; margin-inline: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .team-stats { gap: 22px; }
}
@media (max-width: 980px) and (min-width: 621px) {
  .floating-card { left: auto; right: 0; }
}

/* ============================ PARRA PREVIEW ============================ */
.parra-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.parra-grid > * { min-width: 0; }
.parra-copy .section-lead { margin-bottom: 22px; }
.parra-list { list-style: none; display: grid; gap: 13px; margin-bottom: 30px; }
.parra-list li { position: relative; padding-left: 30px; font-size: 15.8px; color: var(--body); line-height: 1.55; }
.parra-list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 6px; background: var(--grad); }
.parra-list li::after { content: "✓"; position: absolute; left: 4px; top: 2px; font-size: 11px; font-weight: 900; color: #fff; }

.parra-media { display: flex; justify-content: center; }
.parra-app {
  width: 100%; max-width: 380px; background: #fff; border: 1px solid var(--line);
  border-radius: 26px; padding: 22px; box-shadow: var(--shadow);
}
.pa-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.pa-brand { font-weight: 900; font-size: 20px; color: var(--ink); letter-spacing: -.02em; }
.pa-live { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: var(--blue); background: rgba(26,0,255,.07); padding: 5px 11px; border-radius: 999px; }
.pa-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: paPulse 1.8s infinite; }
@keyframes paPulse { 0% { box-shadow: 0 0 0 0 rgba(250,64,49,.45);} 70% { box-shadow: 0 0 0 7px rgba(250,64,49,0);} 100% { box-shadow: 0 0 0 0 rgba(250,64,49,0);} }
.pa-hero-card { position: relative; background: var(--ink); color: #fff; border-radius: 18px; padding: 20px 20px 16px; overflow: hidden; }
.pa-hero-card::after { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: .16; }
.pa-label { position: relative; z-index: 1; font-size: 12.5px; color: rgba(255,255,255,.7); font-weight: 700; letter-spacing: .02em; }
.pa-value { position: relative; z-index: 1; display: block; font-size: 34px; font-weight: 900; letter-spacing: -.02em; margin-top: 4px; color: #fff; }
.pa-delta { position: relative; z-index: 1; font-size: 12.5px; font-weight: 700; color: #7effc0; }
.pa-bars { position: relative; z-index: 1; display: flex; align-items: flex-end; gap: 7px; height: 52px; margin-top: 16px; }
.pa-bars i { flex: 1; background: linear-gradient(180deg, #fff, rgba(255,255,255,.5)); border-radius: 4px 4px 0 0; }
.pa-rows { display: grid; gap: 10px; margin-top: 16px; }
.pa-row { display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: var(--body); padding: 11px 14px; background: var(--tint); border-radius: 12px; }
.pa-row strong { color: var(--ink); font-weight: 900; }
.pa-badge { display: flex; align-items: center; gap: 9px; margin-top: 14px; font-size: 13.5px; font-weight: 700; color: var(--ink); background: var(--grad-soft); border: 1px solid var(--line); padding: 11px 14px; border-radius: 12px; }
.pa-check { flex: none; width: 20px; height: 20px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 900; }

@media (max-width: 980px) {
  .parra-grid { grid-template-columns: 1fr; }
  .parra-media { max-width: 420px; margin-inline: auto; }
}
