@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #ff6b1a;
  --primary-dark: #e54e00;
  --primary-light: #ffa05a;
  --primary-glow: rgba(255, 107, 26, 0.35);

  --accent: #ffb800;
  --accent-soft: #fff4d6;

  --dark: #0a1628;
  --dark-2: #112340;
  --dark-3: #1a3158;
  --navy: #0d2645;

  --text: #1f2937;
  --text-light: #5b6471;
  --text-mute: #8993a4;

  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-alt: #f1f5f9;

  --border: #e2e8f0;
  --border-soft: #eef2f7;

  --success: #10b981;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ea756;

  --shadow-xs: 0 1px 2px rgba(10,22,40,0.04);
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.06);
  --shadow: 0 8px 24px rgba(10,22,40,0.08);
  --shadow-lg: 0 16px 48px rgba(10,22,40,0.12);
  --shadow-glow: 0 12px 32px var(--primary-glow);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --font: 'Noto Sans Georgian', system-ui, -apple-system, sans-serif;
  --header-h: 76px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--ease);
  --transition-slow: 0.5s var(--ease-out);

  --grad-primary: linear-gradient(135deg, #ff6b1a 0%, #ff8c42 50%, #ffb800 100%);
  --grad-dark: linear-gradient(135deg, #0a1628 0%, #112340 50%, #1a3158 100%);
  --grad-hero: linear-gradient(135deg, #0a1628 0%, #0d2645 40%, #1a3158 100%);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--primary-dark); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 900px;
}

section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(255, 107, 26, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { letter-spacing: -0.025em; }

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 6px 20px var(--primary-glow);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--primary-glow);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .container { padding: 0 18px; }
}
