/* ============================================================
   02line.online — Main Stylesheet
   Professional Mobile Network Style
   Google Ads Policy Compliant
   ============================================================ */

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

:root {
  --primary: #0A0A3C;
  --primary-light: #12125C;
  --accent: #00C2FF;
  --accent-dark: #0099CC;
  --accent2: #7B2FBE;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --muted: #6B7280;
  --border: #E5E7EB;
  --surface: #F9FAFB;
  --surface2: #F3F4F6;
  --green: #059669;
  --green-bg: #ECFDF5;
  --green-bdr: #6EE7B7;
  --warn-bg: #FFFBEB;
  --warn-bdr: #FCD34D;
  --warn-text: #92400E;
  --red: #DC2626;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ─── DISCLAIMER BAR ─── */
.disclaimer-bar {
  background: var(--warn-bg);
  border-bottom: 2px solid var(--warn-bdr);
  padding: 9px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--warn-text);
  font-weight: 600;
  line-height: 1.4;
}
.disclaimer-bar a {
  color: var(--warn-text);
  text-decoration: underline;
  font-weight: 700;
}

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  font-size: 12.5px;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: #fff; text-decoration: none; }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-right { display: flex; gap: 20px; align-items: center; }
.top-bar-badge {
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
}

/* ─── NAVIGATION ─── */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}
.navbar .container {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}
.nav-logo {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
  flex-shrink: 0;
}
.nav-logo .dot { color: var(--accent); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-menu a {
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover { background: var(--surface); color: var(--text); text-decoration: none; }
.nav-menu a.active { color: var(--primary); font-weight: 600; }
.nav-menu .has-mega { position: relative; }
.nav-menu .mega-icon { font-size: 10px; margin-left: 3px; transition: transform var(--transition); }
.nav-menu .has-mega:hover .mega-icon { transform: rotate(180deg); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone-link:hover { color: var(--accent-dark); text-decoration: none; }
.btn-nav {
  background: var(--primary);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: background var(--transition);
}
.btn-nav:hover { background: var(--primary-light); text-decoration: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
}
.mobile-menu a:hover { background: var(--surface); text-decoration: none; }
.mobile-menu.open { display: flex; }

/* ─── HERO SECTION ─── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #1a1a6e 100%);
  color: #fff;
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,194,255,0.15);
  border: 1px solid rgba(0,194,255,0.4);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero h1 .highlight { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-hero-primary {
  background: var(--accent);
  color: var(--primary);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 15px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary:hover { background: #00AADE; text-decoration: none; transform: translateY(-2px); }
.btn-hero-outline {
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); text-decoration: none; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.hero-trust-item .icon { font-size: 18px; }
.hero-trust-item strong { color: #fff; font-weight: 700; }

/* Hero phone mockup area */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 0;
}
.hero-card-stack {
  position: relative;
  width: 340px;
}
.hero-main-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 16px;
}
.hero-plan-name { font-size: 13px; color: var(--accent); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.hero-plan-price { font-size: 48px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; }
.hero-plan-price span { font-size: 20px; font-weight: 500; }
.hero-plan-sub { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.hero-plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hero-plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.85); }
.hero-plan-features li .check { color: var(--accent); font-size: 16px; flex-shrink: 0; }
.hero-badge-card {
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-badge-card .big-num { font-size: 28px; font-weight: 900; }
.hero-badge-card .label { font-size: 13px; font-weight: 600; line-height: 1.3; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.trust-item .ti { font-size: 22px; color: var(--primary); }
.trust-item strong { color: var(--text); display: block; font-size: 14px; }
.trust-item span { font-size: 12px; }

/* ─── SECTION GENERAL ─── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--primary); color: #fff; }
.section-surface { background: var(--surface); }
.section-title { font-size: clamp(24px, 4vw, 36px); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 10px; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 600px; margin-bottom: 48px; line-height: 1.6; }
.section-dark .section-sub { color: rgba(255,255,255,0.65); }
.section-dark .section-title { color: #fff; }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}
.section-dark .eyebrow { color: var(--accent); }

/* ─── PLAN CARDS ─── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.plan-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.plan-card:hover { border-color: var(--accent-dark); box-shadow: var(--shadow); transform: translateY(-3px); }
.plan-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
}
.plan-card .popular-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.plan-card .plan-type {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.plan-card .plan-price {
  font-size: 44px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.plan-card .plan-price sup { font-size: 22px; vertical-align: super; }
.plan-card .plan-period { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.plan-card .price-note {
  background: var(--warn-bg);
  border: 1px solid var(--warn-bdr);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 12px;
  color: var(--warn-text);
  margin-bottom: 20px;
  line-height: 1.5;
}
.plan-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.plan-features li .feat-icon { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.plan-features li .feat-label { line-height: 1.4; }
.plan-features li .feat-label small { display: block; color: var(--muted); font-size: 12px; }
.plan-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--primary);
  color: #fff;
  padding: 13px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: all var(--transition);
}
.plan-cta:hover { background: var(--primary-light); text-decoration: none; }
.plan-card.featured .plan-cta { background: var(--accent); color: var(--primary); }
.plan-card.featured .plan-cta:hover { background: var(--accent-dark); color: #fff; }

/* ─── FEATURES / WHY US ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover { border-color: var(--accent-dark); box-shadow: var(--shadow-sm); }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--primary);
  padding: 50px 0;
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-item .stat-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-item .stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ─── REVIEWS ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.review-stars { color: #F59E0B; font-size: 18px; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; }
.review-source { font-size: 12px; color: var(--muted); }
.review-source a { color: var(--muted); text-decoration: underline; }
.reviews-trust-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.reviews-trust-note a { color: var(--primary); font-weight: 600; }

/* ─── HOW IT WORKS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 60px; height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
.step-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-item p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; margin-bottom: 14px; letter-spacing: -0.8px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.cta-phone-list a { color: #fff; font-weight: 700; }
.phone-label-tag {
  display: inline-block;
  font-size: 11px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 2px 8px;
  margin-left: 4px;
  font-weight: 600;
}

/* ─── INFO BANNER (auth notice) ─── */
.info-banner {
  background: var(--green-bg);
  border: 1.5px solid var(--green-bdr);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: #064E3B;
  line-height: 1.6;
  margin: 24px 0;
}
.info-banner .info-icon { font-size: 22px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.info-banner strong { font-weight: 700; display: block; margin-bottom: 3px; font-size: 15px; }

/* ─── FOOTER ─── */
footer {
  background: #0A0A2E;
  color: rgba(255,255,255,0.65);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo { font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -1px; margin-bottom: 14px; }
.footer-logo .dot { color: var(--accent); }
.footer-tagline { font-size: 13.5px; line-height: 1.7; margin-bottom: 18px; color: rgba(255,255,255,0.55); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,0.6); margin-bottom: 9px; transition: color var(--transition); }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 13px; }
.footer-contact-item .icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); display: inline; }
.footer-contact-item a:hover { color: #fff; }
.phone-tag-footer {
  display: inline-block;
  font-size: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 1px 7px;
  margin-left: 4px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0 0 24px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #fff; text-decoration: none; }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-reg { font-size: 11.5px; color: rgba(255,255,255,0.35); margin-top: 12px; line-height: 1.6; }

/* ─── PAGE HERO ─── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 56px 0 48px;
}
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb span { color: rgba(255,255,255,0.9); }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -1px; margin-bottom: 10px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 600px; }

/* ─── FAQ ─── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  color: var(--text);
  transition: background var(--transition);
}
.faq-q:hover { background: var(--surface); }
.faq-q .arrow { font-size: 12px; color: var(--muted); transition: transform var(--transition); flex-shrink: 0; }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-a.open { display: block; }

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 18px;
}
.contact-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.contact-card .c-icon { font-size: 22px; }
.contact-info-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14px; }
.contact-info-row a { color: var(--primary); font-weight: 600; }
.contact-info-row .tag { font-size: 11px; background: var(--surface2); border: 1px solid var(--border); border-radius: 20px; padding: 2px 9px; color: var(--muted); font-weight: 600; margin-left: 4px; }
.map-placeholder {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  gap: 10px;
}
.map-placeholder .map-icon { font-size: 40px; color: var(--primary); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; font-size: 14px; }
.hours-row { display: contents; }
.hours-day { color: var(--muted); }
.hours-time { font-weight: 600; }

/* ─── SERVICES / PLANS PAGE ─── */
.service-section { margin-bottom: 60px; }
.service-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.service-icon-big {
  width: 60px; height: 60px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.service-header-text h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.service-header-text .from-price { font-size: 15px; color: var(--muted); }
.service-header-text .from-price strong { color: var(--primary); font-size: 20px; }
.service-body { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.service-features-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.service-features-list li { display: flex; align-items: center; gap: 9px; font-size: 14px; }
.service-features-list li .chk { color: var(--green); font-size: 16px; }

/* ─── ABOUT PAGE ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent2) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  color: #fff;
}
.about-img .store-emoji { font-size: 80px; margin-bottom: 16px; }
.about-img p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.6; }
.about-text h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 900; margin-bottom: 18px; letter-spacing: -0.8px; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.value-item { background: var(--surface); border-radius: var(--radius); padding: 18px; border: 1px solid var(--border); }
.value-item .v-icon { font-size: 24px; margin-bottom: 8px; }
.value-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.value-item p { font-size: 13px; color: var(--muted); }

/* ─── UTILITIES ─── */
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.text-muted { color: var(--muted); }
.text-sm { font-size: 13px; }
.font-bold { font-weight: 700; }
.green { color: var(--green); }

/* ─── PRICE DISCLAIMER ─── */
.price-disclaimer {
  background: var(--warn-bg);
  border: 1px solid var(--warn-bdr);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 12.5px;
  color: var(--warn-text);
  line-height: 1.6;
  margin-top: 10px;
}
.price-disclaimer strong { font-weight: 700; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .service-features-list { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
}
@media (max-width: 640px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 0; }
  .hero h1 { letter-spacing: -0.5px; }
  .values-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
