/* ============================================================
   MEDORA by Jodbrain Studio, Main Service Site (v3)
   Subtle, professional typography. DM Sans + Inter.
   ============================================================ */

:root {
  --ink: #0B1F3A;
  --ink-2: #142B4F;
  --teal: #0FB5AE;
  --teal-deep: #086962;
  --mint: #D6F5F2;
  --ivory: #FBF8F1;
  --cream: #F4EFE3;
  --coral: #FF6F61;
  --coral-deep: #C84A3D;
  --electric: #2F5BFF;
  --line: #E0E5EE;
  --muted: #5A6A85;
  --white: #ffffff;
  --warn: #B33B2E;
  --gold: #C8A24A;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 8px 32px -12px rgba(11,31,58,.14);
  --shadow-pop: 0 18px 48px -18px rgba(11,31,58,.30);

  --max: 1160px;
  --gut: clamp(20px, 4vw, 44px);

  --f-display: 'DM Sans', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 0.95rem; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.05rem, 1.5vw, 1.2rem); font-weight: 600; }
p  { color: #2C3D5C; font-size: 0.97rem; line-height: 1.7; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-weight: 500;
  font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--mint);
  padding: 6px 12px;
  border-radius: 999px;
}
.eyebrow.coral { background: #FFE0DA; color: var(--coral-deep); }
.eyebrow::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 3px rgba(15,181,174,.2);
}
.eyebrow.coral::before { background: var(--coral); box-shadow: 0 0 0 3px rgba(255,111,97,.2); }

/* ===== Top FOMO bar ===== */
.fomo-bar {
  background: var(--coral); color: white;
  text-align: center;
  padding: 9px 16px;
  font-family: var(--f-body); font-weight: 500;
  font-size: 13px; letter-spacing: 0.01em;
  position: relative; z-index: 70;
}
.fomo-bar strong { font-weight: 700; }
.fomo-bar a { text-decoration: underline; font-weight: 600; }

/* ===== Top nav ===== */
.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(251,248,241,0.86);
  border-bottom: 1px solid rgba(11,31,58,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 700; letter-spacing: -0.02em;
}
.brand-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, var(--teal), var(--electric));
  display: grid; place-items: center; color: white; font-family: var(--f-display);
  font-weight: 700; font-size: 15px;
  box-shadow: 0 6px 18px -8px var(--teal);
  overflow: hidden;
}
.brand-mark img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.brand-name { font-size: 16.5px; line-height: 1; }
.brand-tag { font-size: 10.5px; color: var(--muted); font-weight: 500; font-family: var(--f-body); display:block; margin-top:2px; letter-spacing:0.02em; }
.nav-links { display: none; gap: 26px; align-items: center; font-size: 13.5px; font-weight: 500; }
.nav-links a:hover { color: var(--teal-deep); }
.nav-cta {
  font-family: var(--f-display); font-weight: 600;
  background: var(--ink); color: var(--white) !important;
  padding: 9px 16px; border-radius: 999px;
  font-size: 13px; letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 7px;
  transition: transform .25s ease, background .25s ease;
}
.nav-cta:hover { background: var(--teal-deep); transform: translateY(-1px); }
.nav-cta .cart-ic { width: 14px; height: 14px; stroke: white; }
@media (min-width: 880px) { .nav-links { display: flex; } }

/* ===== HERO ===== */
.hero {
  position: relative; isolation: isolate;
  padding: clamp(48px, 7vw, 90px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: -10% -5% auto auto;
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  background: radial-gradient(circle at 30% 30%, rgba(15,181,174,.18), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(47,91,255,.14), transparent 60%);
  filter: blur(40px);
  z-index: -1; animation: drift 18s ease-in-out infinite alternate;
}
.hero::after {
  content: ""; position: absolute; left: -10%; bottom: -20%;
  width: 40vw; height: 40vw; max-width: 500px;
  background: radial-gradient(circle, rgba(214,245,242,.6), transparent 60%);
  filter: blur(30px); z-index: -1;
}
@keyframes drift { to { transform: translate(-30px, 20px) rotate(8deg); } }
.hero-grid {
  display: grid; gap: clamp(32px, 4.5vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.hero h1 {
  margin-top: 16px;
  background: linear-gradient(180deg, var(--ink) 60%, var(--teal-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--teal), var(--electric));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
}
.hero h1 .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 6px; background: rgba(15,181,174,.22); border-radius: 6px;
  z-index: -1;
}
.hero-sub {
  margin: 18px 0 24px; font-size: 1.05rem; max-width: 540px;
  color: #2C3D5C; line-height: 1.65;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  margin-bottom: 24px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ink); color: white !important;
  padding: 13px 22px; border-radius: 999px;
  font-family: var(--f-display); font-weight: 600;
  font-size: 14px; letter-spacing: 0.005em;
  box-shadow: var(--shadow-pop);
  transition: transform .25s ease, background .25s ease;
}
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 18px; border-radius: 999px;
  border: 1.5px solid rgba(11,31,58,0.22);
  font-family: var(--f-display); font-weight: 500; font-size: 13.5px;
  color: var(--ink);
  transition: border-color .25s ease, background .25s ease;
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(11,31,58,0.04); }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center;
  font-size: 12.5px; color: var(--ink-2);
  font-family: var(--f-body); font-weight: 500;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }

.hero-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-pop);
  border: 1px solid rgba(11,31,58,0.06);
  transform: rotate(0.4deg);
}
.hero-card:hover { transform: rotate(0); transition: transform .4s ease; }
.hero-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px; gap: 10px;
}
.hero-card h3 { font-size: 1.05rem; font-weight: 700; }
.hero-pricetag {
  font-family: var(--f-display); font-weight: 700; font-size: 11px;
  background: var(--coral); color: white; padding: 6px 11px; border-radius: 999px;
  letter-spacing: 0.04em;
}

/* ===== Slot meter (FOMO) ===== */
.slot-meter {
  background: linear-gradient(135deg, #FFF7F5, #FFE0DA);
  border: 1px solid rgba(255,111,97,0.3);
  border-radius: 12px; padding: 12px 14px;
  margin-bottom: 14px;
}
.slot-meter-row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-display); font-weight: 600;
  font-size: 12.5px; color: var(--coral-deep);
  margin-bottom: 7px;
}
.slot-meter-row strong { font-weight: 700; font-size: 13px; }
.slot-bar {
  height: 6px; background: rgba(255,111,97,0.22); border-radius: 999px; overflow: hidden;
}
.slot-bar-fill {
  height: 100%; width: 63%;
  background: linear-gradient(90deg, var(--coral), var(--coral-deep));
  border-radius: 999px;
  animation: slot-pulse 2.4s ease-in-out infinite;
}
@keyframes slot-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,111,97,0); }
  50%     { box-shadow: 0 0 0 4px rgba(255,111,97,0.18); }
}

.hero-priceblock {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line);
  margin-bottom: 16px;
}
.price-old { font-family: var(--f-display); color: var(--muted); text-decoration: line-through; font-size: 16px; font-weight: 500; }
.price-new { font-family: var(--f-display); font-size: clamp(1.8rem, 3.2vw, 2.4rem); font-weight: 700; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.price-save {
  font-family: var(--f-display); font-weight: 600; font-size: 11px;
  background: var(--ink); color: white; padding: 5px 10px; border-radius: 999px;
  letter-spacing: 0.04em;
}
.hero-card ul {
  list-style: none; display: grid; gap: 10px; margin-bottom: 18px;
}
.hero-card li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--ink-2); line-height: 1.5;
}
.hero-card li::before {
  content: "✓"; width: 18px; height: 18px; flex: none; margin-top: 2px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--mint); color: var(--teal-deep); font-weight: 700; font-size: 10px;
}
.razorpay-wrap {
  display: grid; gap: 8px; padding: 14px;
  background: linear-gradient(135deg, rgba(15,181,174,0.10), rgba(47,91,255,0.08));
  border-radius: var(--radius-md);
  border: 1px solid rgba(15,181,174,0.22);
}
.razorpay-wrap .label {
  font-family: var(--f-mono); font-size: 11px; color: var(--teal-deep);
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
}
.razorpay-wrap form {
  display: flex; align-items: center; justify-content: center; min-height: 48px;
}

/* ===== Strip / marquee ===== */
.strip {
  background: var(--ink);
  color: rgba(255,255,255,0.86);
  overflow: hidden; padding: 12px 0;
  font-family: var(--f-body); font-weight: 500; font-size: 13px; letter-spacing: 0.02em;
}
.strip-track { display: flex; gap: 44px; animation: scroll 28s linear infinite; white-space: nowrap; }
.strip-track span { display: inline-flex; align-items: center; gap: 10px; }
.strip-track .dot { color: var(--teal); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Section base ===== */
section { padding: clamp(56px, 7vw, 90px) 0; position: relative; }
.sec-head { max-width: 700px; margin: 0 auto 44px; text-align: center; }
.sec-head p { font-size: 1rem; margin-top: 12px; color: #3B4D6E; }

/* ===== Stats ===== */
.stats-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: white; padding: 24px 20px; border-radius: var(--radius-md);
  border: 1px solid var(--line);
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.stat-num {
  font-family: var(--f-display); font-weight: 700; font-size: 1.9rem;
  background: linear-gradient(135deg, var(--teal-deep), var(--electric));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em; line-height: 1;
}
.stat-label { font-size: 13px; color: var(--ink-2); margin-top: 8px; line-height: 1.5; }

/* ===== Why ===== */
.why-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.why-card {
  background: white; border-radius: var(--radius-md);
  padding: 24px; border: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: transform .3s ease;
}
.why-card:hover { transform: translateY(-3px); }
.why-card::before {
  content: ""; position: absolute; inset: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--electric));
}
.why-card .icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--mint); color: var(--teal-deep);
  display: grid; place-items: center; font-size: 18px;
  margin-bottom: 14px; font-weight: 700;
}
.why-card h3 { margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--ink-2); line-height: 1.6; }

/* ===== Pricing ===== */
.pricing { background: linear-gradient(180deg, var(--ivory), var(--cream)); }
.price-card {
  max-width: 720px; margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-pop);
  border: 1px solid rgba(11,31,58,0.06);
  position: relative; overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(15,181,174,0.16), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.price-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--coral); color: white;
  padding: 7px 14px; border-radius: 999px;
  font-family: var(--f-display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.03em; margin-bottom: 14px;
}
.price-card h2 { margin-bottom: 6px; }
.price-card .desc { color: var(--ink-2); margin-bottom: 20px; font-size: 0.97rem; }
.price-row {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  padding: 18px 0; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line);
  margin-bottom: 22px;
}
.price-row .old { font-family: var(--f-display); color: var(--muted); text-decoration: line-through; font-size: 18px; font-weight: 500; }
.price-row .new { font-family: var(--f-display); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.price-row .pill {
  font-family: var(--f-display); font-weight: 600; font-size: 11.5px;
  background: var(--ink); color: white; padding: 6px 12px; border-radius: 999px;
}
.price-row .duration {
  font-family: var(--f-mono); color: var(--ink-2); font-size: 12px; font-weight: 500;
  display: block; flex-basis: 100%; margin-top: 4px;
}
.price-includes {
  display: grid; gap: 10px; margin-bottom: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.price-includes div {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--ink-2); line-height: 1.5;
}
.price-includes div::before {
  content: "✓"; width: 18px; height: 18px; flex: none; margin-top: 2px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--mint); color: var(--teal-deep); font-weight: 700; font-size: 10px;
}
.price-card .razorpay-wrap { margin-top: 4px; }

/* ===== Includes / Excludes split ===== */
.split-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .split-grid { grid-template-columns: 1fr 1fr; } }
.split-col {
  background: white; padding: clamp(24px, 3vw, 32px); border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.split-col.included {
  background: linear-gradient(180deg, white, #F4FBFA);
  border-color: rgba(15,181,174,0.22);
}
.split-col.excluded {
  background: linear-gradient(180deg, white, #FFF7F5);
  border-color: rgba(255,111,97,0.22);
}
.split-col h3 {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.split-col h3 .tag {
  font-family: var(--f-display); font-size: 11px; padding: 5px 10px; border-radius: 999px;
  font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.split-col.included h3 .tag { background: var(--mint); color: var(--teal-deep); }
.split-col.excluded h3 .tag { background: #FFE0DA; color: var(--warn); }
.split-col ul { list-style: none; display: grid; gap: 11px; }
.split-col li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--ink-2); line-height: 1.55;
}
.split-col.included li::before {
  content: "✓"; width: 20px; height: 20px; flex: none; margin-top: 1px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--mint); color: var(--teal-deep); font-weight: 700; font-size: 11px;
}
.split-col.excluded li::before {
  content: "✕"; width: 20px; height: 20px; flex: none; margin-top: 1px;
  display: grid; place-items: center; border-radius: 50%;
  background: #FFE0DA; color: var(--warn); font-weight: 700; font-size: 10px;
}

/* ===== Revisions block ===== */
.rev-card {
  max-width: 880px; margin: 28px auto 0;
  background: white; padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .rev-card { grid-template-columns: repeat(3, 1fr); } }
.rev-card .col { padding: 14px; border-radius: 10px; background: var(--ivory); }
.rev-card .col strong {
  font-family: var(--f-display); font-weight: 700; color: var(--ink);
  font-size: 13.5px; display: block; margin-bottom: 5px;
}
.rev-card .col p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
.rev-card .col.warn { background: #FFF7F5; }

/* ===== Process ===== */
.process { background: var(--ink); color: white; }
.process h2 { color: white; }
.process p { color: rgba(255,255,255,0.78); }
.process .eyebrow { background: rgba(15,181,174,0.18); color: var(--teal); }
.process .eyebrow::before { background: var(--teal); }
.process-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}
.process-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  transition: background .3s ease, transform .3s ease;
}
.process-step:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.18em;
  color: var(--teal); margin-bottom: 12px; display: block; font-weight: 500;
}
.process-step h3 { color: white; font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; line-height: 1.6; }

/* ===== Tools ===== */
.tools-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) { .tools-grid { grid-template-columns: repeat(3, 1fr); } }
.tool-card {
  background: white; border-radius: var(--radius-lg);
  padding: 26px; border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tool-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.tool-card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--electric));
  color: white; display: grid; place-items: center;
  margin-bottom: 14px; font-size: 18px; font-weight: 700;
}
.tool-card h3 { margin-bottom: 8px; }
.tool-card p { font-size: 13.5px; color: var(--ink-2); margin-bottom: 16px; line-height: 1.55; }
.tool-body { display: grid; gap: 12px; margin-top: auto; }
.tool-body label { font-size: 13px; color: var(--ink-2); display: flex; align-items: center; gap: 9px; cursor: pointer; line-height: 1.45; }
.tool-body input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--teal-deep); flex: none; }
.tool-body select, .tool-body input[type=text] {
  padding: 10px 13px; border: 1.5px solid var(--line); border-radius: 9px; background: white;
  font-size: 13.5px; transition: border-color .2s ease;
}
.tool-body select:focus, .tool-body input:focus { outline: none; border-color: var(--teal-deep); }
.tool-result {
  margin-top: 14px; padding: 14px; background: var(--mint);
  border-radius: 10px; font-size: 13.5px; color: var(--teal-deep);
  display: none; line-height: 1.55;
}
.tool-result.show { display: block; }
.tool-result strong { color: var(--ink); display: block; margin-bottom: 5px; font-family: var(--f-display); font-weight: 700; }
.tool-button {
  background: var(--ink); color: white !important;
  padding: 10px 18px;
  border-radius: 999px; font-family: var(--f-display); font-weight: 600;
  font-size: 13px; align-self: flex-start; transition: background .25s ease;
}
.tool-button:hover { background: var(--teal-deep); }
.score-bar {
  height: 6px; background: var(--line); border-radius: 999px; overflow: hidden;
  margin: 12px 0 4px;
}
.score-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--teal), var(--electric));
  width: 0; transition: width 0.6s ease;
}

/* ===== Sample preview ===== */
.preview { background: linear-gradient(180deg, var(--cream), var(--ivory)); }
.preview-card {
  background: white; border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-pop); border: 1px solid var(--line);
  max-width: 920px; margin: 0 auto;
  transform: perspective(1400px) rotateX(2deg);
}
.preview-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px; border-bottom: 1px solid var(--line);
}
.preview-bar i {
  width: 11px; height: 11px; border-radius: 50%; display: inline-block;
  background: var(--line);
}
.preview-bar i:nth-child(1) { background: #FF6F61; }
.preview-bar i:nth-child(2) { background: #FFC65A; }
.preview-bar i:nth-child(3) { background: var(--teal); }
.preview-url {
  flex: 1; margin-left: 8px;
  background: var(--ivory); padding: 7px 12px; border-radius: 999px;
  font-family: var(--f-mono); font-size: 12px; color: var(--ink-2);
}
.preview-img {
  width: 100%; border-radius: 8px; margin-top: 8px;
  aspect-ratio: 16/9; object-fit: cover;
}
.preview-cta { text-align: center; margin-top: 28px; }

/* ===== FAQ ===== */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 2px 22px;
  margin-bottom: 12px;
  transition: border-color .25s ease;
}
.faq-item[open] { border-color: var(--teal-deep); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 18px 0;
  font-family: var(--f-display); font-weight: 600; font-size: 0.98rem;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink); gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--f-display); font-weight: 500; font-size: 20px;
  color: var(--teal-deep); transition: transform .25s ease; flex: none;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 0 18px; color: var(--ink-2); font-size: 14px; line-height: 1.65;
}

/* ===== Final CTA ===== */
.cta-final {
  background: var(--ink);
  color: white;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(15,181,174,0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(47,91,255,0.16), transparent 50%);
  filter: blur(40px);
}
.cta-final .container { position: relative; }
.cta-final h2 { color: white; margin-bottom: 14px; }
.cta-final p { color: rgba(255,255,255,0.85); margin-bottom: 24px; max-width: 540px; margin-left: auto; margin-right: auto; font-size: 1rem; }
.cta-final .razorpay-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  max-width: 360px; margin: 0 auto;
}
.cta-final .razorpay-wrap .label { color: var(--teal); }

/* ===== Contact ===== */
.contact-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; } }
.contact-info {
  background: var(--ink); color: white;
  border-radius: var(--radius-lg); padding: 32px;
  position: relative; overflow: hidden;
}
.contact-info::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0, rgba(15,181,174,0.22), transparent 50%);
}
.contact-info * { position: relative; }
.contact-info h2 { color: white; margin-bottom: 12px; }
.contact-info p { color: rgba(255,255,255,0.85); margin-bottom: 22px; font-size: 0.95rem; }
.contact-row {
  display: flex; align-items: center; gap: 12px; padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 14.5px;
}
.contact-row .ic {
  width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.08);
  display: grid; place-items: center; color: var(--teal); flex: none;
}
.contact-row .ic .wa-ic { width: 16px; height: 16px; }
.contact-row a { color: white; }
.contact-row a:hover { color: var(--teal); }
.contact-form {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--line);
}
.contact-form h3 { margin-bottom: 6px; }
.contact-form .desc { color: var(--ink-2); margin-bottom: 18px; font-size: 14px; }
.field { margin-bottom: 14px; }
.field label {
  display: block; font-size: 11.5px; font-family: var(--f-display); font-weight: 600;
  color: var(--ink-2); letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--ivory); transition: border-color .2s ease, background .2s ease;
  font-size: 14px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-deep); background: white;
}
.field textarea { resize: vertical; min-height: 100px; }
.contact-form button[type=submit] {
  background: var(--ink); color: white;
  width: 100%; padding: 14px; border-radius: 10px;
  font-family: var(--f-display); font-weight: 600; font-size: 14px;
  letter-spacing: 0.01em;
  transition: background .25s ease;
}
.contact-form button[type=submit]:hover { background: var(--teal-deep); }

/* ===== Footer ===== */
footer {
  background: var(--ink); color: rgba(255,255,255,0.78);
  padding: 56px 0 22px;
}
.footer-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
footer h4 {
  font-family: var(--f-display); font-weight: 600; font-size: 12px;
  color: white; letter-spacing: 0.10em; text-transform: uppercase;
  margin-bottom: 14px;
}
footer ul { list-style: none; display: grid; gap: 9px; font-size: 13.5px; }
footer ul a:hover { color: var(--teal); }
footer p { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,0.7); margin-top: 12px; }
.footer-bottom {
  margin-top: 40px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12px; font-family: var(--f-mono); color: rgba(255,255,255,0.55);
}

/* ===== Floating Action Bar ===== */
.float-side {
  position: fixed; right: 18px; bottom: 50%; transform: translateY(50%);
  display: none; flex-direction: column; gap: 9px;
  z-index: 80;
}
.float-side a {
  width: 50px; height: 50px; border-radius: 50%;
  background: white; box-shadow: var(--shadow-pop);
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px;
  border: 1px solid var(--line);
  transition: transform .25s ease, background .25s ease;
  position: relative;
}
.float-side a:hover { transform: scale(1.06); }
.float-side .call { color: var(--ink); }
.float-side .wa { background: #25D366; color: white; border-color: #1ebe5a; }
.float-side .wa .wa-ic { width: 22px; height: 22px; }
.float-side .buy {
  background: var(--coral); color: white !important; border-color: var(--coral-deep);
}
.float-side .buy .cart-ic { width: 20px; height: 20px; stroke: white; }
.float-side .buy::after {
  content: "₹30/-K"; position: absolute; bottom: -7px; right: -7px;
  background: var(--ink); color: white;
  font-family: var(--f-display); font-weight: 700; font-size: 9.5px;
  padding: 3px 6px; border-radius: 999px;
  letter-spacing: 0.02em;
}
@media (min-width: 980px) { .float-side { display: flex; } }

.float-bottom {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: white; border-top: 1px solid var(--line);
  padding: 8px 10px;
  display: flex; gap: 7px; z-index: 80;
  box-shadow: 0 -8px 22px -10px rgba(11,31,58,0.18);
}
.float-bottom a {
  flex: 1; padding: 11px 6px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--f-display); font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.005em;
}
.float-bottom .call { background: var(--mint); color: var(--teal-deep); }
.float-bottom .wa { background: #25D366; color: white; }
.float-bottom .buy { background: var(--coral); color: white; }
.float-bottom .cart-ic { width: 14px; height: 14px; }
.float-bottom .wa .wa-ic { width: 14px; height: 14px; }
@media (min-width: 980px) { .float-bottom { display: none; } }

/* ===== Icon helpers ===== */
.wa-ic { width: 16px; height: 16px; display: inline-block; flex: none; vertical-align: middle; }
.cart-ic { display: inline-block; flex: none; vertical-align: middle; }

/* ===== Reveal animations ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: all .7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: all .65s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  body { padding-bottom: 68px; }
}

/* ===== v7: readable size + better hero buttons ===== */

/* Bump base font size 6% — readable, no layout breakage */
html { font-size: 17px; }
body { font-size: 1rem; line-height: 1.7; }
p { font-size: 1rem; line-height: 1.7; }

/* Slight bump to FAQ, contact, footer */
.faq-item summary { font-size: 1.02rem; }
.faq-item p { font-size: 0.96rem; }
.contact-row { font-size: 15.5px; }
footer ul, footer p { font-size: 14.5px; }
.split-col li { font-size: 14.5px; }
.price-includes div { font-size: 14.5px; }
.hero-card li { font-size: 14.5px; }

/* ===== Better hero buttons ===== */
.hero-cta-row { gap: 16px; margin-bottom: 30px; }

.btn {
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 12px;
  line-height: 1; white-space: nowrap;
  cursor: pointer; border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  font-family: var(--f-display);
}
.btn .btn-ic { width: 20px; height: 20px; flex: none; }
.btn .btn-arrow { font-size: 18px; transition: transform .3s ease; }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* Buy button: solid premium navy with subtle inner glow */
.btn-buy {
  background: var(--ink); color: white !important;
  box-shadow:
    0 16px 32px -14px rgba(11,31,58,0.5),
    inset 0 1px 0 rgba(255,255,255,0.14);
  position: relative; overflow: hidden;
}
.btn-buy::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(135deg, var(--teal-deep), var(--electric));
  opacity: 0; transition: opacity .3s ease; z-index: 0;
}
.btn-buy > * { position: relative; z-index: 1; }
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -16px rgba(15,181,174,0.55); }
.btn-buy:hover::before { opacity: 1; }
.btn-buy .btn-ic { stroke: white; }

/* WhatsApp button */
.btn-wa {
  background: #25D366; color: white !important;
  box-shadow: 0 14px 30px -14px rgba(37,211,102,0.5);
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-wa .btn-ic { width: 21px; height: 21px; }

/* Floating side / bottom cart icons larger */
.float-side .buy .cart-ic, .float-bottom .buy .cart-ic { width: 22px; height: 22px; }
.nav-cta .cart-ic { width: 16px; height: 16px; }


/* ============================================================
   MOBILE — Single clean responsive pass (≤740px)
   Premium, classy, full content. Equal rhythm.
   ============================================================ */
@media (max-width: 740px) {

  /* Container + section rhythm */
  .container { padding: 0 20px; }
  section { padding: 56px 0; }
  .sec-head { margin-bottom: 32px; max-width: 100%; }
  .sec-head h2 { font-size: clamp(1.6rem, 6.5vw, 2.1rem); line-height: 1.2; }
  .sec-head p { font-size: 0.96rem; line-height: 1.65; margin-top: 12px; }
  .eyebrow { font-size: 11px; }

  /* FOMO bar */
  .fomo-bar {
    font-size: 12px; padding: 9px 16px;
    line-height: 1.45; letter-spacing: 0;
    text-align: center;
  }
  .fomo-bar a { font-size: 12px; margin-left: 6px; }

  /* NAV — brand + buy on single line, equal vertical center */
  .nav-inner {
    padding: 12px 0;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: center;
  }
  .brand {
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
  }
  .brand-mark {
    width: 36px; height: 36px;
    font-size: 15px;
    flex: 0 0 36px;
  }
  .brand-name { font-size: 16px; line-height: 1.1; }
  .brand-tag { font-size: 9.5px; margin-top: 2px; line-height: 1.1; letter-spacing: 0.10em; }
  .nav-cta {
    padding: 10px 16px;
    font-size: 12.5px;
    flex: 0 0 auto;
    white-space: nowrap;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .nav-cta .cart-ic { width: 13px; height: 13px; }
  .nav-links { display: none; }

  /* HERO */
  .hero { padding: 36px 0 48px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.3rem);
    line-height: 1.12;
    margin: 14px 0 18px;
  }
  .hero-sub {
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 22px;
    max-width: 100%;
  }
  .hero-cta-row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
  }
  .hero-cta-row .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 13.5px;
    justify-content: center;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .hero-cta-row .btn .btn-ic { width: 17px; height: 17px; }
  .hero-cta-row .btn-wa .btn-ic { width: 18px; height: 18px; }
  .hero-cta-row .btn-arrow { font-size: 15px; }
  .hero-trust {
    gap: 12px 18px;
    font-size: 11.5px;
    padding-top: 18px;
    border-top: 1px solid rgba(11,31,58,0.08);
  }

  /* HERO CARD (founder offer) */
  .hero-card {
    padding: 22px 20px;
    transform: none;
    text-align: left;
  }
  .hero-card-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
  }
  .hero-card h3 { font-size: 1.05rem; }
  .hero-pricetag { font-size: 10px; padding: 4px 10px; }
  .slot-meter {
    padding: 10px 12px;
    margin-bottom: 14px;
    background: rgba(255,111,97,0.06);
    border-radius: 10px;
  }
  .slot-meter-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 11.5px;
  }
  .slot-meter-row strong { font-size: 12px; }
  .slot-bar { height: 5px; }
  .hero-priceblock {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin: 10px 0 14px;
  }
  .hero-priceblock .price-old { font-size: 14px; }
  .hero-priceblock .price-new { font-size: 2.1rem; line-height: 1.05; }
  .hero-priceblock .price-save { font-size: 10.5px; padding: 4px 9px; }
  .hero-card ul { margin: 8px 0 14px; }
  .hero-card li { font-size: 13.5px; padding: 7px 0 7px 22px; line-height: 1.5; }
  .hero-card li::before { width: 16px; height: 16px; font-size: 9px; top: 8px; }

  /* SLOT METER everywhere on mobile */
  .slot-meter-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  /* PRICING CARD (main pricing section) */
  .price-card {
    padding: 28px 22px;
    text-align: left;
  }
  .price-card .price-badge { font-size: 11px; padding: 6px 12px; }
  .price-card h2 { font-size: 1.45rem; line-height: 1.18; margin: 12px 0 8px; }
  .price-card .desc { font-size: 14.5px; line-height: 1.6; margin-bottom: 18px; }
  .price-card .slot-meter {
    margin: 14px 0;
  }
  .price-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin: 14px 0 16px;
  }
  .price-row .old { font-size: 16px; }
  .price-row .new { font-size: 2.4rem; line-height: 1.05; }
  .price-row .pill { font-size: 11px; padding: 5px 10px; margin-top: 4px; }
  .price-row .duration { font-size: 12px; line-height: 1.5; margin-top: 4px; }

  /* PRICE-INCLUDES — bullet list, full width */
  .price-includes {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 16px 0 0;
    text-align: left;
  }
  .price-includes div {
    padding: 11px 0 11px 28px;
    font-size: 14.5px;
    line-height: 1.55;
    position: relative;
    border-bottom: 1px solid rgba(11,31,58,0.06);
    color: var(--ink-2);
    background: transparent;
    border-radius: 0;
  }
  .price-includes div::before {
    content: "✓";
    position: absolute;
    left: 0; top: 11px;
    width: 20px; height: 20px;
    color: var(--teal-deep);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
  }
  .price-includes div strong { color: var(--ink); font-weight: 600; }
  .price-includes .renewal-note {
    background: linear-gradient(135deg, rgba(11,31,58,0.04), rgba(15,181,174,0.07));
    border: 1px solid rgba(8,105,98,0.20);
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-2);
  }
  .price-includes .renewal-note::before { display: none; }

  /* RAZORPAY wrap centered + clean spacing */
  .razorpay-wrap {
    text-align: center;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(11,31,58,0.08);
  }
  .razorpay-wrap .label {
    display: block;
    text-align: center;
    margin-bottom: 12px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .razorpay-wrap form { display: inline-block; }

  /* WHY / STATS / PROCESS / TOOLS — equal rhythm */
  .stats-grid, .why-grid, .process-grid, .tools-grid { gap: 14px; }
  .stat-card, .why-card, .process-step, .tool-card {
    padding: 22px 20px;
    text-align: left;
  }
  .stat-card h3 { font-size: 0.95rem; }
  .stat-num, .why-card h3, .process-step h3, .tool-card h3 { font-size: 1.05rem; line-height: 1.2; }
  .stat-card p, .why-card p, .process-step p, .tool-card p { font-size: 14px; line-height: 1.6; }

  /* SPLIT (Included / Not) */
  .split-grid { gap: 14px; grid-template-columns: 1fr; }
  .split-col { padding: 22px 20px; }
  .split-col h3 { font-size: 1.1rem; margin-bottom: 12px; }
  .split-col li { font-size: 14px; padding: 9px 0 9px 26px; line-height: 1.55; }

  /* REVISION CARD */
  .rev-card {
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .rev-card .col { padding: 14px; }
  .rev-card .col strong { font-size: 13.5px; }
  .rev-card .col p { font-size: 13px; line-height: 1.55; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-info, .contact-form { padding: 24px 20px; }
  .contact-row { font-size: 14px; padding: 12px 0; gap: 12px; }
  .contact-row .ic { width: 32px; height: 32px; flex: 0 0 32px; }
  .field input, .field select, .field textarea {
    font-size: 15px; padding: 12px 14px;
  }
  .field label { font-size: 11px; }

  /* FAQ */
  .faq-item { padding: 4px 18px; }
  .faq-item summary { font-size: 1rem; padding: 18px 0; line-height: 1.4; }
  .faq-item p { font-size: 14.5px; line-height: 1.65; padding-bottom: 18px; }

  /* FINAL CTA */
  .cta-final { padding: 56px 0; }
  .cta-final h2 { font-size: 1.55rem; line-height: 1.2; }
  .cta-final p { font-size: 0.96rem; margin-top: 12px; }

  /* FOOTER — clean centered grid */
  footer { padding: 50px 0 90px; text-align: center; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-grid > div { display: flex; flex-direction: column; align-items: center; }
  .footer-grid .brand { justify-content: center; gap: 12px; }
  footer ul { display: flex; flex-direction: column; gap: 8px; align-items: center; padding: 0; }
  footer ul li { text-align: center; }
  footer p { font-size: 13.5px; line-height: 1.6; max-width: 320px; margin: 12px auto 0; }
  footer h4 { font-size: 11px; margin-bottom: 14px; letter-spacing: 0.16em; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    font-size: 11.5px;
    text-align: center;
    align-items: center;
    margin-top: 32px;
    padding-top: 20px;
  }

  /* FLOATING BOTTOM BAR — compact, classy, equal */
  body { padding-bottom: 76px; }
  .float-bottom {
    padding: 8px 12px;
    gap: 8px;
    box-shadow: 0 -8px 24px -10px rgba(11,31,58,0.18);
    background: var(--white);
    border-top: 1px solid rgba(11,31,58,0.06);
  }
  .float-bottom a {
    flex: 1;
    padding: 12px 6px;
    font-size: 12px;
    border-radius: 12px;
    gap: 6px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
  }
  .float-bottom a span { font-size: 12px; line-height: 1; }
  .float-bottom .btn-ic, .float-bottom .cart-ic { width: 14px; height: 14px; }
  .float-bottom .call { background: var(--ink); color: var(--ivory); }
  .float-bottom .wa { background: #25D366; color: white; }
  .float-bottom .buy { background: var(--coral); color: var(--ink); }

  /* Hide desktop float-side on mobile */
  .float-side { display: none; }
}

/* Tiny phones (≤380px) */
@media (max-width: 380px) {
  .nav-cta { padding: 9px 14px; font-size: 11.5px; }
  .brand-name { font-size: 15px; }
  .price-row .new { font-size: 2.1rem; }
  .hero-priceblock .price-new { font-size: 1.9rem; }
}

/* Brand link to Jodbrain Studio */
.brand-link {
  color: var(--teal-deep) !important;
  font-weight: 600;
  border-bottom: 1px dotted rgba(8,105,98,0.4);
  transition: color .2s ease, border-color .2s ease;
}
.brand-link:hover { color: var(--electric) !important; border-color: var(--electric); }

/* Razorpay button always center on all screens */
.razorpay-wrap { text-align: center; }
.razorpay-wrap .label { display: block; text-align: center; }
.razorpay-wrap form { display: inline-block; }

/* ============================================================
   FIX: price-includes alignment (desktop) + float-side icon spacing
   ============================================================ */

/* Override the original flex layout — use block + absolute checkmark */
.price-includes {
  display: grid !important;
  gap: 10px 28px !important;
  margin-bottom: 22px !important;
  grid-template-columns: 1fr 1fr !important;
}
.price-includes div {
  display: block !important;
  position: relative;
  padding: 10px 0 10px 30px !important;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
  border-bottom: 1px solid rgba(11,31,58,0.06);
  background: transparent;
  border-radius: 0;
  gap: 0 !important;
  align-items: initial !important;
}
.price-includes div::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0; top: 13px;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 11px;
  margin: 0 !important;
  flex: none;
}
.price-includes div strong {
  color: var(--ink);
  font-weight: 600;
  white-space: normal;
}

/* Renewal note: full width, callout style, no checkmark */
.price-includes .renewal-note {
  grid-column: 1 / -1 !important;
  background: linear-gradient(135deg, rgba(11,31,58,0.04), rgba(15,181,174,0.07)) !important;
  border: 1px solid rgba(8,105,98,0.20) !important;
  border-radius: 12px !important;
  padding: 14px 18px 14px 18px !important;
  margin-top: 10px !important;
  font-size: 14px;
  line-height: 1.7;
  border-bottom: 1px solid rgba(8,105,98,0.20) !important;
  text-align: left;
}
.price-includes .renewal-note::before { display: none !important; }
.price-includes .renewal-note strong { color: var(--teal-deep); }

/* Mobile collapse to single column */
@media (max-width: 740px) {
  .price-includes { grid-template-columns: 1fr !important; gap: 0 !important; }
  .price-includes div { padding: 11px 0 11px 28px !important; font-size: 14px !important; }
  .price-includes .renewal-note {
    padding: 14px 16px !important;
    margin-top: 12px !important;
    font-size: 13px !important;
  }
}

/* ============================================================
   Float-side icons: proper spacing + breathing room
   ============================================================ */
.float-side {
  right: 22px !important;
  gap: 14px !important;
}
.float-side a {
  width: 52px !important;
  height: 52px !important;
  box-shadow: 0 10px 26px -10px rgba(11,31,58,0.32) !important;
  border: 1px solid rgba(11,31,58,0.06) !important;
}
.float-side a:hover { transform: translateY(-3px) !important; }
.float-side .wa .wa-ic { width: 23px !important; height: 23px !important; }
.float-side .buy .cart-ic { width: 21px !important; height: 21px !important; }
.float-side .call .btn-ic { width: 22px !important; height: 22px !important; }
.float-side .buy::after {
  bottom: -8px !important;
  right: -10px !important;
  padding: 3px 7px !important;
  font-size: 10px !important;
  letter-spacing: 0.02em !important;
}
