/* =========================================
   OliveBox Landing — Clean White Premium
   Pure CSS • Responsive • No framework
   ========================================= */

/* ---- CSS Reset (minimal) ---- */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.55;
  color: #121417;
  background: #ffffff;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
:focus-visible { outline: 3px solid rgba(0, 0, 0, 0.18); outline-offset: 3px; }

/* ---- Design Tokens ---- */
:root{
  --container: 1180px;

  /* Colors */
  --bg: #ffffff;
  --text: #121417;
  --muted: #5a616a;
  --line: rgba(18, 20, 23, 0.10);

  --surface: #f7f8fa;         /* soft light gray */
  --surface-2: #f2f4f7;       /* slightly darker */
  --shadow: 0 14px 40px rgba(18, 20, 23, 0.08);
  --shadow-soft: 0 10px 28px rgba(18, 20, 23, 0.06);

  /* Brand accent (clean premium) */
  --accent: #70B840;
  --accent-2: #5AA02F;         /* hover (tamnije) */
  --accent-soft: rgba(112, 184, 64, 0.12);

  /* Radius */
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 12px;

  /* Spacing */
  --s-1: 6px;
  --s-2: 10px;
  --s-3: 14px;
  --s-4: 18px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 44px;
  --s-8: 64px;

  /* Typography */
  --h1: clamp(34px, 3.2vw, 54px);
  --h2: clamp(26px, 2.1vw, 34px);
  --h3: 18px;
  --p: 16px;
}

/* ---- Utilities ---- */
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
}

.section{
  padding: var(--s-8) 0;
}

.muted{
  color: var(--muted);
}

.list{
  margin: 0;
  padding-left: 18px;
}

.grid{
  display: grid;
  gap: var(--s-5);
}

.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--4{ grid-template-columns: repeat(4, 1fr); }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn:active{ transform: translateY(0px); box-shadow: none; }

.btn--primary{
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn--primary:hover{ background: var(--accent-2); border-color: var(--accent-2); }

.btn--ghost{
  background: transparent;
  border-color: var(--line);
}

.btn--full{ width: 100%; }

.card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: none;
}

.card--form{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-soft);
}

/* ---- Typography ---- */
h1, h2, h3 { margin: 0 0 var(--s-4) 0; letter-spacing: -0.02em; }
h1 { font-size: var(--h1); line-height: 1.05; }
h2 { font-size: var(--h2); line-height: 1.12; }
h3 { font-size: var(--h3); line-height: 1.25; }
p { margin: 0 0 var(--s-4) 0; font-size: var(--p); color: var(--muted); }
strong { font-weight: 700; }

/* =========================================
   Header
   ========================================= */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18, 20, 23, 0.06);
}

.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  padding: var(--s-4) 0;
}

.logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo__img{
  height: 34px;
  width: auto;
  display: block;
}

@media (min-width: 981px){
  .logo__img{ height: 38px; }
}

.logo{
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.nav{
  display: flex;
  gap: var(--s-5);
  align-items: center;
}

.nav__link{
  font-weight: 600;
  color: rgba(18, 20, 23, 0.72);
  padding: 10px 10px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}

.nav__link:hover{
  background: var(--surface);
  color: var(--text);
}

.header__right{
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.navDropdown{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.navDropdown__btn{
  border: 1px solid transparent;
  background: transparent;
  font-weight: 700;
  color: rgba(18, 20, 23, 0.72);
  padding: 10px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.navDropdown__btn:hover{
  background: var(--surface);
  color: var(--text);
}

.navDropdown__menu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
  z-index: 60;
}

.navDropdown:hover .navDropdown__menu{
  display: block;
}

.navDropdown__item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  color: rgba(18, 20, 23, 0.80);
}

.navDropdown__item:hover{
  background: var(--surface);
  color: var(--text);
}

.navDropdown__item em{
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
  color: rgba(18, 20, 23, 0.55);
  margin-left: 10px;
}

.navDropdown__item--disabled{
  cursor: default;
  color: rgba(18, 20, 23, 0.55);
  background: transparent;
  border: 1px solid transparent;
}

.navDropdown__item--disabled:hover{
  background: transparent;
}

/* ---- Language dropdown ---- */
.lang { position: relative; }
.lang__btn{
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 12px;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
}

.lang__menu{
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 140px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 8px;
  list-style: none;
  margin: 0;

  display: none;
}
.lang__menu.is-open{ display: block; }

.lang__item{
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  color: rgba(18, 20, 23, 0.78);
}
.lang__item:hover{
  background: var(--surface);
  color: var(--text);
}

/* =========================================
   Hero
   ========================================= */
.hero{
  padding-top: calc(var(--s-8) - 12px);
}

.hero__inner{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--s-7);
  align-items: center;
}

.hero__title{ margin-bottom: var(--s-4); }
.hero__subtitle{
  font-size: 18px;
  max-width: 52ch;
}

.hero__actions{
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-top: var(--s-5);
}

.hero__trust{
  margin-top: var(--s-5);
  color: rgba(18, 20, 23, 0.56);
  font-weight: 600;
}

/* Preview block */
.productPreview{
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.productPreview__title{
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}

.productCard{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--r-md);
  padding: var(--s-5);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
}

.productCard__label{
  font-weight: 800;
  color: rgba(18, 20, 23, 0.55);
}

.productCard__value{
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* =========================================
   Proof strip
   ========================================= */
.proof{
  padding-top: 0;
}

.proof__inner{
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  padding: var(--s-5);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
}

.proof__item{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(18, 20, 23, 0.08);
  background: rgba(255,255,255,0.65);
  font-weight: 700;
  color: rgba(18, 20, 23, 0.72);
}

/* =========================================
   Split layouts
   ========================================= */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: start;
}

.cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}

/* =========================================
   Features
   ========================================= */
.features{
  background: var(--surface);
  border-top: 1px solid rgba(18, 20, 23, 0.06);
  border-bottom: 1px solid rgba(18, 20, 23, 0.06);
}

.featureCard{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: none;
}

.featureCard p{ margin: 0; }

/* =========================================
   How
   ========================================= */
.step{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
}

.step__num{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
  margin-bottom: var(--s-4);
}

/* =========================================
   Results
   ========================================= */
.results{
  background: #0f1216; /* near-black for contrast */
  color: #ffffff;
}

.results h2{ color: #fff; }
.results .muted{ color: rgba(255,255,255,0.70); }

.metrics{
  margin-top: var(--s-6);
}

.metric{
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  background: rgba(255,255,255,0.04);
}

.metric__value{
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-2);
}

.metric__label{
  color: rgba(255,255,255,0.78);
  font-weight: 700;
}

/* =========================================
   ROI
   ========================================= */
.label{
  display: block;
  font-weight: 800;
  margin: 0 0 8px 0;
}

.input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  margin-bottom: var(--s-4);
  outline: none;
}

.input:focus{
  border-color: rgba(31,111,235,0.55);
  box-shadow: 0 0 0 4px rgba(31,111,235,0.12);
}

.roiOut{
  margin: var(--s-5) 0 var(--s-5) 0;
  padding: var(--s-5);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--surface);
}

.roiOut__row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding: 10px 0;
  border-bottom: 1px solid rgba(18, 20, 23, 0.06);
}
.roiOut__row:last-child{ border-bottom: none; }

/* =========================================
   Positioning / Compare table
   ========================================= */
.compare{
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.compare__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.compare__head{
  background: var(--surface);
  font-weight: 900;
}

.compare__row > div{
  padding: 14px 16px;
  border-bottom: 1px solid rgba(18, 20, 23, 0.06);
}
.compare__row:last-child > div{ border-bottom: none; }

.compare__row > div:first-child{
  border-right: 1px solid rgba(18, 20, 23, 0.06);
  color: rgba(18, 20, 23, 0.72);
  font-weight: 700;
}

.compare__row > div:last-child{
  font-weight: 800;
}

/* =========================================
   Pricing
   ========================================= */
.priceCard{
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  background: #fff;
  box-shadow: none;
  position: relative;
}

.priceCard__price{
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: var(--s-3) 0 var(--s-4) 0;
}

.badge{
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31,111,235,0.18);
}

.priceCard--featured{
  border-color: rgba(31,111,235,0.35);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.priceCard--featured:hover{ transform: translateY(-4px); }

.pricing .list{
  margin-top: var(--s-4);
}

/* =========================================
   FAQ
   ========================================= */
.faqList{
  margin-top: var(--s-6);
  display: grid;
  gap: var(--s-4);
}

.faqItem{
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  padding: var(--s-4) var(--s-5);
}

.faqItem summary{
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faqItem summary::-webkit-details-marker{ display:none; }

.faqItem__a{
  margin-top: var(--s-3);
  color: var(--muted);
}

/* =========================================
   CASE STUDY
   ========================================= */

.caseStudy{
  background: #fff;
}

.caseTop{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}

.caseMetrics{
  margin-top: var(--s-5);
  margin-bottom: var(--s-7);
}

.caseMetric{
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  background: linear-gradient(180deg, #fff, var(--surface));
  box-shadow: var(--shadow-soft);
}

.caseMetric__value{
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-2);
  color: var(--accent);
}

.caseMetric__label{
  font-weight: 700;
  color: rgba(18,20,23,0.72);
}

.caseCard{
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  background: #fff;
  box-shadow: none;
}

.caseCard__title{
  font-weight: 900;
  margin-bottom: var(--s-4);
}

.caseList{
  margin: 0;
  padding-left: 18px;
  color: rgba(18,20,23,0.75);
  font-weight: 650;
}

.caseList li{
  margin: 10px 0;
}

.caseFootnote{
  margin-top: var(--s-5);
  font-weight: 650;
}

@media (max-width: 980px){
  .caseTop{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================
   Demo CTA
   ========================================= */
.demo{
  background: var(--surface);
  border-top: 1px solid rgba(18, 20, 23, 0.06);
}

.demo__inner{
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.demo__inner p{
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.demo-form{
  max-width: 560px;
  margin: var(--s-5) auto 0;
  text-align: left;
}

.demo-form__row{
  display: flex;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}

.demo-form__group{
  flex: 1;
}

.demo-form__input{
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.demo-form__input:focus{
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(112,184,64,0.15);
}

.demo-form__input.demo-form__input--error{
  border-color: #e53e3e;
}

.demo-form__textarea{
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

.demo-form__btn{
  width: 100%;
  margin-top: var(--s-2);
  font-size: 1rem;
  padding: 16px;
}

.demo-form__btn:disabled{
  opacity: 0.65;
  cursor: not-allowed;
}

.demo-form__feedback{
  max-width: 560px;
  margin: var(--s-4) auto 0;
  padding: 16px 20px;
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  text-align: center;
}

.demo-form__feedback--ok{
  background: #f0fff4;
  color: #276749;
  border: 1px solid #c6f6d5;
}

.demo-form__feedback--err{
  background: #fff5f5;
  color: #c53030;
  border: 1px solid #fed7d7;
}

.advanced{
  background: var(--surface);
  border-top: 1px solid rgba(18,20,23,0.06);
  border-bottom: 1px solid rgba(18,20,23,0.06);
}

.advancedList{
  margin-top: var(--s-6);
}

.advancedList > div{
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  font-weight: 700;
  color: rgba(18,20,23,0.85);
}

.advancedNote{
  margin-top: var(--s-6);
  text-align: center;
  font-weight: 600;
  color: rgba(18,20,23,0.65);
}

/* =========================================
   Footer
   ========================================= */
.footer{
  padding: var(--s-8) 0 var(--s-6) 0;
  border-top: 1px solid rgba(18, 20, 23, 0.06);
}

.footer__inner{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.footer__col{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__title{
  font-weight: 900;
  margin-bottom: 10px;
}

.footer__link{
  display: block;
  padding: 4px 0;
  color: rgba(18, 20, 23, 0.70);
  font-weight: 650;
}
.footer__link:hover{ color: var(--text); }

.footer__bottom{
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(18, 20, 23, 0.06);
}

/* =========================================
   Testimonials
   ========================================= */
.testimonialsTop{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-6);
  margin-bottom: var(--s-6);
}

.testimonialsGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.tCard{
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  padding: var(--s-6);
  box-shadow: var(--shadow-soft);
}

.tHead{
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}

.tQuote{
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(18,20,23,0.78);
  white-space: pre-line;
}

.tBadges{
  margin-top: var(--s-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

@media (max-width: 980px){
  .testimonialsTop{
    flex-direction: column;
    align-items: flex-start;
  }

  /* Mobile swipe carousel (no JS) */
  .testimonialsGrid{
    grid-template-columns: unset;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    overflow-x: auto;
    padding-bottom: 8px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .tCard{
    scroll-snap-align: start;
  }

  /* optional: hide scrollbar */
  .testimonialsGrid::-webkit-scrollbar{ height: 8px; }
  .testimonialsGrid::-webkit-scrollbar-thumb{ background: rgba(18,20,23,0.12); border-radius: 999px; }
}

.testimonial {
  background: #fff;
}

.testimonialCard{
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: var(--s-7);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--s-7);
  align-items: center;
}

.testimonialMedia{
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.avatarWrap{
  width: 140px;
  height: 140px;
  border-radius: 999px;
  border: 1px solid rgba(18,20,23,0.10);
  background: linear-gradient(180deg, #fff, var(--surface));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.avatarPhoto{
  width: 150px;
  height: 150px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(18,20,23,0.12);
  background: var(--surface);
}

.avatarSvg{
  width: 86px;
  height: 86px;
}

.personName{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.personRole{
  font-weight: 650;
}

.testimonialText{
  position: relative;
}

.quoteMark{
  position: absolute;
  top: -26px;
  left: -6px;
  font-size: 64px;
  font-weight: 900;
  color: rgba(18,20,23,0.10);
  line-height: 1;
  user-select: none;
}

.quote{
  margin: 0;
  color: rgba(18,20,23,0.78);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 650;
}

.testimonialBadges{
  margin-top: var(--s-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.miniBadge{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(18,20,23,0.10);
  background: var(--surface);
  font-weight: 800;
  color: rgba(18,20,23,0.72);
}

.testimonialCtaRow{
  margin-top: var(--s-6);
}

@media (max-width: 980px){
  .testimonialCard{
    grid-template-columns: 1fr;
    padding: var(--s-6);
    text-align: left;
  }
  .avatarWrap{ width: 120px; height: 120px; }
  .quoteMark{ left: 0; }
}

/* =========================================
   Hamburger
   ========================================= */
.hamburger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger span{
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.hamburger.is-active span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2){
  opacity: 0;
}

.hamburger.is-active span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 980px){
  .container{ padding: 0 var(--s-5); }

  .hamburger{ display: flex; order: -1; }

  .headerCta{ display: none; }

  .header__inner{
    justify-content: space-between;
  }

  .logo{
    order: 0;
  }

  .nav{
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0,0,0,0.12);
    flex-direction: column;
    padding: 70px var(--s-5) var(--s-5);
    gap: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
  }

  .nav.is-open{
    transform: translateX(0);
  }

  .navOverlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }

  .navOverlay.is-visible{
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link{
    display: block;
    padding: 14px 10px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }

  .navDropdown{
    width: 100%;
  }

  .navDropdown__btn{
    width: 100%;
    text-align: left;
    padding: 14px 10px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .navDropdown__menu{
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
  }

  .navDropdown:hover .navDropdown__menu{
    display: none;
  }

  .navDropdown__menu.is-open{
    display: block;
  }

  .navDropdown__item{
    padding: 12px 10px;
    font-size: 15px;
  }

  .hero__inner{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }

  .grid--4{ grid-template-columns: 1fr 1fr; }
  .grid--3{ grid-template-columns: 1fr; }

  .footer__inner{ grid-template-columns: 1fr 1fr; }
  .demo__inner{ padding: var(--s-6); }
}

@media (max-width: 520px){
  .hero__actions{ flex-direction: column; }
  .btn{ width: 100%; }
  .proof__inner{ padding: var(--s-4); }
  .footer__inner{ grid-template-columns: 1fr; }
  .demo-form__row{ flex-direction: column; gap: var(--s-2); }
}

.loginIcon{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(18,20,23,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(18,20,23,0.65);
  transition: all 0.2s ease;
  background: #fff;
}

.loginIcon:hover{
  background: var(--surface);
  color: var(--accent);
  border-color: rgba(18,20,23,0.25);
  transform: translateY(-1px);
}

.loginIcon__svg{
  width: 20px;
  height: 20px;
}

/* =========================================
   SMS & Email Rates Cards
   ========================================= */
.smsRates{
  background: var(--surface);
}

.smsRates h2{
  text-align: center;
  margin-bottom: var(--s-6);
}

.smsCards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  max-width: 960px;
  margin: 0 auto;
}

.smsCard{
  background: #fff;
  border-radius: 14px;
  padding: var(--s-6) var(--s-5);
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}

.smsCard--accent{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
}

.smsCard--accent .smsCard__title{
  color: #fff;
}

.smsCard__title{
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.smsCard__price{
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
}

.smsCard__price--free{
  color: var(--accent);
}

.smsCard--accent .smsCard__price{
  color: #fff;
}

.smsCard__rates{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.smsCard__rate{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.smsCard__rate span:last-child{
  font-weight: 800;
  color: var(--accent);
}

.smsCard__note{
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.smsRates__cta{
  text-align: center;
  margin-top: var(--s-6);
}

.smsCard__cta{
  display: block;
  margin-top: var(--s-3);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--accent);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.smsCard__cta:hover{
  background: var(--accent);
  color: #fff;
}

@media (max-width: 768px){
  .smsCards{
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}

/* =========================================
   Legal Pages (Terms / Privacy)
   ========================================= */
.legalPage{
  padding-top: calc(var(--s-8) + 20px);
  padding-bottom: var(--s-8);
}

.legalPage__inner{
  max-width: 820px;
  margin: 0 auto;
}

.legalPage__title{
  font-size: clamp(30px, 2.6vw, 42px);
  margin-bottom: var(--s-2);
}

.legalPage__updated{
  color: var(--muted);
  font-weight: 600;
  margin-bottom: var(--s-7);
  font-size: 15px;
}

.legalPage__section{
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--line);
}

.legalPage__section:last-child{
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legalPage__section h2{
  font-size: 20px;
  margin-bottom: var(--s-4);
}

.legalPage__section h3{
  font-size: 16px;
  margin-top: var(--s-5);
  margin-bottom: var(--s-3);
}

.legalPage__section p{
  margin-bottom: var(--s-4);
  line-height: 1.7;
}

.legalPage__section ul{
  margin: 0 0 var(--s-4) 0;
  padding-left: 20px;
}

.legalPage__section li{
  margin-bottom: 8px;
  line-height: 1.65;
  color: rgba(18,20,23,0.78);
  font-weight: 550;
}

.legalPage__section a{
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legalPage__section a:hover{
  color: var(--accent-2);
}

.legalPage__section strong{
  font-weight: 800;
  color: var(--text);
}