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

:root {
  --navy:    #020617;
  --navy2:   #0f172a;
  --navy3:   #1e293b;
  --accent:  #3b82f6;
  --accent2: #2563eb;
  --white:   #f8fafc;
  --grey:    #94a3b8;
  --card:    #0f172a;
  --border:  #334155;
  --radius:  8px;
  --shadow:  0 10px 15px -3px rgba(0,0,0,.1);
  --lake:      #0891b2;
  --lake2:     #0e7490;
  --lake-glow: rgba(8,145,178,.12);
  --lake-cyan: #67e8f9;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2,6,23,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
}

.nav-logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo span { color: var(--white); }
.nav-logo span span { color: var(--accent); }

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}

.nav-logo-icon img { width: 40px; height: 40px; object-fit: cover; }

.nav-links { display: flex; gap: 4px; list-style: none; }

.nav-links a {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--grey);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all .2s;
}

.nav-links a:hover { color: var(--white); background: var(--navy3); }
.nav-links a.active { color: var(--white); background: var(--navy3); }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  margin-left: 12px;
}
.nav-cta:hover { background: var(--accent2) !important; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
  z-index: 99;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-weight: 500;
  color: var(--grey);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.mobile-menu a:hover { background: var(--navy3); color: var(--white); }
.mobile-menu a.active { color: var(--accent); background: var(--navy3); }

/* ── SECTIONS ── */
section { padding: 80px 5%; }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

h1, h2, h3 { font-family: 'Inter', sans-serif; }

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 40px;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

p { color: var(--grey); margin-bottom: 16px; }

.highlight { color: var(--accent); }

.container { max-width: 1140px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s;
  white-space: nowrap;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent2); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

/* ── CARD ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s ease;
}

.card:hover { border-color: var(--accent); background: #111a2e; }

.card-icon {
  width: 46px;
  height: 46px;
  background: rgba(59,130,246,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  border: 1px solid rgba(59,130,246,.15);
}

/* ── HERO ── */
.hero {
  padding: 100px 5% 100px;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(59,130,246,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 20%, rgba(8,145,178,.05) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 50% 90%, rgba(8,145,178,.04) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,.08);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

.hero-visual { display: flex; justify-content: center; }

.hero-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.panel-dot { width: 10px; height: 10px; border-radius: 50%; }

.panel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(51,65,85,.5);
  font-size: .88rem;
}

.panel-item:last-child { border-bottom: none; }

.panel-status {
  font-size: .75rem;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}

.status-green { background: rgba(0,200,100,.12); color: #00c864; }
.status-blue  { background: rgba(59,130,246,.12); color: var(--accent); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 5%;
}

.stats-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.stat { text-align: center; }

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label { font-size: .85rem; color: var(--grey); }

/* ── DIVIDER ── */
.divider { width: 48px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 24px; }

/* ── CHECK LIST ── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--grey); font-size: .95rem; }
.check-list li::before { content: '\2192'; color: var(--accent); font-weight: 800; flex-shrink: 0; margin-top: 2px; }

/* ── AREAS STRIP ── */
.areas-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

.area-tag {
  background: rgba(59,130,246,.07);
  border: 1px solid rgba(59,130,246,.18);
  border-radius: 6px;
  padding: 8px 18px;
  font-size: .88rem;
  color: var(--accent);
  font-weight: 500;
}

/* ── CONTACT BAR ── */
.contact-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.contact-item-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item-label { font-size: .75rem; color: var(--grey); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-item-value { font-weight: 600; font-size: .95rem; color: var(--white); margin: 0; }

/* ── PRICING ── */
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all .3s ease;
}

.price-card.featured { border-color: var(--accent); background: #0d1829; }
.price-card:hover { border-color: var(--accent); background: #111a2e; }

.price-amount { font-size: 2.4rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.price-period { font-size: .85rem; color: var(--grey); }
.price-divider { height: 1px; background: var(--border); margin: 20px 0; }

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }

label { font-size: .85rem; font-weight: 500; color: var(--grey); }

input, select, textarea {
  background: #020617;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: border-color .2s;
  outline: none;
  width: 100%;
}

input:focus, select:focus, textarea:focus { border-color: var(--accent); }
textarea { resize: vertical; min-height: 120px; }
select option { background: var(--navy2); }

/* ── FOOTER ── */
footer {
  background: #020617;
  border-top: 1px solid var(--border);
  padding: 60px 5% 32px;
}

.footer-inner { max-width: 1140px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.footer-title { font-size: .85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-bottom: 16px; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--grey); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .82rem; color: var(--grey); margin: 0; }

.footer-tos-link {
  font-size: .82rem;
  color: var(--grey);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.footer-tos-link:hover { color: var(--accent); }

/* ── TERMS OF SERVICE PAGE ── */
.tos-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.tos-section h3 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 700;
}

/* ── PAGE BANNER ── */
.page-banner {
  padding: 64px 5% 48px;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(59,130,246,.06) 0%, transparent 65%);
  border-bottom: 1px solid var(--border);
}

.page-banner .container h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

/* ── TABLE ── */
.price-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.price-table th { background: var(--navy2); padding: 16px 20px; text-align: left; font-size: .75rem; text-transform: uppercase; color: var(--grey); border-bottom: 1px solid var(--border); }
.price-table td { padding: 16px 20px; border-bottom: 1px solid var(--border); color: var(--grey); font-size: .93rem; }
.price-table tr:hover td { background: rgba(59,130,246,.03); }
.price-table td:last-child { color: var(--accent); font-weight: 600; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }

.about-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }

.about-avatar {
  height: 220px;
  background: linear-gradient(135deg, var(--navy3) 0%, var(--navy2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-bottom: 1px solid var(--border);
}

.about-meta { padding: 24px; }
.about-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.about-role { color: var(--accent); font-size: .9rem; margin-bottom: 16px; }
.about-detail { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--grey); margin-bottom: 8px; }

.value-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color .2s;
}

.value-block:hover { border-color: var(--accent2); }
.value-num { font-size: 1.8rem; font-weight: 800; color: rgba(59,130,246,.2); line-height: 1; flex-shrink: 0; }

/* ── NOTICE BOX ── */
.notice {
  background: rgba(59,130,246,.05);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 32px;
}

.notice-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.notice p { color: var(--grey); margin: 0; font-size: .93rem; }

/* ── RESPONSIVE GRID HELPERS ── */
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-contact { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }

/* ── PRICE TABLE WRAPPER ── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── OKANAGAN SECTION ── */
.okanagan-section {
  background: linear-gradient(180deg, #010f18 0%, var(--navy2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.okanagan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.industry-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,.07);
  border: 1px solid rgba(59,130,246,.18);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: .85rem;
  color: var(--accent);
  font-weight: 500;
  transition: all .2s;
}

.industry-tag:hover {
  background: rgba(59,130,246,.13);
  border-color: rgba(59,130,246,.35);
}

.lake-scene {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(8,145,178,.2);
  box-shadow: 0 0 40px rgba(8,145,178,.08);
}

.ogopogo-hint {
  font-size: .75rem;
  color: rgba(148,163,184,.4);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
  letter-spacing: .5px;
}

/* Hero wave divider */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  pointer-events: none;
  overflow: hidden;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.from-left { transform: translateX(-32px); }
.reveal.from-right { transform: translateX(32px); }
.reveal.scale-in { transform: scale(0.92) translateY(16px); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── FADE ANIMATION ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 12px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 6px;
  color: var(--grey);
  font-weight: 500;
  font-size: .78rem;
  font-family: 'Inter', sans-serif;
  transition: all .2s;
  white-space: nowrap;
  line-height: 1;
}
.lang-btn.active {
  color: var(--white);
  background: var(--navy3);
  border-color: var(--border);
}
.lang-btn:hover:not(.active) { color: var(--white); }
.lang-sep {
  color: var(--border);
  font-size: .75rem;
  user-select: none;
  pointer-events: none;
}

/* ── PRICING PAGE ENHANCEMENTS ── */
.support-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}

.support-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all .3s ease;
  position: relative;
}
.support-card:hover { border-color: var(--accent); background: #111a2e; }
.support-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.support-card-icon {
  width: 52px; height: 52px;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.support-card-title { font-size: 1.2rem; font-weight: 700; color: var(--white); }
.support-pricing-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.support-pricing-main { font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.support-pricing-label { font-size: .85rem; color: var(--grey); }
.support-pricing-sub {
  font-size: .88rem;
  color: var(--grey);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.support-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(59,130,246,.06);
  border: 1px solid rgba(59,130,246,.15);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 20px;
  font-size: .875rem;
  color: var(--grey);
}
.support-note span { flex-shrink: 0; }

.travel-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.travel-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(51,65,85,.5);
  font-size: .88rem;
  color: var(--grey);
}
.travel-table tr:last-child td { border-bottom: none; }
.travel-table td:first-child { color: var(--white); font-weight: 500; }
.travel-table td:last-child { color: var(--accent); font-weight: 600; text-align: right; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all .3s ease;
  position: relative;
}
.plan-card:hover { border-color: var(--accent); background: #111a2e; }
.plan-card.plan-featured {
  border-color: var(--accent);
  background: #0d1829;
  transform: scale(1.02);
}

.plan-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.plan-name { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.plan-tagline { font-size: .83rem; color: var(--grey); margin-bottom: 20px; }
.plan-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 2px; }
.plan-price { font-size: 2.2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.plan-price-period { font-size: .85rem; color: var(--grey); }
.plan-price-tax { font-size: .78rem; color: var(--grey); margin-bottom: 20px; }
.plan-divider { height: 1px; background: var(--border); margin: 20px 0; }

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.commitment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
  text-align: center;
  transition: all .25s;
}
.commitment-card:hover { border-color: var(--accent); }
.commitment-card.best-value { border-color: rgba(59,130,246,.5); background: #0d1829; }

.commitment-term { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--grey); margin-bottom: 10px; }
.commitment-discount { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.commitment-desc { font-size: .82rem; color: var(--grey); }
.commitment-badge { font-size: .7rem; font-weight: 700; background: var(--accent); color: #fff; padding: 2px 10px; border-radius: 100px; display: inline-block; margin-top: 8px; }

.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.decision-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  transition: border-color .2s;
}
.decision-row:hover { border-color: var(--accent); }
.decision-scenario { font-size: .9rem; color: var(--white); font-weight: 500; flex: 1; }
.decision-answer {
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.decision-remote { background: rgba(59,130,246,.12); color: var(--accent); }
.decision-onsite { background: rgba(8,145,178,.12); color: #67e8f9; }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .grid-2col { grid-template-columns: 1fr; gap: 32px; }
  .grid-contact { grid-template-columns: 1fr; gap: 32px; }
  .support-type-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .okanagan-grid { grid-template-columns: 1fr; }
  .card[style*="grid-template-columns:auto 1fr"] { display: block !important; }
  .card[style*="grid-template-columns:auto 1fr"] .card-icon { margin-bottom: 16px !important; }
  .lang-switcher { margin-left: 8px; }
  .lang-btn { padding: 4px 8px; font-size: .74rem; }
}

@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.plan-featured { transform: none; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  section { padding: 48px 5%; }
  .hero { padding: 60px 5% 48px; }
  .page-banner { padding: 48px 5% 36px; }
  h1 { font-size: clamp(1.8rem, 8vw, 3.8rem); }
  .btn { padding: 14px 20px; font-size: .9rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .stats-bar .container { gap: 12px; }
  .stat-number { font-size: 1.6rem; }
  .price-amount { font-size: 2rem; }
  .commitment-grid { grid-template-columns: repeat(2, 1fr); }
  .decision-grid { grid-template-columns: 1fr; }
}
