/* ==========================================================================
   Gradbeni laborant — by Softbase
   Design system mirrors the app: Softbase green gradient, navy, clean cards.
   ========================================================================== */

:root {
  /* Brand */
  --green: #00A76F;
  --green-dark: #007867;
  --green-050: #E7F7F0;
  --green-100: #CDEFE1;
  --navy: #0B163D;
  --navy-700: #14224e;
  --ink: #212B36;
  --slate: #55606b;
  --muted: #7A8794;
  --line: #E6EAF0;
  --bg: #F4F6FA;
  --bg-soft: #EDF1F7;
  --white: #ffffff;

  --grad-green: linear-gradient(135deg, #00A76F 0%, #007867 100%);
  --grad-navy: linear-gradient(160deg, #0B163D 0%, #16265c 100%);

  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .10);
  --shadow-md: 0 8px 24px rgba(11, 22, 61, .10);
  --shadow-lg: 0 24px 60px rgba(11, 22, 61, .18);
  --shadow-green: 0 12px 30px rgba(0, 167, 111, .28);

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

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 40px);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); font-weight: 800; }
p { color: var(--slate); }
:focus-visible { outline: 3px solid rgba(0,167,111,.45); outline-offset: 2px; border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-dark); background: var(--green-050);
  padding: 7px 14px; border-radius: 999px; border: 1px solid var(--green-100);
}
.section-head { max-width: 760px; margin-inline: auto; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.section-title em { font-style: normal; color: var(--green-dark); }
.section-sub { margin-top: 16px; font-size: 1.075rem; color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: .975rem; line-height: 1;
  padding: 14px 22px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-green); color: #fff; box-shadow: var(--shadow-green); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(0,167,111,.38); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn--lg { padding: 17px 30px; font-size: 1.03rem; }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 20px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 40px; height: 40px; border-radius: 12px; background: var(--grad-green);
  display: grid; place-items: center; box-shadow: var(--shadow-green); flex: none; }
.brand__mark svg { width: 24px; height: 24px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-weight: 800; color: var(--navy); font-size: 1.06rem; letter-spacing: -.02em; }
.brand__by { font-size: .72rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; }

.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.nav__links a {
  font-size: .94rem; font-weight: 600; color: var(--slate);
  padding: 9px 13px; border-radius: 10px; transition: background .18s, color .18s;
}
.nav__links a:hover { color: var(--navy); background: var(--bg-soft); }
.nav__spacer { margin-left: auto; }
.nav__actions { display: flex; align-items: center; gap: 12px; }

/* language switcher */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 12px; font-weight: 700; font-size: .85rem; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.lang__btn:hover { border-color: var(--green); }
.lang__btn svg { width: 14px; height: 14px; color: var(--muted); }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 6px; min-width: 178px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s, transform .16s, visibility .16s; z-index: 70;
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__menu button {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  background: none; border: 0; padding: 9px 11px; border-radius: 9px;
  font-size: .9rem; font-weight: 600; color: var(--slate);
}
.lang__menu button:hover { background: var(--bg-soft); color: var(--navy); }
.lang__menu button.active { color: var(--green-dark); background: var(--green-050); }
.lang__flag { font-size: 1.05rem; line-height: 1; }
.lang__tag { margin-left: auto; font-size: .7rem; font-weight: 700; color: var(--muted);
  border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px; }

/* mobile nav toggle */
.nav__toggle { display: none; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line);
  background: #fff; align-items: center; justify-content: center; }
.nav__toggle svg { width: 22px; height: 22px; color: var(--navy); }

/* language "translation in progress" notice */
.lang-notice {
  background: var(--green-050); color: var(--green-dark);
  border-bottom: 1px solid var(--green-100);
  text-align: center; font-size: .86rem; font-weight: 600;
  padding: 9px var(--pad);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; background:
    radial-gradient(1200px 500px at 80% -10%, rgba(0,167,111,.10), transparent 60%),
    radial-gradient(900px 480px at 0% 0%, rgba(11,22,61,.05), transparent 55%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4vw, 56px);
  align-items: center; padding-block: clamp(48px, 7vw, 92px); }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.hero h1 em { font-style: normal; background: var(--grad-green); -webkit-background-clip: text;
  background-clip: text; color: transparent; }
.hero__lead { margin-top: 20px; font-size: 1.16rem; max-width: 42ch; color: var(--slate); }
.hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { margin-top: 18px; font-size: .9rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero__note svg { width: 16px; height: 16px; color: var(--green); }

.hero__visual { position: relative; }
.mock {
  border-radius: var(--r-lg); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  transform: perspective(1600px) rotateY(-6deg) rotateX(2deg); transform-origin: center;
}
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px;
  background: var(--navy); }
.mock__dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.28); }
.mock__dot:nth-child(1){ background:#ff5f57;} .mock__dot:nth-child(2){ background:#febc2e;} .mock__dot:nth-child(3){ background:#28c840;}
.mock img { width: 100%; display: block; }
.hero__badge {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: 12px 15px; display: flex; align-items: center; gap: 11px;
}
.hero__badge svg { width: 22px; height: 22px; color: var(--green); flex: none; }
.hero__badge b { display: block; font-size: .92rem; color: var(--navy); }
.hero__badge span { font-size: .78rem; color: var(--muted); }
.hero__badge--tl { top: 8%; left: -26px; }
.hero__badge--br { bottom: 9%; right: -22px; }

/* ==========================================================================
   Standards ribbon
   ========================================================================== */
.ribbon { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.ribbon__inner { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; justify-content: center;
  padding-block: 22px; }
.ribbon__label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); }
.ribbon__list { display: flex; align-items: center; gap: 12px 26px; flex-wrap: wrap; justify-content: center; }
.ribbon__item { font-weight: 800; color: var(--navy); font-size: .95rem; letter-spacing: -.01em; }
.ribbon__item span { color: var(--green-dark); }

/* ==========================================================================
   Feature cards
   ========================================================================== */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .22s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--green-050);
  color: var(--green-dark); display: grid; place-items: center; margin-bottom: 18px; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.card p { font-size: .96rem; }
.card__tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.tag { font-size: .74rem; font-weight: 700; color: var(--slate); background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 7px; padding: 3px 9px; }

/* ==========================================================================
   Showcase gallery
   ========================================================================== */
.showcase { background: var(--grad-navy); color: #fff; }
.showcase .section-title, .showcase .eyebrow { color: #fff; }
.showcase .eyebrow { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #d6f5e8; }
.showcase .section-sub { color: rgba(255,255,255,.72); }
.shots { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.shot { position: relative; border-radius: var(--r); overflow: hidden; background: #fff;
  border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow-lg);
  transition: transform .2s ease; }
.shot:hover { transform: translateY(-4px); }
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.shot__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 18px 14px;
  background: linear-gradient(to top, rgba(6,12,32,.92), transparent);
  font-size: .9rem; font-weight: 700; color: #fff; }
.shot__cap span { display: block; font-size: .76rem; font-weight: 500; color: rgba(255,255,255,.7); }
.shot--wide { grid-column: span 4; aspect-ratio: 16/9; }
.shot--tall { grid-column: span 2; }
.shot--half { grid-column: span 3; aspect-ratio: 16/10; }
.shot--third { grid-column: span 2; aspect-ratio: 4/3; }

/* ==========================================================================
   Multi-device band (works on desktop / tablet / phone)
   ========================================================================== */
.devices { position: relative; overflow: hidden; background:
    radial-gradient(900px 460px at 50% 120%, rgba(0,167,111,.10), transparent 60%),
    var(--bg); }
.device-stage { position: relative; max-width: 760px; margin: 8px auto 0; }

/* laptop (anchor) */
.laptop { position: relative; }
.laptop__screen { border: 13px solid #131c30; border-bottom: 0; border-radius: 18px 18px 0 0;
  background: #000; overflow: hidden; box-shadow: var(--shadow-lg); }
.laptop__screen img { width: 100%; display: block; }
.laptop__deck { width: 118%; margin-left: -9%; height: 17px;
  background: linear-gradient(180deg, #e4e8f0, #a9b1c1); border-radius: 0 0 14px 14px;
  position: relative; box-shadow: 0 12px 22px rgba(11,22,61,.16); }
.laptop__deck::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 108px; height: 8px; background: #b7bfce; border-radius: 0 0 9px 9px; }

/* tablet (bottom-left) */
.device--tablet { position: absolute; left: -7%; bottom: -5%; width: 35%; z-index: 2; }
.tablet { border: 12px solid #131c30; border-radius: 22px; background: #000; overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative; }
.tablet img { width: 100%; display: block; }

/* phone (bottom-right) */
.device--phone { position: absolute; right: -3%; bottom: -8%; width: 19%; z-index: 3; }
.phone { border: 8px solid #0d1526; border-radius: 30px; background: #000; overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative; }
.phone img { width: 100%; display: block; }
.phone::before { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 7px; background: #0d1526; border-radius: 0 0 8px 8px; z-index: 4; }

.device-tags { display: flex; flex-wrap: wrap; gap: 10px 14px; justify-content: center; margin-top: 64px; }
.device-tag { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 18px; font-weight: 700; color: var(--navy); font-size: .95rem;
  box-shadow: var(--shadow-sm); }
.device-tag svg { width: 19px; height: 19px; color: var(--green-dark); }

@media (max-width: 720px) {
  .device-stage { max-width: 440px; }
  .device--tablet { position: static; width: 66%; margin: 20px auto -4px; display: block; }
  .device--phone { position: static; width: 40%; margin: 16px auto 0; display: block; }
  .device-stage { display: flex; flex-direction: column; align-items: center; }
  .device--laptop { width: 100%; }
  .device-tags { margin-top: 30px; }
}

/* ==========================================================================
   Split feature (curves / mix design)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-md); background: #fff; }
.split__media img { width: 100%; }
.split h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.split p { margin-top: 14px; font-size: 1.05rem; }
.check-list { margin-top: 22px; display: grid; gap: 13px; }
.check-list li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--ink); }
.check-list svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 1px; }
.check-list b { color: var(--navy); }

/* ==========================================================================
   Standards / compliance band
   ========================================================================== */
.compliance { background: #fff; }
.std-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 12px; }
.std {
  border: 1px solid var(--line); border-radius: var(--r); padding: 20px 18px; background: var(--bg);
  transition: border-color .18s, transform .18s;
}
.std:hover { border-color: var(--green-100); transform: translateY(-3px); }
.std__code { font-weight: 800; color: var(--green-dark); font-size: 1.02rem; }
.std__name { margin-top: 5px; font-size: .86rem; color: var(--slate); }

/* ==========================================================================
   Partnership (certification bodies)
   ========================================================================== */
.partner { position: relative; overflow: hidden; }
.partner__box {
  background: var(--grad-navy); border-radius: var(--r-xl); color: #fff;
  padding: clamp(34px, 5vw, 64px); position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.partner__box::after { content:""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  background: radial-gradient(circle at center, rgba(0,167,111,.5), transparent 62%); }
.partner__grid { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
.partner__box .eyebrow { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); color: #d6f5e8; }
.partner__box h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-top: 16px; }
.partner__box p { color: rgba(255,255,255,.78); margin-top: 14px; font-size: 1.06rem; }
.partner__flow { display: grid; gap: 14px; }
.pstep { display: flex; gap: 15px; align-items: flex-start; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--r); padding: 16px 18px; }
.pstep__num { width: 34px; height: 34px; border-radius: 10px; background: var(--grad-green); color: #fff;
  font-weight: 800; display: grid; place-items: center; flex: none; }
.pstep b { color: #fff; display: block; font-size: 1rem; }
.pstep span { color: rgba(255,255,255,.72); font-size: .9rem; }

/* ==========================================================================
   Stats / why softbase
   ========================================================================== */
.why { background: var(--bg); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 8px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 22px; text-align: center;
  box-shadow: var(--shadow-sm); }
.stat__n { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; color: var(--navy);
  background: var(--grad-green); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__l { margin-top: 6px; font-size: .92rem; color: var(--slate); font-weight: 600; }
.why-points { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 40px; }
.why-point { display: flex; gap: 14px; align-items: flex-start; }
.why-point svg { width: 26px; height: 26px; color: var(--green); flex: none; }
.why-point b { color: var(--navy); display:block; margin-bottom: 3px; }
.why-point p { font-size: .94rem; }

/* ==========================================================================
   CTA / contact
   ========================================================================== */
.cta { background: #fff; }
.cta__box { background:
      radial-gradient(700px 300px at 100% 0%, rgba(0,167,111,.12), transparent 60%),
      var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: clamp(34px, 5vw, 64px); }
.cta__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px,4vw,60px); align-items: center; }
.cta h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.cta h2 em { font-style: normal; color: var(--green-dark); }
.cta p { margin-top: 14px; font-size: 1.08rem; }
.cta__actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow-md); display: grid; gap: 18px; }
.contact-row { display: flex; gap: 14px; align-items: center; }
.contact-row__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--green-050); color: var(--green-dark);
  display: grid; place-items: center; flex: none; }
.contact-row__ic svg { width: 22px; height: 22px; }
.contact-row b { display: block; color: var(--navy); font-size: .96rem; }
.contact-row span, .contact-row a { color: var(--slate); font-size: .92rem; }
.contact-row a:hover { color: var(--green-dark); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy); color: rgba(255,255,255,.72); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding-block: 56px 34px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__by { color: rgba(255,255,255,.5); }
.footer__brand p { color: rgba(255,255,255,.6); font-size: .92rem; margin-top: 16px; max-width: 34ch; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.footer a { color: rgba(255,255,255,.72); font-size: .93rem; }
.footer a:hover { color: var(--green); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 22px; display: flex;
  justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .86rem; color: rgba(255,255,255,.55); }
.footer__domains { display:flex; gap: 14px; }
.footer__domains a { color: rgba(255,255,255,.75); font-weight: 700; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .mock { transform: none; } }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .std-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .why-points { grid-template-columns: 1fr; }
  .shot--wide, .shot--half, .shot--third, .shot--tall { grid-column: span 3; aspect-ratio: 16/10; }
  .shots { grid-template-columns: repeat(6,1fr); }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__spacer { display: none; }
  .nav__actions { margin-left: auto; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 20px; }
  .mock { transform: none; }
  .hero__badge--tl { left: 8px; } .hero__badge--br { right: 8px; }
  .split, .cta__grid, .partner__grid, .split--rev .split__media { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .shots { grid-template-columns: repeat(2, 1fr); }
  .shot--wide, .shot--half, .shot--third, .shot--tall { grid-column: span 2; }

  /* mobile menu drawer */
  .nav__links.show { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    align-items: stretch; background: #fff; border-bottom: 1px solid var(--line); padding: 12px var(--pad) 20px;
    gap: 2px; box-shadow: var(--shadow-md); }
  .nav__links.show a { padding: 12px 14px; }
}
@media (max-width: 560px) {
  .grid-cards, .std-grid, .stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__badge { display: none; }
  .btn { width: 100%; }
  .hero__cta .btn, .cta__actions .btn { width: auto; }
}

/* ==========================================================================
   Free-test pledge band
   ========================================================================== */
.pledge { display: flex; align-items: center; gap: clamp(20px,3vw,32px);
  background: var(--grad-green); color: #fff; border-radius: var(--r-xl);
  padding: clamp(26px,4vw,44px); box-shadow: var(--shadow-green); position: relative; overflow: hidden; }
.pledge::after { content:""; position:absolute; right:-60px; bottom:-80px; width:260px; height:260px;
  background: radial-gradient(circle at center, rgba(255,255,255,.16), transparent 60%); }
.pledge__mark { flex: none; width: 74px; height: 74px; border-radius: 20px; background: rgba(255,255,255,.16);
  display: grid; place-items: center; }
.pledge__mark svg { width: 38px; height: 38px; color: #fff; }
.pledge__body { flex: 1; position: relative; z-index: 1; }
.pledge .eyebrow { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); color: #eafff6; }
.pledge__body h2 { color: #fff; margin-top: 12px; font-size: clamp(1.4rem, 2.7vw, 2.05rem); }
.pledge__body h2 em { font-style: normal; color: #fff; text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 4px; }
.pledge__body p { color: rgba(255,255,255,.92); margin-top: 10px; font-size: 1.04rem; max-width: 62ch; }
.pledge__badge { flex: none; position: relative; z-index: 1; }
.pledge__badge span { display: inline-block; background: #fff; color: var(--green-dark); font-weight: 800;
  font-size: 1.12rem; padding: 13px 24px; border-radius: 999px; box-shadow: var(--shadow-md); white-space: nowrap;
  transform: rotate(-3deg); }
@media (max-width: 760px) {
  .pledge { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ==========================================================================
   Reports (izpisi) — paper sheets
   ========================================================================== */
.reports__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px,3vw,34px);
  max-width: 900px; margin-inline: auto; align-items: start; }
.sheet { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-lg); transition: transform .2s ease; }
.sheet:hover { transform: translateY(-5px); }
.sheet img { width: 100%; display: block; border-bottom: 1px solid var(--line); }
.sheet figcaption { padding: 16px 20px; font-weight: 700; color: var(--navy); font-size: .98rem; }
.sheet figcaption span { display: block; font-weight: 500; font-size: .84rem; color: var(--muted); margin-top: 3px; }
@media (max-width: 640px){ .reports__grid { grid-template-columns: 1fr; } }

/* 3-up capability grid (technology) */
.grid-cards--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px){ .grid-cards--3 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .grid-cards--3 { grid-template-columns: 1fr;} }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing { background: var(--bg); }
.price-card { max-width: 580px; margin-inline: auto; background: #fff; border: 1px solid var(--line);
  border-top: 4px solid var(--green); border-radius: var(--r-xl); padding: clamp(28px,4vw,44px);
  box-shadow: var(--shadow-lg); }
.price-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 22px; }
.price-card__plan { font-weight: 800; color: var(--navy); font-size: 1.22rem; }
.price-card__desc { color: var(--muted); font-size: .95rem; margin-top: 3px; }
.price-card__price { text-align: right; }
.price-card__amount { font-weight: 800; font-size: clamp(2rem, 4.4vw, 2.9rem); line-height: 1;
  background: var(--grad-green); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-card__period { display: block; color: var(--muted); font-size: .9rem; font-weight: 600; margin-top: 4px; }
.price-list { list-style: none; padding: 0; display: grid; gap: 13px; margin-bottom: 26px; }
.price-list li { display: flex; gap: 12px; align-items: center; font-size: 1.02rem; color: var(--ink); }
.price-list svg { width: 22px; height: 22px; color: var(--green); flex: none; }
.price-card .btn { width: 100%; }
.price-card__note { text-align: center; color: var(--muted); font-size: .86rem; margin-top: 16px; }
