/* SpaceSail — Global Styles */

:root {
  --primary: #0a1628;
  --accent: #1e6bff;
  --accent-light: #4d8fff;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f4f6fb;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── Header ─── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

nav { display: flex; align-items: center; gap: 8px; }

nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

nav a:hover, nav a.active {
  color: var(--accent);
  background: rgba(30,107,255,0.06);
}

.lang-toggle {
  display: flex;
  gap: 4px;
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 4px;
}

.lang-btn {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--accent);
  color: white;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(30,107,255,0.25);
}

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

.btn-outline:hover {
  background: rgba(30,107,255,0.06);
  transform: translateY(-1px);
}

/* ─── Container ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0f2960 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30,107,255,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.85);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero h1 .highlight { color: #5ba4ff; }

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Sections ─── */
section { padding: 80px 0; }

.section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ─── Feature Grid ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(30,107,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Services / Plans ─── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.plan-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}

.plan-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.plan-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--primary) 0%, #0f2960 100%);
  color: white;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 100px;
}

.plan-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-speed {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-card.featured .plan-speed { color: #5ba4ff; }

.plan-unit {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.plan-card.featured .plan-unit { color: rgba(255,255,255,0.6); }

.plan-features {
  list-style: none;
  margin-bottom: 28px;
}

.plan-features li {
  padding: 8px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.plan-card.featured .plan-features li { border-color: rgba(255,255,255,0.1); }

.plan-features li:last-child { border: none; }

.plan-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.plan-card.featured .plan-features li::before { color: #5ba4ff; }

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(30,107,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text { font-size: 15px; }
.contact-item-text strong { display: block; margin-bottom: 2px; }
.contact-item-text span { color: var(--text-muted); }

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: white;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,107,255,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── Stats ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.stat-item { text-align: center; }

.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #0f2960 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

/* ─── Footer ─── */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

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

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }

.footer-links a {
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover { color: white; }

.footer-bottom {
  padding-top: 24px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0f2960 100%);
  color: white;
  padding: 60px 0 50px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .header-inner { height: 60px; }
  nav a { padding: 7px 10px; font-size: 14px; }
  .hero { padding: 70px 0 60px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  nav { gap: 4px; }
  nav a { padding: 6px 8px; font-size: 13px; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ─── Lang visibility ─── */
.lang-ka .en { display: none; }
.lang-en .ka { display: none; }


/* ===== TIMELINE ===== */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 80px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, #3b82f6, #1e3a5f); }
.timeline-item { display: flex; gap: 2rem; position: relative; padding-bottom: 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year { min-width: 80px; font-size: 1.25rem; font-weight: 700; color: #3b82f6; padding-top: 0.2rem; text-align: right; padding-right: 1.5rem; }
.timeline-content { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 1.25rem 1.5rem; flex: 1; position: relative; }
.timeline-content::before { content: ''; position: absolute; left: -8px; top: 12px; width: 14px; height: 14px; background: #3b82f6; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 2px #3b82f6; }
.timeline-content h3 { font-size: 1rem; font-weight: 600; color: #0f172a; margin: 0 0 0.5rem; }
.timeline-content p { font-size: 0.9rem; color: #475569; margin: 0; line-height: 1.6; }

/* ===== COUNTRIES GRID ===== */
.countries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 2rem; }
.country-card { background: #fff; border: 2px solid #e2e8f0; border-radius: 12px; padding: 1.25rem; transition: transform 0.2s, box-shadow 0.2s; }
.country-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.country-card.active-service { border-color: #22c55e; }
.country-card.tested { border-color: #3b82f6; }
.country-card.future { border-color: #f59e0b; background: #fffbeb; }
.country-flag { font-size: 2rem; margin-bottom: 0.5rem; }
.country-name { font-size: 0.95rem; font-weight: 600; color: #0f172a; margin-bottom: 0.25rem; }
.country-card.active-service .country-status { color: #16a34a; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.5rem; }
.country-card.tested .country-status { color: #2563eb; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.5rem; }
.country-card.future .country-status { color: #d97706; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.5rem; }
.country-desc { font-size: 0.82rem; color: #64748b; margin: 0; line-height: 1.5; }

/* ===== DISCLAIMER ===== */
.disclaimer-section { background: #0f172a; }
.disclaimer-box { max-width: 860px; margin: 0 auto; text-align: center; }
.disclaimer-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.disclaimer-box h2 { color: #f1f5f9; margin-bottom: 1.5rem; }
.disclaimer-text p { color: #94a3b8; font-size: 0.92rem; line-height: 1.75; margin-bottom: 1rem; text-align: left; border-left: 3px solid #3b82f6; padding-left: 1rem; }
.disclaimer-text strong { color: #e2e8f0; }
.disclaimer-small { font-size: 0.8rem !important; color: #64748b !important; border-left-color: #334155 !important; }

/* ===== LOGO TEXT (footer) ===== */
.logo-text { color: #f1f5f9; font-weight: 700; font-size: 1.1rem; text-decoration: none; }
