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

:root {
  --bg:           #080c14;
  --surface:      rgba(255,255,255,0.04);
  --border:       rgba(255,255,255,0.09);
  --accent:       #c8f04d;
  --accent2:      #4df0c8;
  --text:         #e8eaf0;
  --muted:        rgba(232,234,240,0.45);
  --glass-bg:     rgba(255,255,255,0.055);
  --glass-border: rgba(255,255,255,0.12);
  --max-w:        1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ── GRADIENT ORBS ── */
.orb {
  position: fixed; border-radius: 50%;
  filter: blur(120px); pointer-events: none; z-index: 0;
}
.orb-1 { width: 600px; height: 600px; background: rgba(200,240,77,0.07);  top: -150px; left: -150px; }
.orb-2 { width: 500px; height: 500px; background: rgba(77,240,200,0.06);  bottom: 10%; right: -100px; }
.orb-3 { width: 400px; height: 400px; background: rgba(100,120,255,0.05); top: 50%; left: 40%; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,12,20,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.2rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.cont-test{
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.88rem; letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 0.55rem 1.4rem;
  background: var(--accent); color: #080c14;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.04em;
  border: none; cursor: pointer; border-radius: 4px;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── SECTIONS WRAPPER ── */
section { position: relative; z-index: 1; }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 4rem;
  padding-right: 4rem;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding-top: 10rem;
  padding-bottom: 6rem;
}
#hero .container {
  display: flex; flex-direction: column;
  align-items:center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.78rem; letter-spacing: 0.08em; color: var(--muted);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  opacity: 0; animation: fadeUp 0.8s 0.1s forwards;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); display: block;
}
h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 1000px;
text-align: center;
  opacity: 0; animation: fadeUp 0.9s 0.25s forwards;
}
h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  margin-top: 1.8rem;
  max-width: 500px;
  color: var(--muted);
  font-size: 1.05rem; line-height: 1.7;
  opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
}
.hero-actions {
  margin-top: 2.8rem;
  display: flex; gap: 1rem; align-items: center;
  opacity: 0; animation: fadeUp 0.9s 0.55s forwards;
}
.btn-primary {
  padding: 0.85rem 2rem;
  background: var(--accent); color: #080c14;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.04em;
  border: none; cursor: pointer; border-radius: 5px;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); }
.btn-ghost {
  padding: 0.85rem 2rem;
  background: transparent; color: var(--text);
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.04em;
  border: 1px solid var(--border); cursor: pointer; border-radius: 5px;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: var(--accent2); transform: translateY(-2px); }

.hero-stats {
  margin-top: 5rem;
  display: flex; gap: 3rem;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem; font-weight: 800; color: var(--accent);
}
.stat-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; margin-top: 0.2rem; }

/* ── SERVICES ── */
#services { padding-top: 8rem; padding-bottom: 8rem; }
.section-label {
  font-size: 0.75rem; letter-spacing: 0.15em;
  color: var(--accent2); text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.02em;
  max-width: 600px; margin-bottom: 3.5rem;
  line-height: 1.15;
}
.ready-to{
      font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.02em;
  max-width: 600px; margin-bottom: 3.5rem;
  line-height: 1.15;
  text-align: center;
  min-width: 670px;
}
.small-team{
    font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.02em;
  max-width: 600px; margin-bottom: 3.5rem;
  line-height: 1.15;
  text-align: center;
  min-width: 1072px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}
.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.2rem;
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  cursor: default;
}
.service-card:hover {
  border-color: rgba(200,240,77,0.3);
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(200,240,77,0.1);
  border: 1px solid rgba(200,240,77,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.4rem;
}
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 0.7rem;
}
.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.service-tag {
  display: inline-block; margin-top: 1.2rem;
  padding: 0.3rem 0.8rem;
  background: rgba(77,240,200,0.08);
  border: 1px solid rgba(77,240,200,0.2);
  border-radius: 100px;
  font-size: 0.72rem; letter-spacing: 0.06em; color: var(--accent2);
}

/* ── PROCESS ── */
#process { padding-top: 8rem; padding-bottom: 8rem; background: rgba(255,255,255,0.015); }
.process-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex; gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  color: var(--accent); letter-spacing: 0.05em;
  min-width: 32px; padding-top: 2px;
}
.step-content h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem;
}
.step-content p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }
.process-visual {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  padding: 2.5rem;
  aspect-ratio: 1;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 1.5rem;
  position: relative; overflow: hidden;
}
.process-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 30%, rgba(200,240,77,0.08), transparent 70%);
}
.pv-ring {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(200,240,77,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: spin 20s linear infinite;
}
.pv-ring::after {
  content: '';
  position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.pv-inner {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(77,240,200,0.2);
  display: flex; align-items: center; justify-content: center;
  animation: spin 10s linear infinite reverse;
}
.pv-core {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(200,240,77,0.15);
  border: 1px solid rgba(200,240,77,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.pv-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.08em; color: var(--muted);
}

/* ── TEAM ── */
#team { padding-top: 8rem; padding-bottom: 8rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem; margin-top: 3.5rem;
}
.team-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px; overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s;
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(77,240,200,0.3); }
.team-avatar {
  height: 200px;
  background: linear-gradient(135deg, rgba(200,240,77,0.1), rgba(77,240,200,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative; overflow: hidden;
}
.team-avatar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to top, var(--bg), transparent);
}
.team-info { padding: 1.5rem; }
.team-info h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem;
}
.team-role { font-size: 0.8rem; color: var(--accent2); margin-bottom: 0.6rem; }
.team-info p { color: var(--muted); font-size: 0.85rem; line-height: 1.55; }

/* ── CONTACT ── */
#contact { padding-top: 8rem; padding-bottom: 8rem; }
.contact-inner {
  max-width: 700px; margin: 0 auto; text-align: center;
}
.contact-inner .section-label { justify-content: center; display: block; }
.contact-inner .section-title { margin: 0 auto 1.5rem; }
.contact-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 3rem; }
.contact-form {
  display: flex; flex-direction: column; gap: 1rem;
  text-align: left;
  justify-content: center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.78rem; letter-spacing: 0.05em; color: var(--muted); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; font-weight: 300;
  transition: border-color 0.2s;
  outline: none;
  backdrop-filter: blur(8px);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(232,234,240,0.25); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(200,240,77,0.5); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  margin-top: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--accent); color: #080c14;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.04em;
  border: none; cursor: pointer; border-radius: 8px;
  align-self: flex-start;
  transition: opacity 0.2s, transform 0.2s;
}
.form-submit:hover { opacity: 0.85; transform: translateY(-2px); }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.5rem; text-align: center; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1rem;
  color: var(--muted);
}
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 0.78rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.82rem; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════
   RESPONSIVE — mobile-first breakpoints
   xs  : < 480px   (small phones)
   sm  : 480–639px (large phones)
   md  : 640–899px (phablets / small tablets)
   lg  : 900–1199px(tablets / small laptops)
   xl  : ≥ 1200px  (desktops — base styles)
   ════════════════════════════════════════ */

/* ── TABLET & BELOW (< 900px) ── */
@media (max-width: 899px) {
  /* Nav */
  .nav-inner { padding: 1rem 1.5rem; }
  .nav-links { display: none; }

  /* Container horizontal padding */
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }

  /* Hero */
  #hero { padding-top: 8rem; padding-bottom: 4rem; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }

  /* Services */
  #services { padding-top: 5rem; padding-bottom: 5rem; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

  /* Process */
  #process { padding-top: 5rem; padding-bottom: 5rem; }
  .process-inner { grid-template-columns: 1fr; gap: 3rem; }
  .process-visual { display: none; }

  /* Team */
  #team { padding-top: 5rem; padding-bottom: 5rem; }

  /* Contact */
  #contact { padding-top: 5rem; padding-bottom: 5rem; }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .footer-links { justify-content: center; }
}

/* ── LARGE PHONES & PHABLETS (480–639px) ── */
@media (max-width: 639px) {
  /* Hero */
  #hero { padding-top: 7rem; padding-bottom: 3rem; }
  .hero-stats { gap: 1.5rem; margin-top: 3rem; }
  .stat-num { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .section-title { margin-bottom: 2rem; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }
  .team-avatar { height: 160px; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; text-align: center; }

  /* Process steps */
  .step { flex-direction: column; gap: 0.5rem; }
  .step-num { font-size: 0.7rem; }
}

/* ── SMALL PHONES (< 480px) ── */
@media (max-width: 479px) {
  /* Nav */
  .nav-inner { padding: 0.9rem 1rem; }
  .nav-logo { font-size: 1rem; }
  .nav-cta { padding: 0.45rem 1rem; font-size: 0.75rem; }

  /* Container */
  .container { padding-left: 1rem; padding-right: 1rem; }

  /* Hero */
  .hero-tag { font-size: 0.7rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-stats { flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
  .stat-num { font-size: 1.6rem; }

  /* Sections */
  #services, #process, #team, #contact {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  /* Section headings */
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); margin-bottom: 1.8rem; }

  /* Service cards */
  .service-card { padding: 1.5rem; }
  .service-icon { width: 40px; height: 40px; font-size: 1.1rem; margin-bottom: 1rem; }

  /* Team */
  .team-avatar { height: 130px; font-size: 2.8rem; }
  .team-info { padding: 1.1rem; }

  /* Contact */
  .contact-sub { font-size: 0.9rem; margin-bottom: 2rem; }
  .form-group input,
  .form-group textarea,
  .form-group select { padding: 0.75rem 0.85rem; font-size: 0.88rem; }

  /* Footer */
  .footer-inner { padding: 1.8rem 1rem; gap: 0.8rem; }
  .footer-links { gap: 1rem; flex-wrap: wrap; justify-content: center; }
}

/* ── VERY SMALL PHONES (< 360px) ── */
@media (max-width: 359px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hero-actions .btn-ghost { display: none; }
  h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .service-card { padding: 1.2rem; }
}