/* ============================================================
   eCut Pro - Main Stylesheet
   Vanilla CSS3, no framework, no build step required.
   Structure:
     1. CSS Variables (theme colours)
     2. Reset & base
     3. Layout helpers
     4. Navigation
     5. Buttons
     6. Hero + mockup
     7. Section building blocks
     8. Cards / Grid
     9. Workflow timeline
    10. Testimonials, FAQ, Pricing
    11. Footer + Sticky CTA
    12. Contact form
    13. Custom cursor + mouse glow
    14. Animations
    15. Mobile responsive
   ============================================================ */

/* -----------------------------------------------------------
   1. THEME VARIABLES - Change colours here to rebrand the site
   ----------------------------------------------------------- */
:root {
  --bg: #05070d;              /* Page background */
  --bg-elev: #0a0f1a;         /* Elevated surface */
  --surface: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.7);
  --text-dim: rgba(255,255,255,0.5);

  --accent: #22c55e;          /* Primary green */
  --accent-2: #4ade80;        /* Lighter green */
  --accent-3: #10b981;        /* Emerald */
  --accent-dark: #16a34a;

  --red: #ef4444;
  --orange: #f97316;
  --yellow: #facc15;

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 40px rgba(34,197,94,0.35), 0 0 80px rgba(34,197,94,0.12);
  --transition: 0.3s cubic-bezier(0.22,1,0.36,1);
}

/* -----------------------------------------------------------
   2. RESET + BASE
   ----------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }

ul { list-style: none; }

summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

/* -----------------------------------------------------------
   3. LAYOUT HELPERS
   ----------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.container.narrow { max-width: 800px; }

.section { padding: 80px 0; position: relative; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head h2 { font-size: clamp(28px, 5vw, 48px); margin-bottom: 12px; }
.section-head p { color: var(--text-muted); font-size: 17px; }

.section-cta { text-align: center; margin-top: 40px; }

.accent { color: var(--accent-2); }
.text-red { color: #f87171; }
.text-gradient {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 50%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(34,197,94,0.10);
  color: var(--accent-2);
  border: 1px solid rgba(34,197,94,0.30);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}
.badge-red { background: rgba(239,68,68,0.10); color: #fca5a5; border-color: rgba(239,68,68,0.30); }
.badge-orange { background: rgba(249,115,22,0.10); color: #fdba74; border-color: rgba(249,115,22,0.30); }

.glass-pill {
  display: inline-flex;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(255,255,255,0.03));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(34,197,94,0.30);
  border-radius: 999px;
  color: var(--text);
}

/* -----------------------------------------------------------
   4. NAVIGATION
   ----------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  padding: 8px 0;
  background: rgba(5,7,13,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
}
.logo-icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-glow);
}
.logo-text { letter-spacing: -0.02em; }

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-cta { display: flex; gap: 8px; }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition);
}

/* -----------------------------------------------------------
   5. BUTTONS
   ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: inherit;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-full { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.1); color: #fff; }

.btn-outline {
  background: rgba(255,255,255,0.03);
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); color: var(--text); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); color: var(--text); }

.btn-whatsapp {
  background: rgba(34,197,94,0.10);
  border-color: rgba(34,197,94,0.35);
  color: var(--accent-2);
}
.btn-whatsapp:hover { background: rgba(34,197,94,0.20); color: var(--accent-2); }

/* -----------------------------------------------------------
   6. HERO SECTION
   ----------------------------------------------------------- */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 50% at 50% 0%, rgba(34,197,94,0.30) 0%, rgba(34,197,94,0) 60%),
    linear-gradient(rgba(34,197,94,0.08) 1px, transparent 1px) 0 0/44px 44px,
    linear-gradient(90deg, rgba(34,197,94,0.08) 1px, transparent 1px) 0 0/44px 44px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-title {
  font-size: clamp(36px, 7vw, 80px);
  line-height: 1.05;
  margin: 16px 0;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  color: var(--text-dim);
  font-size: 14px;
}

/* Hero product mockup */
.hero-mockup {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
}
.mockup-window {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(34,197,94,0.15);
}
.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #1a1f2e;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ef5350; }
.dot.yellow { background: #ffca28; }
.dot.green { background: #66bb6a; }
.mockup-title { margin-left: 12px; }

.mockup-body { display: flex; min-height: 380px; }
.mockup-sidebar {
  width: 200px;
  padding: 12px;
  background: #0f1420;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
}
.mockup-item {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  color: var(--text-muted);
  transition: background var(--transition);
}
.mockup-item:hover { background: rgba(34,197,94,0.15); color: var(--text); }

.mockup-canvas {
  flex: 1;
  padding: 24px;
  position: relative;
  background: linear-gradient(135deg, #0a0f1a, #0f1a2e);
}
.nest-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 4px;
  height: calc(100% - 30px);
  padding: 12px;
  background: #0d1524;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.nest-grid > div {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  animation: fadeIn 0.4s ease both;
}
.nest-grid > div.hot { background: rgba(34,197,94,0.25); border-color: rgba(34,197,94,0.5); }
.nest-grid > div.warm { background: rgba(74,222,128,0.15); border-color: rgba(74,222,128,0.35); }
.mockup-stats {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dim);
  padding-top: 8px;
  font-family: monospace;
}
.stat-green { color: #4ade80; }

/* Floating stats around the mockup */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-glow);
}
.float-left { left: -20px; top: 30%; }
.float-right { right: -20px; bottom: 20%; }
.float-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-2);
}
.float-label { font-size: 12px; color: var(--text-muted); }

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.stat {
  text-align: center;
  padding: 20px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-num {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 12px; color: var(--text-dim); margin-top: 4px; }

/* -----------------------------------------------------------
   7. CARDS / GRID
   ----------------------------------------------------------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: all var(--transition);
  display: block;
  color: var(--text);
  height: 100%;
}
.card:hover, .card-hover:hover {
  border-color: rgba(34,197,94,0.40);
  transform: translateY(-4px);
  color: var(--text);
}
.card-red { border-color: rgba(239,68,68,0.15); }
.card-red:hover { border-color: rgba(239,68,68,0.35); }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34,197,94,0.20), rgba(34,197,94,0.05));
  border: 1px solid rgba(34,197,94,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: transform var(--transition);
}
.card:hover .card-icon { transform: scale(1.1) rotate(-3deg); }
.icon-red { background: rgba(239,68,68,0.10); border-color: rgba(239,68,68,0.20); }

.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* Benefit cards (side icon layout) */
.benefit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}
.benefit-card:hover { border-color: rgba(34,197,94,0.40); transform: translateY(-4px); }
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}
.benefit-card h3 { font-size: 16px; margin-bottom: 4px; }
.benefit-card p { font-size: 13px; color: var(--text-muted); }

/* Industry tiles */
.industry-tile {
  display: flex; flex-direction: column; align-items: center;
  padding: 24px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}
.industry-tile:hover {
  border-color: rgba(34,197,94,0.40);
  transform: translateY(-4px);
}
.industry-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.20);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 10px;
  transition: all var(--transition);
}
.industry-tile:hover .industry-icon {
  transform: scale(1.1);
  background: rgba(34,197,94,0.20);
}
.industry-tile span { font-size: 14px; font-weight: 500; }

/* -----------------------------------------------------------
   9. WORKFLOW TIMELINE
   ----------------------------------------------------------- */
.workflow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  padding-top: 40px;
}
.workflow-line {
  position: absolute;
  top: 82px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,0.6), transparent);
}
.workflow-step {
  text-align: center;
  position: relative;
}
.step-num {
  position: absolute;
  top: -8px; right: 25%;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg);
}
.step-icon {
  width: 80px; height: 80px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(255,255,255,0.03));
  border: 1px solid rgba(34,197,94,0.30);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 12px;
  box-shadow: var(--shadow-glow);
}
.workflow-step h3 { font-size: 15px; margin-bottom: 4px; }
.workflow-step p { font-size: 12px; color: var(--text-muted); }

/* -----------------------------------------------------------
   10. TESTIMONIALS + FAQ + PRICING + VIDEO
   ----------------------------------------------------------- */
.video-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(34,197,94,0.30);
  box-shadow: var(--shadow-glow);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.testimonial {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: border-color var(--transition);
  height: 100%;
}
.testimonial:hover { border-color: rgba(34,197,94,0.30); }
.stars { color: var(--yellow); margin-bottom: 12px; }
.testimonial p { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }
.tm-author { display: flex; align-items: center; gap: 12px; }
.tm-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: #fff;
}
.tm-author strong { display: block; font-size: 14px; }
.tm-author span { display: block; font-size: 12px; color: var(--text-dim); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(34,197,94,0.30); }
.faq-item summary {
  padding: 18px 22px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--accent-2);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; color: var(--text-muted); font-size: 15px; }

/* Pricing */
.pricing-wrap { max-width: 600px; margin: 0 auto; }
.pricing-card {
  position: relative;
  background: linear-gradient(135deg, rgba(34,197,94,0.10), rgba(255,255,255,0.03));
  border: 1px solid rgba(34,197,94,0.40);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3), var(--accent-2));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
  filter: blur(20px);
}
.pricing-ribbon {
  position: absolute;
  top: 0; right: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0 0 0 12px;
}
.pricing-title { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.crown { font-size: 24px; }
.pricing-title h3 { font-size: 22px; }
.pricing-sub { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }
.pricing-price { display: flex; align-items: baseline; gap: 12px; }
.price-now { font-size: 56px; font-weight: 800; }
.price-old { font-size: 22px; color: var(--text-dim); text-decoration: line-through; }
.price-tag { color: #4ade80; margin: 8px 0 24px; font-size: 14px; }
.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-bottom: 28px;
}
.pricing-features li { color: var(--text-muted); font-size: 14px; }
.secure-badges {
  display: flex; justify-content: center; gap: 20px; margin-top: 14px;
  font-size: 12px; color: var(--text-dim); flex-wrap: wrap;
}

/* -----------------------------------------------------------
   11. FOOTER + STICKY CTA
   ----------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
  background: rgba(0,0,0,0.4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 14px; max-width: 400px; }
.social { display: flex; gap: 10px; margin-top: 20px; }
.social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social a:hover { background: rgba(34,197,94,0.20); color: var(--accent-2); }

.footer-col h4 { font-size: 14px; margin-bottom: 16px; color: var(--text); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: 14px; }
.footer-col ul li a:hover { color: var(--accent-2); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 13px;
}
.admin-login-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  font-size: 11px;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  opacity: 0.55;
  transition: opacity .2s ease, color .2s ease, border-color .2s ease;
}
.admin-login-link:hover {
  opacity: 1;
  color: var(--brand);
  border-color: var(--brand);
}

/* Sticky floating CTA */
.sticky-cta {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s var(--transition);
  pointer-events: none;
}
.sticky-cta.visible {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.whatsapp-fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); }

/* -----------------------------------------------------------
   12. PAGE HERO (for about / services / contact)
   ----------------------------------------------------------- */
.page-hero {
  padding: 140px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 50% 30%, rgba(34,197,94,0.20) 0%, rgba(34,197,94,0) 70%);
  pointer-events: none;
}
.page-title {
  font-size: clamp(32px, 6vw, 60px);
  margin: 10px 0 16px;
  line-height: 1.05;
}
.page-lead {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(255,255,255,0.03));
  border: 1px solid rgba(34,197,94,0.30);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.cta-box h2 { margin-bottom: 12px; font-size: 28px; }
.cta-box p { color: var(--text-muted); margin-bottom: 24px; }

/* -----------------------------------------------------------
   13. CONTACT FORM
   ----------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: flex-start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: rgba(34,197,94,0.30); }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(34,197,94,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-card h3 { font-size: 15px; margin-bottom: 4px; }
.contact-card a { color: var(--accent-2); font-weight: 500; display: block; }
.contact-card span { color: var(--text-dim); font-size: 13px; }

.contact-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-form h2 { font-size: 24px; margin-bottom: 6px; }
.muted { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.muted.small { font-size: 12px; margin-top: 12px; text-align: center; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; margin-bottom: 6px; color: var(--text-muted); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(34,197,94,0.05);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* -----------------------------------------------------------
   14. CUSTOM CURSOR + MOUSE GLOW
   ----------------------------------------------------------- */
.cursor-dot,
.cursor-ring,
.mouse-glow {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
  transition: width 0.2s, height 0.2s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(34,197,94,0.6);
  border-radius: 50%;
  transition: transform 0.15s ease-out, width 0.2s, height 0.2s, border-color 0.2s;
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  border-color: var(--accent-2);
  background: rgba(34,197,94,0.08);
}
.mouse-glow {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,0.10) 0%, rgba(34,197,94,0) 60%);
  filter: blur(20px);
  z-index: 1;
  transition: transform 0.25s ease-out;
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
  .cursor-dot, .cursor-ring, .mouse-glow { display: none; }
  * { cursor: auto !important; }
}

/* -----------------------------------------------------------
   15. ANIMATIONS
   ----------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-card { animation: float 4s ease-in-out infinite; }
.float-right { animation-delay: 1s; }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 40px rgba(34,197,94,0.35); }
  50% { box-shadow: 0 0 60px rgba(34,197,94,0.6); }
}
.btn-primary { animation: pulse 3s ease-in-out infinite; }

/* -----------------------------------------------------------
   16. MOBILE RESPONSIVE
   ----------------------------------------------------------- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .workflow { grid-template-columns: repeat(2, 1fr); }
  .workflow-line { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .pricing-features { grid-template-columns: 1fr; }
  .float-card { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .hero { padding: 100px 0 60px; }
  .page-hero { padding: 100px 0 30px; }

  .nav-links {
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(5,7,13,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform var(--transition);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }

  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .workflow { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .btn-sticky { display: none; }
  .sticky-cta { bottom: 16px; right: 16px; }

  .pricing-card { padding: 28px 20px; }
  .price-now { font-size: 40px; }

  .mockup-sidebar { width: 130px; }
  .mockup-canvas { padding: 12px; }
  .nest-grid { grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(4, 1fr); }
  .nest-grid > div:nth-child(n+25) { display: none; }
}

@media (max-width: 400px) {
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat { padding: 14px 8px; }
}
