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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --accent: #6c63ff;
  --accent2: #00d4aa;
  --gray: #f5f5f7;
  --text: #1a1a2e;
  --muted: #6b7280;
  --card-bg: #ffffff;
  --border: #e5e7eb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent); color: white;
  padding: 0.5rem 1.25rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(108,99,255,0.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 100px 5% 60px;
  background: linear-gradient(160deg, #f0eeff 0%, #e8fdf8 50%, #ffffff 100%);
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,99,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(108,99,255,0.1); color: var(--accent);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.1;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem; color: var(--muted);
  max-width: 560px; margin: 0 auto 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--accent); color: white;
  padding: 0.85rem 2rem; border-radius: 10px;
  font-weight: 700; font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108,99,255,0.4); }

.btn-secondary {
  background: transparent; color: var(--text);
  padding: 0.85rem 2rem; border-radius: 10px;
  font-weight: 600; font-size: 1rem;
  border: 2px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats {
  display: flex; gap: 3rem; justify-content: center;
  margin-top: 3.5rem; flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--text); }
.stat-label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* SECTIONS */
section { padding: 80px 5%; }

.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 540px;
}

.section-head { margin-bottom: 3rem; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* SERVICES */
.services-bg { background: var(--gray); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  opacity: 0; transition: opacity 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(108,99,255,0.12), rgba(0,212,170,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}

.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }

.step { text-align: center; padding: 1.5rem; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white; font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.step p { font-size: 0.875rem; color: var(--muted); }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem; }

.why-card {
  padding: 1.5rem; border-radius: 14px;
  border: 1px solid var(--border);
  display: flex; gap: 1rem; align-items: flex-start;
}
.why-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.why-card h4 { font-weight: 700; margin-bottom: 0.3rem; }
.why-card p { font-size: 0.875rem; color: var(--muted); }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #4f46e5 50%, #0ea5e9 100%);
  color: white; text-align: center;
  padding: 80px 5%;
}
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 1rem; }
.cta-section p { font-size: 1.1rem; opacity: 0.88; max-width: 500px; margin: 0 auto 2rem; }
.btn-white {
  background: white; color: var(--accent);
  padding: 0.9rem 2.25rem; border-radius: 10px;
  font-weight: 700; font-size: 1rem;
  display: inline-block; transition: transform 0.2s;
}
.btn-white:hover { transform: translateY(-2px); }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem; align-items: start;
}

.contact-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 2rem; }

.contact-detail { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.25rem; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(108,99,255,0.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-detail-text span { display: block; font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-detail-text a, .contact-detail-text strong { font-weight: 600; color: var(--text); }

.form-embed {
  background: var(--gray);
  border-radius: 20px;
  overflow: hidden; min-height: 520px;
}
.form-embed iframe { width: 100%; height: 600px; border: none; }

/* FOOTER */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 3rem 5%;
  text-align: center;
}
.footer-logo {
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 0.75rem;
}
footer p { font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin: 1.25rem 0; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { font-size: 0.8rem; opacity: 0.45; margin-top: 1.5rem; }

/* ABOUT PAGE */
.about-hero {
  padding: 120px 5% 60px;
  background: linear-gradient(160deg, #f0eeff 0%, #e8fdf8 100%);
  text-align: center;
}
.about-body { max-width: 800px; margin: 0 auto; }
.about-body p { font-size: 1.05rem; color: var(--muted); margin-bottom: 1.25rem; }
.team-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.value-card { background: var(--gray); border-radius: 14px; padding: 1.5rem; text-align: center; }
.value-card .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.value-card h4 { font-weight: 700; margin-bottom: 0.4rem; }
.value-card p { font-size: 0.85rem; color: var(--muted); }

/* SERVICES PAGE */
.services-hero {
  padding: 120px 5% 60px;
  background: linear-gradient(160deg, #f0eeff 0%, #e8fdf8 100%);
  text-align: center;
}
.services-detail { display: grid; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.service-detail-card {
  background: white; border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start;
  transition: box-shadow 0.25s;
}
.service-detail-card:hover { box-shadow: 0 10px 40px rgba(108,99,255,0.1); }
.service-detail-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(108,99,255,0.12), rgba(0,212,170,0.12));
  display: flex; align-items: center; justify-content: center; font-size: 1.75rem;
}
.service-detail-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-detail-card p { font-size: 0.95rem; color: var(--muted); }
.service-tag {
  display: inline-block; background: rgba(108,99,255,0.08); color: var(--accent);
  padding: 3px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 600;
  margin-top: 0.75rem;
}

/* PAGE HERO generic */
.page-hero {
  padding: 120px 5% 60px;
  background: linear-gradient(160deg, #f0eeff 0%, #e8fdf8 100%);
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: white; padding: 1.5rem 5%;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
  }
  nav.open .nav-cta {
    display: block; margin: 0 5% 1rem; text-align: center;
  }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.5rem; }
}