/* ============================================
   PrairieLand Technologies — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* --- Variables --- */
:root {
  --cyan:        #00BFFF;
  --cyan-dim:    rgba(0, 191, 255, 0.10);
  --cyan-border: rgba(0, 191, 255, 0.22);
  --gold:        #F5A623;
  --gold-dim:    rgba(245, 166, 35, 0.10);
  --gold-border: rgba(245, 166, 35, 0.25);
  --green:       #00C864;
  --green-dim:   rgba(0, 200, 100, 0.10);
  --green-border:rgba(0, 200, 100, 0.25);
  --bg-base:     #0d0f14;
  --bg-card:     #131822;
  --bg-mid:      #0e1620;
  --bg-hero:     #0a1018;
  --text-primary:   #e8edf5;
  --text-secondary: #8a96a8;
  --text-muted:     #4a5568;
  --border-subtle:  rgba(255,255,255,0.06);
  --font-display: 'Rajdhani', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --transition: 0.2s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Utility --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.section-label.gold  { color: var(--gold); }
.section-label.green { color: var(--green); }
.section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-cyan         { background: var(--cyan);  color: #0d0f14; }
.btn-gold         { background: var(--gold);  color: #0d0f14; }
.btn-green        { background: var(--green); color: #0d0f14; }
.btn-outline-cyan { background: transparent; color: var(--cyan);  border: 1px solid var(--cyan); }
.btn-outline-gold { background: transparent; color: var(--gold);  border: 1px solid var(--gold); }
.btn-outline-green{ background: transparent; color: var(--green); border: 1px solid var(--green); }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }

/* ============================================
   NAVIGATION (with dropdowns)
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 15, 20, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cyan-border);
  height: 68px;
  display: flex;
  align-items: center;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 8px;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav links list */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-item { position: relative; }
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-item > a:hover { color: var(--text-primary); background: var(--border-subtle); }
.nav-item > a .ti-chevron-down { font-size: 12px; transition: transform var(--transition); }
.nav-item:hover > a .ti-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #131e2e;
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-md);
  padding-top: 8px !important;
  padding: 0.5rem;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.nav-item:hover .nav-dropdown { display: block; }

/* Invisible bridge covers the gap between trigger and dropdown so hover never breaks */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  display: none;
}
.nav-item:hover::after { display: block; }
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown a:hover { background: var(--cyan-dim); color: var(--text-primary); }
.nav-dropdown a i { color: var(--cyan); font-size: 16px; width: 18px; flex-shrink: 0; }
.nav-dropdown-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem 0.2rem;
}
.nav-dropdown hr { border: none; border-top: 1px solid var(--border-subtle); margin: 0.35rem 0; }

.nav-cta {
  background: var(--gold);
  color: #0d0f14 !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 0.5rem;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.88; background: var(--gold) !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   PAGE HERO (sub-pages)
   ============================================ */
.page-hero {
  background: var(--bg-hero);
  border-bottom: 1px solid var(--cyan-border);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, var(--cyan) 0, var(--cyan) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg, var(--cyan) 0, var(--cyan) 1px, transparent 1px, transparent 48px);
  opacity: 0.025;
  pointer-events: none;
}
.page-hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0,191,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-glow.gold-glow {
  background: radial-gradient(ellipse, rgba(245,166,35,0.07) 0%, transparent 70%);
}
.page-hero-glow.green-glow {
  background: radial-gradient(ellipse, rgba(0,200,100,0.07) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--cyan); }
.breadcrumb i { font-size: 12px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.page-hero h1 .accent       { color: var(--cyan); }
.page-hero h1 .accent-gold  { color: var(--gold); }
.page-hero h1 .accent-green { color: var(--green); }
.page-hero p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.page-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   HERO (homepage)
   ============================================ */
.hero {
  background: var(--bg-hero);
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--cyan-border);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, var(--cyan) 0, var(--cyan) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg, var(--cyan) 0, var(--cyan) 1px, transparent 1px, transparent 48px);
  opacity: 0.03;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0,191,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-logo-wrap { margin: 0 auto 1.75rem; width: 260px; height: 260px; }
.hero-logo-wrap img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(0,191,255,0.3));
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cyan-dim);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid var(--cyan-border);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.1rem;
}
.hero h1 .accent { color: var(--cyan); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
}
.hero-stat { padding: 0 2.5rem; border-right: 1px solid var(--border-subtle); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero-stat-label { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: rgba(0,191,255,0.04);
  border-bottom: 1px solid var(--cyan-border);
}
.trust-bar-inner { display: flex; justify-content: center; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.6rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border-right: 1px solid var(--border-subtle);
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--gold); font-size: 15px; }
.trust-item strong { color: var(--text-primary); font-weight: 600; }

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  transition: border-color var(--transition), transform var(--transition);
}
.service-card:hover { border-color: var(--cyan); transform: translateY(-3px); }
.service-card.gold-card { border-color: var(--gold-border); }
.service-card.gold-card:hover { border-color: var(--gold); }
.service-card.green-card { border-color: var(--green-border); }
.service-card.green-card:hover { border-color: var(--green); }
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--cyan-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon.gold-icon  { background: var(--gold-dim); }
.service-icon.green-icon { background: var(--green-dim); }
.service-icon i { color: var(--cyan); font-size: 22px; }
.service-icon.gold-icon  i { color: var(--gold); }
.service-icon.green-icon i { color: var(--green); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.service-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--cyan);
  margin-top: 0.75rem;
  font-weight: 600;
  transition: gap var(--transition);
}
.service-card.gold-card .service-link  { color: var(--gold); }
.service-card.green-card .service-link { color: var(--green); }
.service-card:hover .service-link { gap: 8px; }

/* ============================================
   DETAIL CARDS (sub-pages)
   ============================================ */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 2.5rem;
}
.detail-card {
  background: var(--bg-card);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
.detail-card:hover { border-color: var(--cyan); transform: translateY(-2px); }
.detail-card.gold  { border-color: var(--gold-border); }
.detail-card.gold:hover  { border-color: var(--gold); }
.detail-card.green { border-color: var(--green-border); }
.detail-card.green:hover { border-color: var(--green); }
.detail-card-icon {
  width: 52px;
  height: 52px;
  background: var(--cyan-dim);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.detail-card.gold  .detail-card-icon { background: var(--gold-dim); }
.detail-card.green .detail-card-icon { background: var(--green-dim); }
.detail-card-icon i { color: var(--cyan); font-size: 26px; }
.detail-card.gold  .detail-card-icon i { color: var(--gold); }
.detail-card.green .detail-card-icon i { color: var(--green); }
.detail-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.detail-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }
.detail-card ul { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 5px; }
.detail-card ul li {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.detail-card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.detail-card.gold  ul li::before { background: var(--gold); }
.detail-card.green ul li::before { background: var(--green); }

/* ============================================
   PRICING / TIER CARDS
   ============================================ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 2.5rem;
}
.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}
.tier-card:hover { transform: translateY(-3px); }
.tier-card.featured {
  border-color: var(--cyan);
  background: #111b2a;
}
.tier-card.featured-gold { border-color: var(--gold); background: #1a1608; }
.tier-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 1rem;
  width: fit-content;
}
.tier-badge.cyan  { background: var(--cyan-dim);  color: var(--cyan);  border: 1px solid var(--cyan-border); }
.tier-badge.gold  { background: var(--gold-dim);  color: var(--gold);  border: 1px solid var(--gold-border); }
.tier-badge.green { background: var(--green-dim); color: var(--green); border: 1px solid var(--green-border); }
.tier-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.tier-range {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}
.tier-card.featured-gold .tier-range { color: var(--gold); }
.tier-sub { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.5; }
.tier-features { flex: 1; display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; }
.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.tier-feature i { color: var(--cyan); font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.tier-card.featured-gold .tier-feature i { color: var(--gold); }

/* ============================================
   MSP SECTION (homepage)
   ============================================ */
.msp-section {
  background: var(--bg-mid);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.msp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.msp-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.msp-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  transition: border-color var(--transition), transform var(--transition);
}
.msp-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.msp-card i { color: var(--gold); font-size: 22px; margin-bottom: 0.5rem; display: block; }
.msp-card h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.msp-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.msp-text p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; margin-top: 0.75rem; }

/* ============================================
   WHY US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 2.5rem;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  transition: border-color var(--transition);
}
.why-card:hover { border-color: var(--cyan-border); }
.why-num { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: var(--cyan); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.why-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 0.75rem; }
.review-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; font-style: italic; flex: 1; margin-bottom: 0.75rem; }
.review-author { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); }
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.5rem;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.68rem;
  color: var(--cyan);
  width: fit-content;
}
.reviews-loading { grid-column: 1 / -1; text-align: center; color: var(--text-muted); font-size: 0.875rem; padding: 2rem; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--bg-mid);
  border-top: 1px solid var(--cyan-border);
  border-bottom: 1px solid var(--cyan-border);
  padding: 3rem 0;
  text-align: center;
}
.cta-banner h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.cta-banner p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.cta-banner .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   PROTECTION PLAN TEASER
   ============================================ */
.plan-teaser-wrap { padding: 0 0 5rem; }
.plan-teaser {
  background: var(--bg-mid);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.badge-soon {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid var(--gold-border);
  margin-bottom: 1rem;
}
.plan-teaser h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.plan-teaser p { font-size: 0.9rem; color: var(--text-secondary); max-width: 480px; margin: 0 auto 1.5rem; line-height: 1.7; }

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--bg-hero); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: start; }
.contact-phone {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1rem 0 1.25rem;
}
.contact-detail { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.9rem; }
.contact-detail i { color: var(--cyan); font-size: 17px; margin-top: 2px; flex-shrink: 0; width: 18px; }
.contact-detail-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }
.hours-table { width: 100%; margin-top: 0.25rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.8rem; padding: 5px 0; border-bottom: 1px solid var(--border-subtle); }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-muted); }
.hours-time { color: var(--text-secondary); font-weight: 500; }
.hours-note { font-size: 0.72rem; color: var(--cyan); margin-top: 0.4rem; }
.contact-form { background: var(--bg-card); border: 1px solid var(--cyan-border); border-radius: var(--radius-lg); padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-base);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.875rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--cyan); }
.form-field select { appearance: none; cursor: pointer; }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); }
.form-submit {
  background: var(--cyan);
  color: #0d0f14;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: none;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity var(--transition);
  margin-top: 4px;
}
.form-submit:hover { opacity: 0.88; }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.form-message { margin-top: 12px; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.85rem; display: none; }
.form-message.success { background: rgba(0,200,100,0.1); border: 1px solid rgba(0,200,100,0.3); color: #00c864; display: block; }
.form-message.error   { background: rgba(255,80,80,0.1);  border: 1px solid rgba(255,80,80,0.3);  color: #ff6060; display: block; }

/* ============================================
   MAP
   ============================================ */
.map-section iframe { display: block; width: 100%; height: 320px; border: none; filter: grayscale(40%) invert(90%) hue-rotate(180deg); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #0a0c10; border-top: 1px solid var(--border-subtle); padding: 2.5rem 0 1.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 0.75rem; }
.footer-logo img { height: 36px; width: 36px; object-fit: contain; border-radius: 6px; }
.footer-logo-text { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--cyan); }
.footer-brand p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.65; max-width: 220px; }
.footer-brand .footer-phone { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--cyan); margin-top: 0.75rem; display: flex; align-items: center; gap: 6px; }
.footer-col h4 { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.8rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--text-secondary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-copy { font-size: 0.72rem; color: var(--text-muted); }
.footer-tagline { font-size: 0.72rem; color: var(--text-muted); font-style: italic; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.55s ease forwards; }
.fade-up-1 { animation-delay: 0.08s; }
.fade-up-2 { animation-delay: 0.16s; }
.fade-up-3 { animation-delay: 0.24s; }
.fade-up-4 { animation-delay: 0.32s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .msp-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(13,15,20,0.98);
    border-bottom: 1px solid var(--cyan-border);
    padding: 1.5rem 2rem;
    gap: 0.25rem;
    z-index: 99;
  }
  .nav-links.open .nav-dropdown { display: flex; flex-direction: column; position: static; background: transparent; border: none; box-shadow: none; padding: 0 0 0 1rem; }
  .nav-toggle { display: flex; }
  .section-title { font-size: 1.75rem; }
  .hero h1 { font-size: 2.1rem; }
  .hero-stat { padding: 0 1.25rem; }
  .hero-logo-wrap { width: 180px; height: 180px; }
  .hero-logo-wrap img { width: 180px; height: 180px; }
}
@media (max-width: 520px) {
  .msp-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; padding: 0 1rem; }
  .trust-item { padding: 0.6rem 0.9rem; font-size: 0.72rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .hero-logo-wrap { width: 150px; height: 150px; }
  .hero-logo-wrap img { width: 150px; height: 150px; }
}
