/* ============================================================
   SparkEdge — Global Stylesheet
   Fonts: Syne (display) + Outfit (body)
   Theme: Premium dark, electric orange accent
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --primary: #FC653A;
  --primary-glow: rgba(252, 101, 58, 0.35);
  --primary-dim: rgba(252, 101, 58, 0.12);
  --bg: #080808;
  --bg2: #0e0e0e;
  --card: #111111;
  --card2: #181818;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(252, 101, 58, 0.5);
  --text: #f5f5f5;
  --muted: #888;
  --muted2: #555;
  --success: #3ecf8e;
  --radius: 14px;
  --radius-sm: 8px;
  --nav-h: 70px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
}

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

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff9f7a);
  z-index: 10000;
  transition: width 0.1s linear;
  width: 0%;
}

/* ── Section base ── */
section { padding: 100px 8%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; width: 100%;
  height: var(--nav-h);
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 8, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: background 0.3s;
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.95);
}

/* Logo */
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  cursor: pointer;
  position: relative;
  z-index: 1200;
}

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

/* Spark container */
.spark-container {
  position: absolute;
  top: 50%; left: 50%;
  pointer-events: none;
}

.spark {
  position: absolute;
  width: 5px; height: 5px;
  background: radial-gradient(circle, #FC653A, transparent);
  border-radius: 50%;
  animation: fly 1.2s ease-out forwards;
}

@keyframes fly {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--x), var(--y)) scale(0); opacity: 0; }
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Nav CTA */
.nav-cta {
  padding: 10px 24px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px var(--primary-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(252,101,58,0.55);
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1200;
  padding: 4px;
}

.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.35s;
  display: block;
}

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px var(--primary-glow);
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(252,101,58,0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--primary);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary-dim);
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.section-title span { color: var(--primary); }

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 60px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, var(--primary-dim), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  background: var(--primary-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--primary);
  font-size: 1.4rem;
  transition: all 0.3s;
}

.card:hover .card-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.card p { color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; }

/* ============================================================
   HERO (home page specific)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 40px);
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(252,101,58,0.12), transparent 65%);
  border-radius: 50%;
  top: -150px; right: -200px;
  filter: blur(60px);
  animation: pulse-glow 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-bg-glow2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(252,101,58,0.07), transparent 65%);
  border-radius: 50%;
  bottom: 100px; left: -100px;
  filter: blur(60px);
  animation: pulse-glow 8s 2s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes pulse-glow {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

/* Grid decoration */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; max-width: 860px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dim);
  border: 1px solid rgba(252,101,58,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s ease both;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 26px;
  animation: fadeSlideUp 0.8s 0.1s ease both;
}

.hero-title .accent { color: var(--primary); }

/* Rotating word */
.word-rotate {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  overflow: hidden;
  height: 1.15em;
  min-width: 320px;
}

.word {
  position: absolute;
  left: 0; top: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.6s ease;
  color: var(--primary);
  white-space: nowrap;
}

.word.active { opacity: 1; transform: translateY(0); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 44px;
  animation: fadeSlideUp 0.8s 0.2s ease both;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 70px;
  animation: fadeSlideUp 0.8s 0.4s ease both;
}

.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.hero-stat-num span { color: var(--primary); }

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 8%;
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.trust-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.trust-inner p { color: var(--muted); font-size: 0.98rem; }
.trust-inner strong { color: var(--text); font-weight: 600; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 8% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(252,101,58,0.1), transparent);
  pointer-events: none;
}

/* Process steps */
.process-steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.4;
  line-height: 1;
  padding-top: 4px;
}

.step h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step p  { color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 42px 36px;
  position: relative;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(160deg, #181818, #111);
}

.featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pricing-card .price {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin: 20px 0 6px;
}

.pricing-card .price sup { font-size: 1.4rem; vertical-align: super; }
.pricing-card .price-note { color: var(--muted); font-size: 0.85rem; margin-bottom: 28px; }

.features-list { flex: 1; margin-bottom: 32px; }

.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--muted);
}

.features-list li:last-child { border-bottom: none; }

.features-list li i { color: var(--success); font-size: 0.9rem; }
.features-list li.dim { color: var(--muted2); }
.features-list li.dim i { color: var(--muted2); }

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
}

.project-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.project-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: var(--card2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--muted2);
  position: relative;
  overflow: hidden;
}

.project-thumb .overlay {
  position: absolute;
  inset: 0;
  background: rgba(252,101,58,0.15);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.project-card:hover .overlay { opacity: 1; }

.project-info { padding: 26px; }
.project-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.project-info p { color: var(--muted); font-size: 0.9rem; margin-bottom: 14px; }

.project-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.tag {
  padding: 4px 12px;
  background: var(--primary-dim);
  border: 1px solid rgba(252,101,58,0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
}

/* ============================================================
   CONTACT PAGE / FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 18px; }
.contact-info p { color: var(--muted); margin-bottom: 36px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--primary-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text strong { display: block; font-weight: 600; margin-bottom: 2px; }
.contact-item-text span { color: var(--muted); font-size: 0.92rem; }

/* Google Form embed */
.gform-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.gform-wrap iframe {
  width: 100%;
  border: none;
  display: block;
  min-height: 760px;
  background: transparent;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #111 0%, #0e0e0e 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(252,101,58,0.1), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
}

.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 18px; }
.cta-section p { color: var(--muted); max-width: 500px; margin: 0 auto 40px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 70px 8% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo { margin-bottom: 14px; display: block; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; max-width: 260px; }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  color: var(--muted2);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  background: #25D366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: float-bob 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg2); }

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }

.testimonial-card blockquote {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.8;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ff9f7a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.93rem; }
.author-role { color: var(--muted); font-size: 0.82rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
  gap: 16px;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-icon { background: var(--primary); border-color: var(--primary); color: #fff; transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 14px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 70px 6%; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0;
    width: 100%; height: calc(100vh - var(--nav-h));
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.3rem; }

  .menu-toggle { display: flex; }
  .nav-cta { display: none; }

  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .word-rotate { min-width: 200px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   ENHANCED RESPONSIVE — Additional improvements
   ============================================================ */

/* word-rotate fix for mobile */
.word-rotate {
  display: inline-flex;
  overflow: hidden;
  vertical-align: middle;
}

/* Section padding tighter on small mobile */
@media (max-width: 480px) {
  section { padding: 56px 5%; }
  .hero-title { font-size: clamp(1.75rem, 9vw, 2.4rem) !important; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.8rem; }
  .pricing-card { padding: 28px 22px; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links a { font-size: 1.15rem !important; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-float-cards { display: none; }
  .trust-inner { flex-direction: column; gap: 12px; }
  .team-mini-cards { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr !important; }
  .hero-ctas { flex-wrap: wrap; }
  .step { grid-template-columns: 44px 1fr; gap: 16px; }
}

/* Cal.com embed dark theme fix */
.cal-container { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; min-height: 680px; }
#my-cal-inline-30min, #team-cal-inline, #contact-cal-inline, #projects-cal-inline { color-scheme: dark; }

/* Smooth transitions on all interactive elements */
a, button { transition: all 0.25s ease; }

/* Better tap targets on mobile */
@media (max-width: 768px) {
  .btn { padding: 14px 26px; font-size: 0.95rem; }
  .nav-cta { display: none; }
  .quick-msg { padding: 15px 18px; }
}

/* Print styles */
@media print { .navbar, .whatsapp-float, #scroll-progress { display: none; } }
