/* ================================================================
   AI Voice Agents Pricing Page
   Skills Development Academy · Powered by Newo.ai
   ================================================================ */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────────────── */
:root {
  --navy:          #080f1e;
  --navy-2:        #0d1c35;
  --blue:          #1a3c6e;
  --teal:          #0d7377;
  --gold:          #c9a84c;
  --gold-2:        #e8c56a;
  --gold-3:        #f5d78e;
  --white:         #ffffff;

  --au-green:      #2a7d4f;
  --au-green-2:    #4ade80;
  --lk-red:        #8b1a1a;
  --lk-gold:       #d4a017;
  --lk-gold-2:     #f0bc3a;

  --glass-bg:      rgba(255,255,255,0.04);
  --glass-border:  rgba(255,255,255,0.09);

  --shadow-md:     0 8px 32px rgba(0,0,0,0.4);
  --shadow-gold:   0 0 48px rgba(201,168,76,0.14);

  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --radius-pill:   50px;

  --nav-height:    76px;
  --ease:          0.3s ease;
  --ease-fast:     0.18s ease;
}

/* ─── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── NAVIGATION ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(8,15,30,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  cursor: default;
}

.nav-logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.nav-brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.nav-brand-name span { color: var(--gold); }

.nav-brand-sub {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-switch {
  background: var(--gold);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-sm);
  transition: all var(--ease);
}

.nav-switch:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.nav-center {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 5px;
}

.nav-tab {
  padding: 9px 26px;
  border-radius: var(--radius-pill);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
  color: rgba(255,255,255,0.95);
  background: transparent;
  letter-spacing: -0.01em;
}

.nav-tab:hover:not(.active-au):not(.active-lk) {
  color: rgba(255,255,255,1);
  background: rgba(255,255,255,0.07);
}

.nav-tab.active-au {
  background: linear-gradient(135deg, #1e7d4a, #2a9d5c);
  color: white;
  box-shadow: 0 2px 12px rgba(30,125,74,0.4);
}

.nav-tab.active-lk {
  background: linear-gradient(135deg, #8b1a1a, #b52020);
  color: white;
  box-shadow: 0 2px 12px rgba(139,26,26,0.45);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: all var(--ease-fast);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.nav-cta:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.nav-cta:active { transform: translateY(0); }

/* ─── PAGES ──────────────────────────────────────────────────────── */
.page {
  display: none;
  padding-top: var(--nav-height);
  animation: fadeInPage 0.4s ease;
}

.page.active { display: block; }

@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 90px 48px 72px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-orb-1 {
  width: 680px;
  height: 420px;
  background: var(--teal);
  opacity: 0.2;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--gold);
  opacity: 0.09;
  top: 30px;
  right: 10%;
}

.au .hero-orb-1 { background: var(--au-green); opacity: 0.18; }
.lk .hero-orb-1 { background: var(--lk-red); opacity: 0.18; }

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-flag {
  display: block;
  font-size: 2.8rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.3));
}

.hero-country {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 18px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: dotPulse 2.5s infinite;
}

@keyframes dotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.75); }
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero h1 em { font-style: normal; color: var(--gold); }

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.78;
}

/* ─── STATS BAR ──────────────────────────────────────────────────── */
.stats-section {
  padding: 0 48px;
  max-width: 1240px;
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--ease);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }

.stat-value {
  font-family: 'Inter', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat-value span { color: var(--gold); }

.stat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ─── SECTION LAYOUT ─────────────────────────────────────────────── */
.section {
  padding: 88px 48px;
  max-width: 1240px;
  margin: 0 auto;
}

.section-header { margin-bottom: 44px; }

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
  max-width: 520px;
  line-height: 1.78;
}

/* ─── PRICING GRID ───────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
  align-items: start;
}

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  position: relative;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border-color: rgba(201,168,76,0.45);
  background: rgba(201,168,76,0.04);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured:hover {
  box-shadow: 0 20px 60px rgba(201,168,76,0.22);
  transform: translateY(-6px);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

.plan-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  line-height: 1.65;
  margin-bottom: 22px;
  min-height: 58px;
}

.plan-original {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-decoration: line-through;
  margin-bottom: 4px;
  min-height: 18px;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price .currency {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-top: 7px;
}

.plan-price .amount {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.plan-price .amount-custom { font-size: 2.2rem; }

.plan-price .period {
  font-size: 11.5px;
  color: rgba(255,255,255,0.95);
  align-self: flex-end;
  margin-bottom: 7px;
  margin-left: 2px;
}

.plan-discount {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.22);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.plan-units {
  font-size: 12.5px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
  line-height: 1.65;
}

.plan-units strong { color: rgba(255,255,255,1); }

.price-strikethrough {
  color: rgba(255,255,255,0.7);
  text-decoration: line-through;
}

.plan-btn {
  width: 100%;
  padding: 13px;
  border-radius: var(--radius-sm);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease-fast);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.plan-btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
}

.plan-btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

.plan-btn-secondary {
  background: rgba(255,255,255,0.07);
  color: white;
  border: 1px solid rgba(255,255,255,0.13);
}

.plan-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-1px);
}

.plan-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  margin-bottom: 22px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  line-height: 1.5;
}

.plan-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 1px;
  min-width: 16px;
  height: 16px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ─── UNIT EXPLAINER ─────────────────────────────────────────────── */
.unit-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 52px;
  position: relative;
  overflow: hidden;
}

.unit-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
}

.unit-box-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.unit-box-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.unit-box h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 12px;
}

.unit-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: border-color var(--ease-fast);
}

.unit-item:hover { border-color: rgba(255,255,255,0.16); }

.unit-item .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.unit-item .value {
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
}

/* ─── FEATURE CARDS ──────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 52px;
}

.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: border-color var(--ease), transform var(--ease), background var(--ease);
}

.feature-card:hover {
  border-color: rgba(201,168,76,0.22);
  transform: translateY(-3px);
  background: rgba(255,255,255,0.05);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 14px;
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.95);
  line-height: 1.68;
}

/* ─── SERVICE CARDS ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(278px, 1fr));
  gap: 18px;
  margin-bottom: 52px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--ease), transform var(--ease);
}

.service-card:hover {
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-3px);
}

.service-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(201,168,76,0.17);
  margin-bottom: 10px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.service-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  line-height: 1.68;
}

/* ─── INDUSTRIES ─────────────────────────────────────────────────── */
.industries-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 52px;
}

.industry-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--ease-fast);
}

.industry-tag:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

/* ─── CTA SECTION ────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, rgba(13,115,119,0.13), rgba(26,60,110,0.22));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  margin-bottom: 88px;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(13,115,119,0.1), transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

.cta-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
  position: relative;
}

.cta-section p {
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 36px;
  line-height: 1.75;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  border: none;
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease-fast);
  letter-spacing: -0.01em;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.28);
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--ease-fast);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.58);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 52px 48px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 18px;
  line-height: 1.6;
}

.footer-contact {
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  line-height: 1.9;
}

.footer-contact a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: color var(--ease-fast);
}

.footer-contact a:hover { color: var(--gold); }

.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  margin-top: 20px;
  line-height: 1.65;
  max-width: 560px;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.footer-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.95);
  text-align: center;
  white-space: nowrap;
  line-height: 1.5;
}

.footer-badge strong { color: rgba(255,255,255,1); }

/* ─── COUNTRY ACCENT OVERRIDES ───────────────────────────────────── */
/* Australia */
.au .hero-badge              { color: var(--au-green-2); border-color: rgba(74,222,128,0.18); }
.au .hero-badge-dot          { background: var(--au-green-2); }
.au .section-label           { color: var(--au-green-2); }
.au .section-label::before   { background: var(--au-green-2); }
.au .plan-features li::before { color: var(--au-green-2); background: rgba(74,222,128,0.1); }
.au .feature-card:hover      { border-color: rgba(74,222,128,0.22); }
.au .unit-item .label        { color: var(--au-green-2); }

/* Sri Lanka */
.lk .hero-badge              { color: var(--lk-gold-2); border-color: rgba(240,188,58,0.18); }
.lk .hero-badge-dot          { background: var(--lk-gold-2); }
.lk .section-label           { color: var(--lk-gold-2); }
.lk .section-label::before   { background: var(--lk-gold-2); }
.lk .plan-features li::before { color: var(--lk-gold-2); background: rgba(212,160,23,0.1); }
.lk .feature-card:hover      { border-color: rgba(212,160,23,0.22); }
.lk .unit-item .label        { color: var(--lk-gold-2); }
.lk .pricing-card.featured   { border-color: rgba(212,160,23,0.4); }

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.12s; }
.fade-up-delay-2 { transition-delay: 0.24s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .hero { padding: 72px 24px 60px; }
  .section { padding: 64px 24px; }
  .stats-section { padding: 0 24px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-badges { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .cta-section { padding: 56px 28px; }
}

@media (max-width: 640px) {
  .nav-brand-sub { display: none; }
  .nav-tab { padding: 8px 16px; font-size: 12.5px; }
  .nav-cta { padding: 9px 18px; }
  .hero h1 { font-size: 2.05rem; }
  .stat-value { font-size: 1.75rem; }
  .cta-section { padding: 44px 20px; }
  .cta-btns { flex-direction: column; }
  .btn-gold, .btn-outline { width: 100%; }
  footer { padding: 36px 24px; }
}

/* ─── CONTACT PAGE ───────────────────────────────────────────────── */
.contact-page .hero { padding: 70px 48px 52px; }

.contact-hero-content { max-width: 600px; margin: 0 auto; }

.contact-hero-content h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 40px;
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
  transition: all var(--ease-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-submit {
  margin-top: 8px;
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease-fast);
  letter-spacing: -0.01em;
}

.btn-submit:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
}

.form-message.error {
  display: block;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
}

/* Contact Info Card */
.contact-info-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}

.contact-info-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 14px;
  margin-top: 8px;
  letter-spacing: -0.01em;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info-icon {
  font-size: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info-item a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: color var(--ease-fast);
}

.contact-info-item a:hover {
  color: var(--gold);
}

.contact-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 28px 0;
}

.contact-steps {
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
}

.contact-steps li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
}

.contact-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

/* Contact Page Responsive */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info-card {
    order: -1;
  }
  
  .contact-page .hero { padding: 60px 24px 44px; }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form-card,
  .contact-info-card {
    padding: 28px 20px;
  }
}

/* ─── SAMPLE VIDEOS ──────────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 52px;
}
/* centers a single video instead of leaving it half-width */
.video-grid-single {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.video-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.video-card:hover {
  border-color: rgba(201,168,76,0.28);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;   /* if your clip is vertical/portrait, use 9 / 16 */
  background: #000;
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;      /* change to "contain" if the video gets cropped */
}
.video-body { padding: 22px 24px 26px; }
.video-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  margin-bottom: 12px;
}
.video-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 7px;
}
.video-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}