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

:root {
  --navy: #0A0F2C;
  --blue: #1A6BF0;
  --cyan: #00D4FF;
  --accent: #7B5EFF;
  --white: #ffffff;
  --border: rgba(255,255,255,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,15,44,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.site-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 10px;
}

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: white;
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
}

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

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-size: 13px; font-weight: 500;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  border-radius: 100px; color: white;
  box-shadow: 0 4px 20px rgba(26,107,240,0.4);
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.nav-toggle {
  display: none; background: none; border: none;
  color: white; font-size: 22px; cursor: pointer;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem 5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(26,107,240,0.15) 0%, transparent 70%);
  top: -200px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,94,255,0.1) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 6px 18px; border-radius: 100px;
  margin-bottom: 2rem; font-weight: 500;
  position: relative; z-index: 1;
}

.pulse {
  width: 7px; height: 7px;
  background: var(--cyan); border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -2px; margin-bottom: 1.5rem;
  max-width: 820px; position: relative; z-index: 1;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8; margin-bottom: 2.5rem;
  max-width: 520px; position: relative; z-index: 1;
}

.hero-btns {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}

.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff; border: none; border-radius: 100px; cursor: pointer;
  box-shadow: 0 8px 30px rgba(26,107,240,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(26,107,240,0.5); }

.btn-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  padding: 14px 32px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px; cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

.hero-stats {
  display: flex; gap: 3rem;
  margin-top: 4rem; padding-top: 3rem;
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
  flex-wrap: wrap; justify-content: center;
}

.stat { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px; font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ── SECTIONS ── */
.section { padding: 6rem 3rem; position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; }

#services { background: rgba(255,255,255,0.02); }
#contact { background: rgba(26,107,240,0.03); }

.section-tag {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--cyan); font-weight: 500; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 10px;
}
.section-tag::before {
  content: ''; width: 24px; height: 1px; background: var(--cyan);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; letter-spacing: -1px;
  margin-bottom: 1rem; line-height: 1.15;
}

.section-subtitle {
  font-size: 16px; color: rgba(255,255,255,0.45);
  max-width: 480px; line-height: 1.8; margin-bottom: 3rem;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
}

.service-card {
  background: rgba(10,15,44,0.95);
  padding: 2rem; transition: background 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,107,240,0.06), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { background: rgba(26,107,240,0.08); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 20px;
}
.icon-blue   { background: rgba(26,107,240,0.15); }
.icon-cyan   { background: rgba(0,212,255,0.12); }
.icon-purple { background: rgba(123,94,255,0.15); }
.icon-green  { background: rgba(0,230,150,0.12); }

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px; font-weight: 600;
  margin-bottom: 0.75rem; letter-spacing: -0.3px;
}
.service-card p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; }

.service-arrow {
  margin-top: 1.5rem; font-size: 18px;
  color: rgba(255,255,255,0.2);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.service-card:hover .service-arrow { color: var(--cyan); transform: translateX(4px); }

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-text p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.9; margin-bottom: 1.25rem; }

.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
}
.stat-card {
  background: rgba(255,255,255,0.03);
  padding: 2rem; text-align: center;
  transition: background 0.3s;
}
.stat-card:hover { background: rgba(26,107,240,0.08); }
.stat-card .num {
  font-family: 'Syne', sans-serif;
  font-size: 40px; font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card .lbl { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 6px; }

/* ── CONTACT ── */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: start;
}
.contact-info p { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.8; }
.contact-detail {
  display: flex; align-items: center; gap: 12px;
  margin-top: 2rem; font-size: 14px; color: rgba(255,255,255,0.6);
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; padding: 13px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; color: var(--white); width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none; border-color: var(--blue);
  background: rgba(26,107,240,0.08);
}
.contact-form select option { background: var(--navy); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .submit-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500; padding: 14px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff; border: none; border-radius: 100px; cursor: pointer;
  box-shadow: 0 8px 30px rgba(26,107,240,0.4);
  transition: transform 0.2s;
}
.contact-form .submit-btn:hover { transform: translateY(-2px); }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(0,0,0,0.3);
}
.site-footer p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-domain { color: var(--cyan) !important; }

/* ── FADE IN ANIMATION ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-header { padding: 1rem 1.5rem; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 65px; left: 0; right: 0;
    background: rgba(10,15,44,0.98);
    padding: 1.5rem; gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .hero { padding: 4rem 1.5rem 3rem; min-height: auto; }
  .hero h1 { font-size: 38px; letter-spacing: -1px; }
  .section { padding: 4rem 1.5rem; }
  .about-grid, .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .site-footer { flex-direction: column; gap: 8px; text-align: center; padding: 1.5rem; }
}
