/* ═══════════════════════════════════════════════════════════════════
   ODG AI — style.css
   Brand: deep space purple · gold · neon green #39ff14 (AI only)
═══════════════════════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  --bg:            #0a0011;
  --bg2:           #100020;
  --bg3:           #180030;
  --gold:          #FFB800;
  --gold-light:    #ffd060;
  --gold-subtle:   rgba(255, 184, 0, 0.08);
  --gold-border:   rgba(255, 184, 0, 0.2);
  --neon:          #39ff14;
  --text:          #f0e6ff;
  --text-muted:    #9b8ab0;
  --border:        rgba(255, 184, 0, 0.12);
  --radius:        16px;
  --radius-sm:     10px;
  --radius-pill:   100px;
  --shadow-gold:   0 0 40px rgba(255, 184, 0, 0.12);
  --transition:    0.25s ease;
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }

a { color: inherit; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.12; letter-spacing: -1px; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; }
h3 { font-size: 1.2rem; font-weight: 700; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #0a0011;
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(255, 184, 0, 0.28);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255, 184, 0, 0.4);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: border-color var(--transition), color var(--transition), background var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  background: var(--gold-subtle); transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: background 0.35s, backdrop-filter 0.35s, padding 0.35s, box-shadow 0.35s;
}
nav.scrolled {
  padding: 12px 0;
  background: rgba(10, 0, 17, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255, 184, 0, 0.1);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { width: 45px; height: 45px; object-fit: contain; }
.nav-logo-text {
  font-size: 1.2rem; font-weight: 900; color: var(--text); letter-spacing: -0.5px;
}
.nav-logo-text .ai {
  color: var(--neon);
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.5);
}
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  padding: 6px 12px; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.nav-links .nav-cta {
  color: #0a0011; background: var(--gold);
  font-weight: 700; padding: 8px 18px; border-radius: var(--radius-pill);
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: #0a0011; }
.nav-links .nav-lang {
  color: var(--gold); border: 1px solid var(--gold-border);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 5px 13px; border-radius: var(--radius-pill);
}
.nav-links .nav-lang:hover { background: var(--gold-subtle); color: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 0, 17, 0.98);
  z-index: 998;
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 80px 24px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text); text-decoration: none;
  font-size: 1.35rem; font-weight: 600;
  padding: 12px 32px; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-align: center; width: 100%;
}
.mobile-menu a:hover { color: var(--gold); background: var(--gold-subtle); }
.mobile-menu .nav-cta {
  color: #0a0011; background: var(--gold);
  font-weight: 700; border-radius: var(--radius-pill);
  margin-top: 16px;
}
.mobile-menu .nav-cta:hover { background: var(--gold-light); color: #0a0011; }
.mobile-menu .nav-lang {
  color: var(--gold); border: 1px solid var(--gold-border);
  font-size: 1rem; border-radius: var(--radius-pill);
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
#hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; overflow: hidden; padding: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://odgai.ca/hero.jpg') center / cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 0, 17, 0.92) 0%,
    rgba(10, 0, 17, 0.65) 55%,
    rgba(10, 0, 17, 0.78) 100%
  );
}
#hero-canvas {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.28);
  padding: 7px 16px; border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: blink 2.2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  font-size: 1.1rem; color: rgba(240, 230, 255, 0.78);
  margin-bottom: 36px; max-width: 520px; line-height: 1.75;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(240, 230, 255, 0.35);
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  animation: floatDown 2.4s ease-in-out infinite;
}
.hero-scroll-hint svg { width: 16px; opacity: 0.6; }
@keyframes floatDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  color: var(--text-muted); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto; line-height: 1.75;
}

/* ══════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════ */
#about { background: var(--bg2); }

.about-inner {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 72px; align-items: center;
}
.about-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.about-glow {
  position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,184,0,0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-pharaoh {
  width: 240px; height: 240px; object-fit: contain;
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 36px rgba(255, 184, 0, 0.35));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.about-text h2 { margin-bottom: 20px; }
.about-text p {
  color: var(--text-muted); line-height: 1.8;
  margin-bottom: 18px; font-size: 0.97rem;
}
.about-stats {
  display: flex; gap: 36px; margin-top: 36px; flex-wrap: wrap;
}
.about-stat { display: flex; flex-direction: column; gap: 4px; }
.about-stat-num {
  font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1;
}
.about-stat-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

/* ══════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════ */
#services {}

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 184, 0, 0.38);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), var(--shadow-gold);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-subtle); border: 1px solid var(--gold-border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ══════════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════════ */
#pricing { background: var(--bg2); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}
.pricing-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.45), var(--shadow-gold);
  border-color: rgba(255, 184, 0, 0.38);
}
.pricing-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 28px 72px rgba(255,184,0,0.16);
  transform: translateY(-8px);
}
.pricing-card.popular:hover {
  transform: translateY(-14px);
  box-shadow: 0 0 0 1px var(--gold), 0 36px 80px rgba(255,184,0,0.22);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0a0011;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 16px;
  border-radius: var(--radius-pill); white-space: nowrap;
}
.pricing-name {
  font-size: 1.05rem; font-weight: 700; color: var(--text-muted);
  margin-bottom: 4px;
}
.pricing-name span { color: var(--gold); }
.pricing-price { margin: 20px 0 0; }
.pricing-setup {
  font-size: 2.1rem; font-weight: 900; color: #fff; line-height: 1.1;
}
.pricing-setup small {
  font-size: 0.9rem; font-weight: 400; color: var(--text-muted);
}
.pricing-monthly {
  font-size: 0.9rem; color: var(--text-muted); margin-top: 6px;
}
.pricing-monthly strong { color: var(--gold); }
.pricing-divider {
  height: 1px; background: var(--border); margin: 24px 0;
}
.pricing-features {
  list-style: none; margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 11px;
}
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.5;
}
.pricing-features li::before {
  content: '✓'; color: var(--gold); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.pricing-cta {
  display: block; text-align: center;
  background: var(--gold-subtle); color: var(--gold);
  border: 1px solid var(--gold-border);
  font-weight: 700; font-size: 0.9rem;
  padding: 13px 24px; border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.pricing-cta:hover {
  background: var(--gold); color: #0a0011; transform: translateY(-1px);
}
.pricing-card.popular .pricing-cta {
  background: var(--gold); color: #0a0011;
}
.pricing-card.popular .pricing-cta:hover {
  background: var(--gold-light);
}

/* ══════════════════════════════════════════════════
   BOOK A CALL
══════════════════════════════════════════════════ */
#book {}

.book-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.book-info h2 { margin-bottom: 18px; }
.book-info p {
  color: var(--text-muted); line-height: 1.8; font-size: 0.97rem;
  margin-bottom: 32px;
}
.contact-list {
  display: flex; flex-direction: column; gap: 16px;
}
.contact-item {
  display: flex; align-items: center; gap: 14px;
  color: var(--text-muted); font-size: 0.95rem;
}
.contact-item a {
  color: var(--gold); text-decoration: none;
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--gold-light); text-decoration: underline; }
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--gold-subtle); border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.cal-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 48px 36px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.cal-card:hover {
  border-color: rgba(255,184,0,0.3); box-shadow: var(--shadow-gold);
}
.cal-icon { font-size: 3rem; margin-bottom: 18px; }
.cal-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.cal-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.cal-meta {
  display: flex; justify-content: center; gap: 20px;
  margin-top: 20px; flex-wrap: wrap;
}
.cal-meta span {
  font-size: 0.78rem; color: var(--text-muted);
  background: var(--bg3); border: 1px solid var(--border);
  padding: 4px 12px; border-radius: var(--radius-pill);
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
footer {
  background: #07000e; border-top: 1px solid rgba(255,184,0,0.08);
  padding: 56px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p {
  color: var(--text-muted); font-size: 0.88rem;
  max-width: 280px; line-height: 1.75;
}
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.88rem; transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.8rem; transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-8px); }
  .book-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .about-stats { gap: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.65rem; }
  .cal-card { padding: 32px 20px; }
}
