/* ============================================================
   LingaRise Landing Page — Brand-matched styles
   Colours: Teal #1A8C7A | Orange #E06030 | Light BG #EEF1F5
   ============================================================ */

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

:root {
  --teal:        #008080;
  --teal-light:  #22AB95;
  --teal-pale:   #E6F4F1;
  --orange:      #E06030;
  --orange-pale: #FBF0EB;
  --brand-grad:  linear-gradient(90deg, #008080 0%, #30A080 40%, #E06030 100%);
  --bg:          #EEF1F5;
  --bg-white:    #FFFFFF;
  --text:        #1A1A2E;
  --text-muted:  #6B7280;
  --border:      #DDE3EC;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.09);
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; }

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

/* ---- Utility colours ---- */
.text-teal   { color: var(--teal); }
.text-orange { color: var(--orange); }
.font-bold   { font-weight: 700; }

/* Brand gradient — used wherever "LingaRise" appears as inline text */
.brand-gradient-text {
  display: inline-block !important;
  background: linear-gradient(90deg, #008080 0%, #30A080 40%, #E06030 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  font-weight: 700 !important;
}

.text-gradient {
  background: linear-gradient(90deg, var(--teal) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 241, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  mix-blend-mode: darken;
}

.header-logo {
  width: 75px;
  height: 75px;
  margin-right: -2px;
  transform: scale(1.15);
  transform-origin: center;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.header-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--teal); }

.store-badge svg {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease;
}

.store-badge:hover svg {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.21);
}

.btn-nav {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(0, 128, 128, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-nav:hover {
  background: var(--teal-light) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0, 128, 128, 0.4);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 50px 0 50px;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.25;
  margin-bottom: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.line-block {
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

/* ---- Store badges ---- */
.hero-store-badges {
  margin-bottom: 2.4rem;
}

.play-logo-badge {
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease;
}

.play-logo-badge:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.play-logo-img {
  height: 28px;
  width: auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--bg-white);
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 128, 128, 0.3);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 128, 128, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--teal); }

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.avatars { display: flex; }

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  margin-right: -8px;
}

.chat-window {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--border);
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.chat-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #F5F7FA;
  border-bottom: 1px solid var(--border);
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red      { background: #FF5F57; }
.dot.amber    { background: #FFBD2E; }
.dot.green-dot { background: #28CA41; }

.chat-title-label {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.chat-body {
  padding: 20px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 85%;
}

.chat-msg.ai {
  background: var(--bg);
  color: var(--text);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.chat-msg.user {
  background: var(--teal);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  position: relative;
}

.pron-badge {
  position: absolute;
  top: -22px;
  right: 0;
  background: #2AC07A;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.ai-with-mascot {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding-left: 0;
  background: transparent !important;
}

.mascot-blob {
  width: 52px;
  height: 58px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(26,140,122,0.3));
  animation: mascot-bounce 2.5s ease-in-out infinite;
}

@keyframes mascot-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40%       { transform: translateY(-6px) rotate(-3deg); }
  60%       { transform: translateY(-4px) rotate(2deg); }
}

.ai-with-mascot span {
  background: var(--bg);
  padding: 12px 14px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
}

/* ============================================================
   FEATURES
   ============================================================ */
.section-features { padding: 100px 0; background: var(--bg-white); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.feat-icon svg { width: 22px; height: 22px; }
.feat-icon-teal  { background: var(--teal-pale); color: var(--teal); }
.feat-icon-orange { background: var(--orange-pale); color: var(--orange); }

/* ============================================================
   METHOD
   ============================================================ */
.section-method { padding: 100px 0; background: var(--bg); }
.method-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.premium-method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.pm-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-white);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pm-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-pale);
}

.pm-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-pale);
  border-radius: 8px;
  color: var(--teal);
}

.pm-icon svg {
  width: 22px;
  height: 22px;
}

.pm-text {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.feedback-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   LANGUAGES
   ============================================================ */
.section-languages { padding: 100px 0; background: var(--bg-white); }
.languages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.lang-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.lang-flag {
  width: 48px;
  height: 36px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  margin-bottom: 0.4rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.lang-card:hover .lang-flag {
  transform: scale(1.15);
}

.lang-card strong {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 700;
}

.lang-card .view-details {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.lang-card:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-md); 
  border-color: var(--teal-pale); 
}

.lang-card:hover .view-details {
  opacity: 1;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lang-modal {
  background: #333333; /* Dark background from screenshot */
  width: 90%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-overlay.active .lang-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 5px;
}

.modal-close:hover {
  color: #fff;
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #A8E6CF 0%, #FFD3B6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  position: relative;
}

.modal-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  border-radius: 2px;
}

.modal-fact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.fact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fact-icon {
  color: #A8E6CF; /* Teal/mint from screenshot */
  margin-top: 2px;
}

.fact-icon svg {
  width: 20px;
  height: 20px;
}

.fact-content {
  flex: 1;
}

.fact-label {
  font-size: 0.85rem;
  color: #A8E6CF;
  margin-bottom: 2px;
}

.fact-value {
  font-size: 1rem;
  color: #FFD3B6; /* Orange/peach from screenshot */
  font-weight: 500;
}

.modal-didyouknow {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  color: var(--text);
  box-shadow: inset 4px 0 0 #FF6B6B; /* Left orange border */
}

.dyk-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.dyk-text {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
}

.btn-start-lang {
  display: block;
  width: 100%;
  background: #1DB89A; /* Green button from screenshot */
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.btn-start-lang:hover {
  background: #169E83;
  transform: scale(1.02);
}

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.section-download { padding: 80px 0; background: var(--bg); }
.download-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.download-badges { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* explicitly removed any lingering img rules for badges to prevent overrides */

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 4rem; padding-bottom: 3rem; }
.footer-logo { margin-bottom: 1rem; }
.footer-brand .logo-icon { mix-blend-mode: darken; filter: none; }

.social-links { display: flex; gap: 1rem; }
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  transition: all 0.2s;
  text-decoration: none;
}
.social-icon:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-pale); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col h4 { font-size: 0.9rem; margin-bottom: 0.25rem; }
.footer-col a { text-decoration: none; font-size: 0.88rem; color: var(--text-muted); }
.footer-col a:hover { color: var(--teal); }

.footer-bottom { border-top: 1px solid var(--border); padding: 1.2rem 2rem; text-align: center; font-size: 0.82rem; color: var(--text-muted); }

/* Pricing page footer — matches main footer styling */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 60px 0 0; }
.site-footer .footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 4rem; padding-bottom: 3rem; }
.site-footer .footer-bottom { border-top: 1px solid var(--border); padding: 1.2rem 2rem; text-align: center; font-size: 0.82rem; color: var(--text-muted); }
.site-footer .logo-icon { mix-blend-mode: darken; filter: none; }
.pricing-hero .logo-icon { mix-blend-mode: darken; filter: none; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-hero { text-align: center; padding: 4rem 1rem 1rem; }
.pricing-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; line-height: 1.6; }

.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.5rem; font-weight: 500; font-size: 0.95rem; color: var(--text-muted); }
.billing-toggle .active { color: var(--text); font-weight: 600; }
.switch { position: relative; display: inline-block; width: 52px; height: 28px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #d1d5db; transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
input:checked + .slider { background-color: var(--teal); }
input:checked + .slider:before { transform: translateX(24px); }

.pricing-section { padding: 3rem 1rem 6rem; display: flex; justify-content: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 780px; margin: 0 auto; align-items: start; }

.pricing-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem 2rem; display: flex; flex-direction: column; position: relative; transition: transform 0.2s, box-shadow 0.2s; box-shadow: var(--shadow-sm); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pricing-card.gold-tier { border: 2px solid transparent; background: linear-gradient(var(--bg-white), var(--bg-white)) padding-box, var(--brand-grad) border-box; box-shadow: 0 8px 24px rgba(220,111,54,0.12); overflow: visible; }
.pricing-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); display: inline-block; background: var(--brand-grad); color: white; padding: 8px 20px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; white-space: nowrap; box-shadow: 0 4px 10px rgba(220,111,54,0.3); z-index: 1; }

.pricing-header h2 { font-size: 1.4rem; margin-bottom: 0.5rem; font-weight: 700; }
.pricing-header p { font-size: 0.85rem; color: var(--text-muted); min-height: 48px; line-height: 1.5; margin-bottom: 1.5rem; }

.pricing-price { font-size: 2.8rem; font-weight: 800; color: var(--text); display: flex; align-items: baseline; gap: 0.3rem; }
.pricing-price span { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }

.pricing-features { margin: 2rem 0; flex-grow: 1; display: flex; flex-direction: column; gap: 1rem; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text); line-height: 1.4; }
.icon-check { flex-shrink: 0; margin-top: 2px; }
.icon-cross { flex-shrink: 0; margin-top: 2px; }
.pricing-feature.disabled { color: var(--text-muted); opacity: 0.6; }

.pricing-card .btn-primary, .pricing-card .btn-ghost { width: 100%; justify-content: center; padding: 14px 24px; border-radius: 50px; font-size: 0.95rem; font-weight: 700; text-align: center; cursor: pointer; transition: all 0.2s; }
.pricing-card .btn-ghost { border: 2px solid var(--border); background: transparent; color: var(--text); }
.pricing-card .btn-ghost:hover { border-color: var(--teal); color: var(--teal); background: rgba(29, 184, 154, 0.05); }
.pricing-card.gold-tier .btn-primary { border: none; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { padding: 4rem 0 6rem; min-height: 60vh; }
.legal-container { max-width: 780px; }
.legal-container h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 0.5rem; }
.legal-updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 3rem; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.legal-section h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin: 1rem 0 0.5rem; }
.legal-section p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-section ul { margin: 0.5rem 0 0.75rem 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.legal-section li { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.legal-section a { color: var(--teal); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }

.cefr-copyright {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 0.4rem;
  line-height: 1.5;
}

/* ============================================================
   HERO PILLS (credibility badges)
   ============================================================ */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-pale);
  border: 1px solid rgba(0, 128, 128, 0.15);
  border-radius: 50px;
  letter-spacing: 0.02em;
}

/* ============================================================
   SECONDARY CTA BUTTON
   ============================================================ */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border: 2px solid var(--teal);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 128, 128, 0.3);
}

/* ============================================================
   HOW IT WORKS — 3-step section
   ============================================================ */
.section-howitworks {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--teal-pale) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   SECTION CONTRAST — alternate backgrounds
   ============================================================ */
.section-features { padding: 100px 0; background: var(--bg-white); }
.section-method {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(0, 128, 128, 0.04) 0%, rgba(0, 128, 128, 0.08) 100%);
}
.section-languages { padding: 100px 0; background: var(--bg-white); }
.section-download { padding: 80px 0; background: var(--bg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) { .languages-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .chat-window { max-width: 380px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .method-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .languages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    background: #EEF1F5;
    padding: 1rem 2rem;
    border-bottom: 1px solid #DDE3EC;
    gap: 1rem;
    z-index: 100;
  }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.2rem; }
  .hero-pills { justify-content: center; }
  .download-inner { text-align: center; justify-content: center; }
  .download-badges { justify-content: center; }
}