/* ============================================
   InspiroTrack Landing Page — style.css
   Fully responsive: 1440+ / 1024 / 768 / 480 / 360
   ============================================ */

/* ---------- RESET & VARIABLES ---------- */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --navy:      #0a0e27;
  --navy-light:#111640;
  --violet:    #7c3aed;
  --violet-lt: #a78bfa;
  --violet-dk: #5b21b6;
  --orange:    #f97316;
  --orange-lt: #fb923c;
  --emerald:   #10b981;
  --white:     #ffffff;
  --g50:       #f8fafc;
  --g100:      #f1f5f9;
  --g200:      #e2e8f0;
  --g300:      #cbd5e1;
  --g400:      #94a3b8;
  --g500:      #64748b;
  --g600:      #475569;
  --tp:        #0f172a;
  --ts:        #334155;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 12px 40px rgba(0,0,0,.08);
  --shadow-lg: 0 24px 80px rgba(0,0,0,.12);
  --shadow-xl: 0 40px 100px rgba(0,0,0,.5);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--tp);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,14,39,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124,58,237,.15);
}
.nav-in {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; position: relative;
}
.nav-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-logo img { height: 32px; }
.nav-logo span { color: var(--violet-lt); font-size: 16px; font-weight: 600; }
.nav-mid { display: flex; gap: 28px; }
.nav-mid a {
  color: var(--g400); font-size: 14px; font-weight: 500;
  transition: color .2s; white-space: nowrap;
}
.nav-mid a:hover { color: #fff; }
.nav-end { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }

/* Mobile nav overlay */
.nav-mid.show {
  display: flex !important; flex-direction: column;
  position: absolute; top: 72px; left: 0; right: 0;
  background: rgba(10,14,39,.98); padding: 8px 24px 16px;
  gap: 0; border-bottom: 1px solid rgba(124,58,237,.2);
  z-index: 100;
}
.nav-mid.show a {
  padding: 14px 0; font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-mid.show a:last-child { border-bottom: none; }

/* ---------- BUTTONS ---------- */
.b-ghost {
  padding: 10px 20px; border: 1px solid rgba(124,58,237,.4);
  border-radius: 10px; color: var(--violet-lt); font-size: 14px;
  font-weight: 600; transition: var(--transition);
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.b-ghost:hover { background: rgba(124,58,237,.1); }
.b-fill {
  padding: 10px 24px; background: linear-gradient(135deg, var(--violet), var(--violet-dk));
  border-radius: 10px; color: #fff; font-size: 14px; font-weight: 600;
  border: none; cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.b-fill:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(124,58,237,.35); }
.b-lg { padding: 16px 36px; font-size: 16px; border-radius: 14px; }
.b-orange { background: linear-gradient(135deg, var(--orange), #ea580c); }
.b-orange:hover { box-shadow: 0 8px 25px rgba(249,115,22,.35); }

.mob-btn {
  display: none; background: none; border: none;
  color: #fff; font-size: 22px; cursor: pointer;
  padding: 8px; margin-left: 8px;
}

/* ---------- BANNER ---------- */
.banner {
  background: linear-gradient(90deg, var(--orange), #ea580c, var(--violet));
  color: #fff; text-align: center; padding: 10px 16px;
  font-size: 14px; font-weight: 600;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
}
.banner .tag {
  background: #fff; color: var(--orange);
  padding: 2px 10px; border-radius: 20px;
  font-weight: 800; margin: 0 6px; font-size: 13px;
  display: inline-block;
}

/* ---------- HERO ---------- */
.hero {
  padding: 180px 24px 80px;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -50%; left: -30%; width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(124,58,237,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-in {
  max-width: 1280px; margin: 0 auto;
  position: relative; z-index: 1; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 30px;
  background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.3);
  color: var(--violet-lt); font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; color: #fff; line-height: 1.1;
  letter-spacing: -2px; margin-bottom: 20px;
  max-width: 800px; margin-left: auto; margin-right: auto;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--violet-lt), var(--orange-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--g400); line-height: 1.7; margin-bottom: 36px;
  max-width: 620px; margin-left: auto; margin-right: auto;
}
.hero-ctas {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 60px;
}
.hero-img {
  max-width: 1100px; margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden;
  /*box-shadow: var(--shadow-xl), 0 0 0 1px rgba(124,58,237,.2);*/
}
.hero-stats {
  display: flex; gap: 48px; justify-content: center;
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.hero-stat .num { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -1px; }
.hero-stat .lbl { font-size: 13px; color: var(--g500); margin-top: 2px; }

/* ---------- SECTIONS ---------- */
.sec { padding: 100px 24px; }
.sec-dark { background: var(--navy); }
.sec-light { background: var(--white); }
.sec-gray { background: var(--g100); }
.box { max-width: 1280px; margin: 0 auto; }
.sh { text-align: center; margin-bottom: 56px; }
.sh .tag {
  display: inline-block; font-size: 13px; font-weight: 700;
  color: var(--violet); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 12px;
}
.sh h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800; letter-spacing: -1px; margin-bottom: 16px;
}
.sh p { font-size: 18px; color: var(--g500); max-width: 600px; margin: 0 auto; }
.sh-d h2 { color: #fff; }
.sh-d p { color: var(--g400); }

/* ---------- FEATURE TABS ---------- */
.ftabs {
  display: flex; justify-content: center; gap: 6px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.ftab {
  padding: 10px 18px; border-radius: 10px;
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--g200); color: var(--g500);
  cursor: pointer; transition: var(--transition);
  background: var(--white); white-space: nowrap;
  font-family: inherit;
}
.ftab:hover { border-color: var(--violet); color: var(--violet); }
.ftab.on { background: var(--violet); color: #fff; border-color: var(--violet); }

.fpanel {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: center;
}
.fpanel.on { display: grid; animation: fadeUp .4s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ft h3 { font-size: 28px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 12px; }
.ft h3 i { margin-right: 8px; font-size: 22px; }
.ft .sub { font-size: 15px; color: var(--g500); margin-bottom: 24px; line-height: 1.7; }

.fl { list-style: none; }
.fl li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 7px 0; font-size: 14px; color: var(--ts);
}
.fl li i { color: var(--emerald); margin-top: 4px; font-size: 13px; flex-shrink: 0; }

.fimg {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.1), 0 0 0 1px rgba(0,0,0,.05);
}

/* ---------- AI SECTION ---------- */
.ai-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.ai-cards { display: grid; gap: 14px; }
.ai-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px; border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.ai-card:hover { background: rgba(255,255,255,.06); border-color: rgba(124,58,237,.2); }
.ai-card .ic {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 16px;
}
.ai-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.ai-card p  { font-size: 13px; color: var(--g400); margin: 0; }

.ai-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.3), 0 0 0 1px rgba(124,58,237,.2);
}

/* ---------- WHY GRID ---------- */
.wg { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.wc {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--g200);
  transition: var(--transition);
}
.wc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--violet);
}
.wc .ic {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 20px;
}
.wc h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.wc p  { font-size: 14px; color: var(--g500); line-height: 1.6; }

.ic-v { background: rgba(124,58,237,.1); color: var(--violet); }
.ic-o { background: rgba(249,115,22,.1); color: var(--orange); }
.ic-e { background: rgba(16,185,129,.1); color: var(--emerald); }
.ic-b { background: rgba(59,130,246,.1); color: #3b82f6; }
.ic-r { background: rgba(239,68,68,.1);  color: #ef4444; }
.ic-y { background: rgba(234,179,8,.1);  color: #eab308; }

/* ---------- PRICING ---------- */
.pg {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pc {
  border: 1px solid var(--g200); border-radius: var(--radius-xl);
  padding: 36px; background: var(--white);
  transition: var(--transition); position: relative;
}
.pc:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.pc.pop {
  border: 2px solid var(--violet);
  box-shadow: 0 16px 48px rgba(124,58,237,.12);
}
.pc.pop::before {
  content: 'Most Popular'; position: absolute; top: -14px;
  left: 50%; transform: translateX(-50%);
  background: var(--violet); color: #fff;
  padding: 4px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
}
.pn { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.pd { font-size: 13px; color: var(--g500); margin-bottom: 20px; }
.pp { font-size: 44px; font-weight: 900; letter-spacing: -2px; }
.pp .u  { font-size: 15px; font-weight: 500; color: var(--g400); letter-spacing: 0; }
.pp .old { font-size: 18px; color: var(--g400); text-decoration: line-through; font-weight: 500; margin-left: 8px; letter-spacing: 0; }
.ppr { display: flex; align-items: baseline; margin-bottom: 8px; }
.psv { font-size: 13px; color: var(--emerald); font-weight: 700; margin-bottom: 24px; display: block; }
.pf { list-style: none; margin-bottom: 28px; }
.pf li { padding: 6px 0; font-size: 14px; color: var(--ts); display: flex; align-items: center; gap: 10px; }
.pf li i { color: var(--emerald); font-size: 13px; width: 16px; }
.pf li.dim { color: var(--g400); }
.pf li.dim i { color: var(--g300); }
.pb {
  width: 100%; padding: 14px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; font-family: inherit;
  border: none; cursor: pointer; transition: var(--transition);
  display: block; text-align: center;
}
.pb-f { background: var(--violet); color: #fff; }
.pb-f:hover { background: var(--violet-dk); }
.pb-l { background: var(--white); color: var(--violet); border: 2px solid var(--violet); }
.pb-l:hover { background: rgba(124,58,237,.05); }

/* ---------- FEATURE COMPARISON TABLE ---------- */
.compare-wrap { max-width: 1100px; margin: 0 auto; }
.compare-table { width: 100%; border-collapse: collapse; }

/* Sticky header */
.compare-table thead { position: sticky; top: 0; z-index: 10; }
.compare-table thead th {
  background: var(--g50); padding: 0; vertical-align: bottom;
  border-bottom: 2px solid var(--g200);
}
.compare-table thead th:first-child { width: 38%; }
.th-plan {
  padding: 24px 16px 14px; text-align: center;
}
.th-plan .plan-name {
  font-size: 14px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--tp); margin-bottom: 2px;
}
.th-plan .plan-price {
  font-size: 12px; color: var(--g500); font-weight: 500; margin-bottom: 8px;
}
.th-plan .plan-cta {
  font-size: 13px; font-weight: 700; color: var(--violet);
  text-decoration: none; transition: color .2s;
}
.th-plan .plan-cta:hover { color: var(--violet-dk); text-decoration: underline; }
.th-plan.pop-col { position: relative; }
.th-plan.pop-col::before {
  content: 'Popular'; position: absolute; top: 2px; left: 50%;
  transform: translateX(-50%); font-size: 10px; font-weight: 700;
  background: var(--violet); color: #fff; padding: 2px 10px;
  border-radius: 10px; letter-spacing: .5px;
}

/* Category row */
.cat-row td {
  padding: 16px 16px 6px; font-size: 15px; font-weight: 700;
  color: var(--tp); border: none; letter-spacing: -.3px;
  background: var(--white) !important;
}
.cat-row td:not(:first-child) { display: none; }

/* Feature rows — zebra striping */
.compare-table tbody tr { border-bottom: 1px solid var(--g100); }
.compare-table tbody tr:nth-child(even):not(.cat-row) { background: var(--g50); }
.compare-table tbody tr:nth-child(odd):not(.cat-row) { background: var(--white); }
.compare-table tbody tr:not(.cat-row):hover { background: #eef2ff; }
.compare-table tbody td {
  padding: 10px 16px; font-size: 14px; color: var(--ts);
  vertical-align: middle;
}
.compare-table tbody td:not(:first-child) {
  text-align: center; font-size: 15px;
}
.feat-name { display: flex; align-items: center; gap: 8px; }

/* Check / Dash / Text */
.ck { color: var(--emerald); font-size: 18px; font-weight: 700; }
.ds { color: var(--g300); font-size: 16px; }
.val { font-size: 13px; font-weight: 600; color: var(--tp); }

/* Responsive: horizontal scroll on mobile */
.compare-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--g300) transparent;
  margin: 0 -16px; padding: 0 0px;
  border: 1px solid var(--g200); border-radius: var(--radius-lg);
}
.compare-scroll::-webkit-scrollbar { height: 4px; }
.compare-scroll::-webkit-scrollbar-thumb { background: var(--g300); border-radius: 4px; }

@media (max-width: 768px) {
  .compare-table thead th:first-child { width: 180px; min-width: 180px; }
  .compare-table thead th { min-width: 100px; }
  .compare-table tbody td:first-child { min-width: 180px; font-size: 13px; }
  .compare-table tbody td { padding: 9px 12px; }
  .th-plan .plan-name { font-size: 11px; }
  .cat-row td { font-size: 14px; padding: 14px 12px 5px; }
}
@media (max-width: 480px) {
  .compare-table thead th:first-child { width: 150px; min-width: 150px; }
  .compare-table thead th { min-width: 85px; }
  .compare-table tbody td:first-child { min-width: 150px; font-size: 12px; }
  .compare-table tbody td { padding: 8px 10px; }
  .th-plan .plan-name { font-size: 10px; letter-spacing: 1px; }
  .th-plan .plan-cta { font-size: 11px; }
}

/* ---------- APPS ---------- */
.apps-row { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.ab {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 28px 36px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); min-width: 180px;
  transition: var(--transition);
}
.ab:hover {
  border-color: var(--violet);
  background: rgba(124,58,237,.05);
  transform: translateY(-4px);
}
.ab i   { font-size: 36px; color: var(--violet-lt); }
.ab .nm { font-size: 15px; font-weight: 700; color: #fff; }
.ab .mt { font-size: 12px; color: var(--g400); }
.ab .live {
  font-size: 10px; background: var(--emerald); color: #fff;
  padding: 2px 8px; border-radius: 10px; font-weight: 700;
}

/* ---------- CTA ---------- */
.cta {
  padding: 100px 24px; background: var(--navy);
  text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.cta-in { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.cta-in h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900; color: #fff; letter-spacing: -1.5px; margin-bottom: 16px;
}
.cta-in p { font-size: 18px; color: var(--g400); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), #ea580c);
  color: #fff; padding: 10px 28px; border-radius: 30px;
  font-size: 16px; font-weight: 800; margin-bottom: 28px;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 48px 24px 24px;
  background: #060918;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-in {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--g500); transition: color .2s; }
.footer-links a:hover { color: var(--violet-lt); }
.footer-b {
  max-width: 1280px; margin: 24px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.05); text-align: center;
}
.footer-b p { font-size: 12px; color: var(--g600); }


/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* --- TABLET LANDSCAPE (<=1024) --- */
@media (max-width: 1024px) {
  .fpanel.on { grid-template-columns: 1fr; }
  .ai-row    { grid-template-columns: 1fr; }
  .pg        { grid-template-columns: 1fr; max-width: 420px; }
  .wg        { grid-template-columns: 1fr 1fr; }

  .hero-img  { max-width: 100%; }
}

/* --- TABLET PORTRAIT (<=768) --- */
@media (max-width: 768px) {
  /* Nav */
  .nav-mid  { display: none; }
  .mob-btn  { display: block; }

  /* Hero */
  .hero     { padding: 150px 20px 56px; }
  .hero h1  { letter-spacing: -1px; }
  .hero p   { margin-bottom: 28px; }
  .hero-ctas { margin-bottom: 40px; }
  .hero-img { border-radius: 10px; margin: 0 -8px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat .num { font-size: 22px; }

  /* Sections */
  .sec { padding: 64px 16px; }
  .sh  { margin-bottom: 36px; }
  .sh p { font-size: 16px; }

  /* Feature tabs — horizontal scroll */
  .ftabs {
    gap: 6px; padding: 0 0 4px; margin-bottom: 32px;
    overflow-x: auto; justify-content: flex-start;
    flex-wrap: nowrap; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ftabs::-webkit-scrollbar { display: none; }
  .ftab { padding: 8px 14px; font-size: 12px; flex-shrink: 0; }
  .fpanel.on { grid-template-columns: 1fr; gap: 24px; }
  .fpanel.on .fimg { order: -1; }
  .ft h3  { font-size: 22px; }
  .ft .sub { font-size: 14px; }

  /* AI */
  .ai-row { grid-template-columns: 1fr; gap: 32px; }
  .ai-img { order: -1; }

  /* Why grid */
  .wg { grid-template-columns: 1fr; gap: 16px; }
  .wc { padding: 24px; }

  /* Apps */
  .apps-row { gap: 16px; }
  .ab { min-width: 140px; padding: 20px 24px; }

  /* Banner */
  .banner { font-size: 12px; padding: 8px 12px; }
  .banner .tag { font-size: 11px; padding: 2px 8px; }

  /* Buttons */
  .b-lg { padding: 14px 28px; font-size: 15px; }

  /* Footer */
  .footer-in { flex-direction: column; text-align: center; gap: 20px; }
  .footer-links { justify-content: center; }
}

/* --- MOBILE (<=480) --- */
@media (max-width: 480px) {
  .hero { padding: 140px 16px 48px; }

  /* Stack CTA buttons */
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .b-fill,
  .hero-ctas .b-ghost { width: 100%; text-align: center; justify-content: center; }

  /* Hide ghost button in nav */
  .nav-end .b-ghost { display: none; }

  /* Stack stats */
  .hero-stats { flex-direction: column; align-items: center; gap: 16px; }

  /* Pricing single column */
  .pg { max-width: 100%; }
  .pc { padding: 28px; }
  .pp { font-size: 36px; }

  /* Apps stack */
  .apps-row { flex-direction: column; align-items: center; }
  .ab { width: 100%; max-width: 280px; }

  /* CTA */
  .cta { padding: 64px 16px; }
  .cta-in p { font-size: 16px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .b-fill,
  .cta-btns .b-ghost { width: 100%; text-align: center; justify-content: center; }
  .pill { font-size: 13px; padding: 8px 20px; }

  /* Sections */
  .sec { padding: 48px 14px; }
  .sh { margin-bottom: 28px; }

  /* Footer */
  .footer { padding: 32px 16px 20px; }
  .footer-b p { font-size: 11px; }
}

/* --- SMALL MOBILE (<=360) --- */
@media (max-width: 360px) {
  .nav-in { padding: 0 12px; height: 64px; }
  .nav-logo img { height: 26px; }
  .nav-logo span { font-size: 14px; }
  .b-fill { padding: 8px 16px; font-size: 13px; }
  .hero { padding: 130px 12px 40px; }
  .hero-badge { font-size: 11px; padding: 4px 12px; }
  .banner { font-size: 10px; }
  .ftab { padding: 6px 10px; font-size: 11px; }
  .ft h3 { font-size: 20px; }
  .fl li { font-size: 13px; }
  .wc h3 { font-size: 16px; }
  .wc p  { font-size: 13px; }
  .pn { font-size: 18px; }
  .pp { font-size: 32px; }
}
