/* ===================================================
   KANGUINPOS — CLEAN MODERN STYLESHEET
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Press+Start+2P&display=swap');

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

:root {
  --orange:    #ff6a00;
  --orange-d:  #d95700;
  --navy:      #0d1635;
  --navy-l:    #162050;
  --white:     #ffffff;
  --off-white: #f7f8fc;
  --light:     #eef1f9;
  --text:      #111827;
  --muted:     #6b7280;
  --border:    #e5e7eb;
  --green:     #16a34a;
  --green-l:   #dcfce7;
  --red-l:     #fee2e2;
  --red:       #dc2626;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.15);
  --radius:    12px;
  --radius-sm: 8px;
  --font:      'Inter', system-ui, sans-serif;
  --pixel:     'Press Start 2P', monospace;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,106,0,.4);
}
.btn-orange:hover {
  background: var(--orange-d);
  box-shadow: 0 6px 20px rgba(255,106,0,.5);
}

.btn-green {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.btn-green:hover {
  background: #1db854;
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
}

.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  background: var(--off-white);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

.btn-lg { padding: 18px 36px; font-size: 1.1rem; border-radius: 10px; }

/* ── LABELS / TAGS ───────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.label-orange { background: #fff4ee; color: var(--orange); }
.label-navy   { background: var(--navy); color: #fff; }
.label-green  { background: var(--green-l); color: var(--green); }

/* ── SECTION SPACING ─────────────────────────────── */
section { padding: 80px 0; }

.section-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}
.centered { text-align: center; }
.centered .section-sub { margin: 0 auto; }

/* ── DIVIDER ─────────────────────────────────────── */
hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 38px; }
.nav-logo-text {
  font-family: var(--pixel);
  font-size: .6rem;
  color: var(--navy);
  line-height: 1.6;
}
.nav-logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-actions { display: flex; gap: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 8px 0 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--muted);
  padding: 12px 24px;
  transition: color .2s, background .2s;
}
.mobile-menu a:hover { color: var(--navy); background: var(--off-white); }
.mobile-menu .m-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 24px 4px;
}

/* ── HERO ────────────────────────────────────────── */
#hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d6e 100%);
  padding: 40px 0 0;
  overflow: hidden;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.hero-content { padding-bottom: 80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,106,0,.15);
  border: 1px solid rgba(255,106,0,.4);
  color: #ffb347;
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.8); }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title .orange { color: var(--orange); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.hero-trust-item svg { flex-shrink: 0; }

.hero-visual {
  position: relative;
  align-self: flex-end;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
}
.phone-frame {
  background: #111;
  border-radius: 38px;
  padding: 12px;
  border: 3px solid #333;
  position: relative;
}
.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 9/19;
  position: relative;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #111;
  border-radius: 12px;
  z-index: 2;
}

.pos-badge {
  position: absolute;
  bottom: 40px;
  right: -40px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.pos-badge-icon { font-size: 1.6rem; }
.pos-badge-text { display: flex; flex-direction: column; }
.pos-badge-title { font-size: .75rem; font-weight: 700; color: var(--navy); }
.pos-badge-sub   { font-size: .7rem;  color: var(--green); font-weight: 600; }

.savings-badge {
  position: absolute;
  top: 60px;
  left: -50px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(255,106,0,.4);
  min-width: 160px;
}
.savings-badge-num  { font-size: 1.5rem; font-weight: 900; line-height: 1; }
.savings-badge-text { font-size: .72rem; opacity: .85; margin-top: 2px; }

/* ── SAVINGS BANNER ──────────────────────────────── */
.savings-bar {
  background: var(--orange);
  padding: 18px 24px;
}
.savings-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  text-align: center;
}
.savings-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.savings-stat-num  { font-size: 1.6rem; font-weight: 900; color: #fff; line-height: 1; }
.savings-stat-label{ font-size: .78rem; color: rgba(255,255,255,.8); font-weight: 600; margin-top: 2px; }
.savings-divider { width: 1px; height: 40px; background: rgba(255,255,255,.3); }

/* ── PROBLEM ─────────────────────────────────────── */
#problem { background: var(--off-white); }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.compare-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.compare-card.bad  { border-top: 4px solid var(--red); }
.compare-card.good { border-top: 4px solid var(--green); }

.compare-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.compare-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.compare-tag {
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.compare-card.bad  .compare-tag { background: var(--red-l);   color: var(--red);   }
.compare-card.good .compare-tag { background: var(--green-l); color: var(--green); }

.compare-items { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--text);
}
.ci-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.compare-card.bad  .ci-icon { background: var(--red-l);   color: var(--red);   }
.compare-card.good .ci-icon { background: var(--green-l); color: var(--green); }

/* ── FEATURES ────────────────────────────────────── */
#features { background: #fff; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: #fff4ee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.feature-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── SHOWCASE ────────────────────────────────────── */
#showcase { background: var(--navy); }
#showcase .section-title { color: #fff; }
#showcase .section-sub   { color: rgba(255,255,255,.65); }
#showcase .section-eyebrow { color: var(--orange); }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.showcase-card {
  background: var(--navy-l);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s, box-shadow .25s;
}
.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.showcase-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0,0,0,.3);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.sc-dots { display: flex; gap: 6px; }
.sc-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.sc-dots span:nth-child(1) { background: #ff5f56; }
.sc-dots span:nth-child(2) { background: #ffbd2e; }
.sc-dots span:nth-child(3) { background: #27c93f; }
.sc-label {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  font-weight: 600;
  margin-left: 4px;
}

.showcase-img-wrap {
  position: relative;
  overflow: hidden;
}
.showcase-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .4s;
}
.showcase-card:hover .showcase-img-wrap img { transform: scale(1.03); }

.showcase-card-body {
  padding: 24px;
}
.showcase-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.showcase-card-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* POS portrait image */
.showcase-img-wrap.portrait img {
  height: 400px;
  object-position: center;
}

/* ── PRICING ─────────────────────────────────────── */
#pricing { background: var(--off-white); }

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  max-width: 700px;
  margin: 48px auto 0;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--orange);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-d));
}

.pricing-label {
  display: inline-block;
  background: #fff4ee;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pricing-headline {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.pricing-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.pricing-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.pi-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-l);
  color: var(--green);
  font-size: .82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
}

.pricing-disclaimer {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 20px;
}

.pricing-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ── CONTACT ─────────────────────────────────────── */
#contact {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2d6e 100%);
  padding: 80px 0;
  text-align: center;
}
#contact .section-title  { color: #fff; }
#contact .section-eyebrow{ color: var(--orange); }
#contact .section-sub    { color: rgba(255,255,255,.65); margin: 0 auto 48px; }

.contact-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 32px 36px;
  text-align: center;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  min-width: 220px;
}
.contact-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.contact-card.wa  { border-color: rgba(37,211,102,.4); }
.contact-card.call{ border-color: rgba(255,106,0,.4); }

.cc-icon  { font-size: 2.2rem; display: block; margin-bottom: 10px; }
.cc-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.contact-card.wa   .cc-title { color: #25D366; }
.contact-card.call .cc-title { color: var(--orange); }
.cc-num   { font-size: 1.15rem; font-weight: 800; color: #fff; display: block; }
.cc-hint  { font-size: .78rem; color: rgba(255,255,255,.45); display: block; margin-top: 6px; }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: #060b1c;
  padding: 32px 24px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 30px; }
.footer-logo span { font-family: var(--pixel); font-size: .45rem; color: rgba(255,255,255,.4); }
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.8; }
.footer-copy a { color: var(--orange); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: #fff; }

/* ── COVERAGE MAP ────────────────────────────────── */
#coverage { background: var(--navy); }
#coverage .section-title  { color: #fff; }
#coverage .section-eyebrow{ color: var(--orange); }
#coverage .section-sub    { color: rgba(255,255,255,.6); }

.map-wrapper { text-align: center; margin-top: 48px; }

.map-frame {
  display: inline-block;
  position: relative;
  border: 1px solid rgba(255,106,0,.25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,106,0,.08),
    0 0 40px rgba(255,106,0,.1),
    inset 0 0 60px rgba(6,9,26,.6);
}

.map-frame svg {
  display: block;
  width: min(360px, 90vw);
  height: auto;
}

/* CRT scanlines overlay */
.map-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,.12) 3px,
    rgba(0,0,0,.12) 4px
  );
  pointer-events: none;
  z-index: 2;
}

.map-legend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  margin-top: 16px;
}
.map-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px var(--orange);
}

/* ── FLOATING WA ─────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wa-bubble {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: floatBounce 3s ease-in-out infinite;
}
.wa-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.65);
}
@keyframes floatBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.wa-tooltip {
  background: var(--navy);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  box-shadow: var(--shadow);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner     { grid-template-columns: 1fr; gap: 40px; }
  .hero-content   { padding-bottom: 40px; }
  .hero-visual    { display: none; }
  .compare-grid   { grid-template-columns: 1fr; }
  .showcase-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .savings-divider { display: none; }
  .pricing-card { padding: 32px 24px; }
}

@media (max-width: 520px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .pricing-btns { flex-direction: column; align-items: stretch; }
  .pricing-btns .btn { justify-content: center; }
  .contact-cards { flex-direction: column; align-items: center; }
  .contact-card  { width: 100%; max-width: 320px; }
}
