/* ============================================
   KuwaitConnect — style.css
   Kuwait Telecom Guide — Teal & Gold Theme
   ============================================ */

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

/* ---- VARIABLES ---- */
:root {
  --primary:     #007A6E;
  --primary-dark:#005a51;
  --primary-light:#00a896;
  --accent:      #C8A951;
  --accent-dark: #a88a38;
  --dark:        #0A1628;
  --text:        #374151;
  --text-light:  #6B7280;
  --border:      #E5E7EB;
  --bg:          #F6FAFA;
  --bg-alt:      #EAF5F4;
  --white:       #FFFFFF;
  --success:     #10B981;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,122,110,0.10);
  --shadow-lg:   0 12px 48px rgba(0,122,110,0.18);
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font:        'Inter', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
ul { list-style: none; }

/* ---- MARQUEE BAR ---- */
.marquee-bar {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0.92;
}
.marquee-track span::before {
  content: '●';
  color: var(--accent);
  font-size: 8px;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,122,110,0.07);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,122,110,0.3);
}
.nav-logo-text { font-size: 20px; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; }
.nav-logo-text span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--primary); }
.btn-nav {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(200,169,81,0.3);
}
.btn-nav::after { display: none !important; }
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,169,81,0.4); }

/* ---- BURGER ---- */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 15px; font-weight: 500; color: var(--text); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn-nav-mobile { display: block; margin-top: 12px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: white; text-align: center; padding: 12px; border-radius: 8px; font-weight: 600; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 15px; cursor: pointer; border: none; transition: var(--transition); text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: white; box-shadow: 0 6px 20px rgba(0,122,110,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,122,110,0.45); color: white; }
.btn-accent { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: white; box-shadow: 0 6px 20px rgba(200,169,81,0.35); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,169,81,0.45); color: white; }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; }
.btn-outline-dark { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: white; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1628 0%, #005a51 55%, #007A6E 100%);
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.25; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,22,40,0.93) 0%, rgba(0,90,81,0.78) 55%, rgba(0,122,110,0.3) 100%); }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,169,81,0.2); border: 1px solid rgba(200,169,81,0.5);
  color: #e2c77a; padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 20px; backdrop-filter: blur(6px);
}
.hero-badge::before { content: '🇰🇼'; font-size: 16px; }
.hero h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; color: white; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
.hero h1 span { color: #e2c77a; }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.trust-number { font-size: 26px; font-weight: 800; color: white; line-height: 1; }
.trust-label { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* Hero visual cards */
.hero-visual { display: flex; flex-direction: column; gap: 12px; }
.hero-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg);
  padding: 20px 24px; display: flex; align-items: center; gap: 16px;
  transition: var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,0.15); transform: translateX(4px); }
.hero-card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.ic-teal  { background: rgba(0,168,150,0.4); }
.ic-gold  { background: rgba(200,169,81,0.4); }
.ic-green { background: rgba(16,185,129,0.4); }
.hero-card-info { flex: 1; }
.hero-card-name { font-size: 15px; font-weight: 700; color: white; margin-bottom: 2px; }
.hero-card-desc { font-size: 13px; color: rgba(255,255,255,0.65); }
.hero-card-price { font-size: 16px; font-weight: 800; color: #e2c77a; white-space: nowrap; }

/* ---- STATS BAR ---- */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 4px 24px rgba(0,122,110,0.06); }
.stats-grid { max-width: 1200px; margin: 0 auto; padding: 36px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; padding: 20px; border-radius: var(--radius); background: var(--bg); transition: var(--transition); }
.stat-item:hover { background: var(--bg-alt); transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-number { font-size: 36px; font-weight: 800; color: var(--primary); letter-spacing: -1px; line-height: 1; margin-bottom: 6px; }
.stat-number span { color: var(--accent); }
.stat-label { font-size: 14px; color: var(--text-light); font-weight: 500; }

/* ---- SECTION COMMONS ---- */
section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--dark); line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-title span { color: var(--primary); }
.section-sub { font-size: 17px; color: var(--text-light); max-width: 580px; line-height: 1.7; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ---- OPERATORS (main content) ---- */
.operators-section { background: var(--bg); }
.operator-full-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  overflow: hidden;
  margin-bottom: 32px;
}
.operator-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.operator-full-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 32px 36px;
  border-bottom: 1px solid var(--border);
}
.operator-logo-big {
  width: 90px; height: 90px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; font-weight: 800; color: white;
  flex-shrink: 0;
}
.op-zain     { background: linear-gradient(135deg, #E20074, #b0005a); }
.op-ooredoo  { background: linear-gradient(135deg, #e60014, #a3000e); }
.op-stc      { background: linear-gradient(135deg, #7B1FA2, #4a0080); }
.op-virgin   { background: linear-gradient(135deg, #CC0000, #800000); }

.operator-header-info { flex: 1; }
.operator-brand { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.operator-tagline { font-size: 16px; color: var(--text-light); margin-bottom: 10px; }
.operator-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.op-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--bg-alt); color: var(--primary);
  font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 100px;
  border: 1px solid rgba(0,122,110,0.2);
}
.operator-header-rating { text-align: center; }
.big-rating { font-size: 52px; font-weight: 800; color: var(--primary); line-height: 1; }
.big-stars { font-size: 20px; color: #e2c77a; letter-spacing: -2px; margin-bottom: 4px; }
.rating-label { font-size: 12px; color: var(--text-light); font-weight: 500; }

.operator-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.op-section {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
}
.op-section:last-child { border-right: none; }
.op-section-title { font-size: 13px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.spec-row:last-child { border-bottom: none; }
.spec-key { color: var(--text-light); }
.spec-val { font-weight: 600; color: var(--dark); }
.plan-list li { font-size: 14px; color: var(--text); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.plan-list li::before { content: '✓'; color: var(--success); font-weight: 700; font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.plan-list li:last-child { border-bottom: none; }
.verdict-box { display: flex; flex-direction: column; gap: 12px; }
.verdict-good { background: rgba(16,185,129,0.08); border-radius: 8px; padding: 12px 14px; }
.verdict-bad  { background: rgba(239,68,68,0.07); border-radius: 8px; padding: 12px 14px; }
.verdict-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.verdict-good .verdict-title { color: var(--success); }
.verdict-bad  .verdict-title { color: #ef4444; }
.verdict-text { font-size: 13px; color: var(--text); line-height: 1.5; }

/* ---- COMPARISON TABLE ---- */
.compare-table-wrap { overflow-x: auto; margin-top: 0; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { background: var(--primary); color: white; padding: 14px 18px; font-size: 13px; font-weight: 700; text-align: left; }
.compare-table th:first-child { border-radius: 12px 0 0 0; }
.compare-table th:last-child { border-radius: 0 12px 0 0; }
.compare-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); font-size: 14px; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--bg); }
.compare-table .winner { color: var(--success); font-weight: 700; }
.compare-table td:first-child { font-weight: 600; color: var(--dark); }

/* ---- FEATURES ---- */
.features-section { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { padding: 32px 24px; border-radius: var(--radius-lg); background: var(--bg); text-align: center; transition: var(--transition); border: 2px solid transparent; }
.feature-card:hover { background: var(--bg-alt); border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { width: 64px; height: 64px; border-radius: 18px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 18px; box-shadow: 0 8px 24px rgba(0,122,110,0.25); }
.feature-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: white; border-radius: var(--radius-lg); padding: 32px 28px; border: 2px solid transparent; transition: var(--transition); }
.testimonial-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-stars { color: #e2c77a; font-size: 18px; margin-bottom: 16px; letter-spacing: -2px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; font-size: 18px; color: white; font-weight: 700; flex-shrink: 0; }
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--dark); }
.testimonial-role { font-size: 13px; color: var(--text-light); }
.verified-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; color: var(--success); background: rgba(16,185,129,0.1); padding: 2px 8px; border-radius: 100px; margin-top: 4px; }

/* ---- CTA BANNER ---- */
.cta-banner { background: linear-gradient(135deg, #0A1628 0%, var(--primary-dark) 50%, var(--primary) 100%); padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -40px; right: -40px; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-banner::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 240px; height: 240px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: center; position: relative; z-index: 2; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: white; line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.5px; }
.cta-inner p { font-size: 18px; color: rgba(255,255,255,0.80); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px 48px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-top: 14px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); font-size: 16px; transition: var(--transition); text-decoration: none; }
.social-link:hover { background: var(--primary); color: white; }
.footer-col-title { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; padding: 5px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-payments { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.payment-icon { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 5px 10px; display: flex; align-items: center; gap: 4px; font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ---- COOKIE BANNER ---- */
.cookie-banner { position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 520px; background: var(--dark); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 24px 28px; z-index: 9999; box-shadow: 0 16px 48px rgba(0,0,0,0.4); display: flex; flex-direction: column; gap: 16px; }
.cookie-banner.hidden { display: none; }
.cookie-banner h4 { font-size: 15px; font-weight: 700; color: white; }
.cookie-banner p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.cookie-banner p a { color: var(--accent); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-accept { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: white; border: none; padding: 10px 22px; border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); }
.cookie-accept:hover { opacity: 0.9; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); padding: 10px 18px; border-radius: 8px; font-size: 13px; cursor: pointer; transition: var(--transition); }
.cookie-decline:hover { border-color: rgba(255,255,255,0.4); color: white; }

/* ---- INNER PAGE HERO ---- */
.page-hero { background: linear-gradient(135deg, #0A1628 0%, var(--primary-dark) 60%, var(--primary) 100%); padding: 64px 0 56px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: -30px; right: -30px; width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: white; margin-bottom: 12px; letter-spacing: -0.5px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 560px; line-height: 1.6; }

/* ---- ABOUT ---- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 72px; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-text h2 { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.about-text p { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 72px; }
.value-card { background: var(--bg); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: var(--transition); }
.value-card:hover { background: var(--bg-alt); transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 40px; margin-bottom: 16px; }
.value-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.value-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); text-align: center; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 100%; height: 200px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 56px; color: white; font-weight: 800; }
.team-info { padding: 20px; }
.team-name { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: var(--bg); border-radius: var(--radius); padding: 24px; display: flex; align-items: flex-start; gap: 16px; transition: var(--transition); }
.contact-card:hover { background: var(--bg-alt); box-shadow: var(--shadow); }
.contact-card-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-card-label { font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-card-value { font-size: 15px; font-weight: 600; color: var(--dark); }
.contact-form { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.contact-form p { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: var(--font); color: var(--text); background: var(--bg); transition: var(--transition); outline: none; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(0,122,110,0.1); }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-checkbox input { margin-top: 3px; accent-color: var(--primary); width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; }
.form-checkbox label { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.form-checkbox label a { color: var(--primary); }
.btn-submit { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; border: none; border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; transition: var(--transition); font-family: var(--font); }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,122,110,0.35); }
.form-success { display: none; padding: 16px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); border-radius: var(--radius); text-align: center; color: var(--success); font-weight: 600; margin-top: 16px; }

/* ---- LEGAL ---- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 22px; font-weight: 700; color: var(--dark); margin: 36px 0 14px; }
.legal-content h3 { font-size: 17px; font-weight: 600; color: var(--dark); margin: 24px 0 10px; }
.legal-content p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { margin: 12px 0 18px 20px; }
.legal-content ul li { font-size: 15px; color: var(--text); margin-bottom: 8px; list-style: disc; line-height: 1.6; }
.legal-content a { color: var(--primary); }
.legal-date { font-size: 13px; color: var(--text-light); font-style: italic; margin-bottom: 32px; }
.legal-card { background: var(--bg-alt); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 20px; border-left: 4px solid var(--primary); }
.legal-card p { margin-bottom: 0; }

/* ---- FAQ ---- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--dark); cursor: pointer; gap: 12px; }
.faq-question:hover { color: var(--primary); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 300; color: var(--primary); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--primary); color: white; transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 18px; font-size: 15px; color: var(--text-light); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .operator-body { grid-template-columns: 1fr 1fr; }
  .op-section:nth-child(3) { border-right: none; border-top: 1px solid var(--border); grid-column: 1 / -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-intro { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .operator-full-header { grid-template-columns: auto 1fr; }
  .operator-header-rating { grid-column: 1 / -1; text-align: left; display: flex; gap: 16px; align-items: center; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .operator-full-header { grid-template-columns: 1fr; text-align: center; }
  .operator-logo-big { margin: 0 auto; }
  .operator-body { grid-template-columns: 1fr; }
  .op-section { border-right: none; border-bottom: 1px solid var(--border); }
  .op-section:last-child { border-bottom: none; }
  .hero-trust { gap: 16px; }
  .trust-divider { display: none; }
  .compare-table { min-width: 600px; }
}
