/* ============================================================
   LAUNCHEA – Complete Design System
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --cyan: #06B6D4;
  --cyan-dark: #0891B2;
  --cyan-darker: #0E7490;
  --cyan-light: #ECFEFF;
  --cyan-mid: #CFFAFE;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --white: #FFFFFF;
  --error: #DC2626;
  --error-bg: #FEF2F2;
  --success: #059669;
  --success-bg: #ECFDF5;
  --nav-height: 68px;
  --section-pad: 96px;
  --container: 1200px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── ACCESSIBILITY ──────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  background: var(--cyan-dark); color: var(--white);
  padding: 10px 20px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
:focus-visible {
  outline: 2px solid var(--cyan-dark);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── REDUCE MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ────────────────────────────────────────────────────────────
   NAVIGATION
   ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;

  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);

  height: 68px;

  display: flex;
  align-items: center;

  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ───────────────────────── CONTAINER ───────────────────────── */

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 clamp(16px, 4vw, 64px);
}

/* ───────────────────────── BRAND ───────────────────────── */

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo {
  height: 40px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
}

/* ───────────────────────── DESKTOP LINKS ───────────────────────── */

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gray-900);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--cyan-dark);
}

/* ───────────────────────── CTA ───────────────────────── */

.nav-cta {
  background: var(--cyan-dark);
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* ───────────────────────── HAMBURGER ───────────────────────── */

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--gray-700);
}

/* ───────────────────────── MOBILE MENU ───────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85vw;
  height: 100vh;

  background: white !important;

  z-index: 350;

  border-left: 1px solid #e5e7eb;
}

.mobile-menu.is-open {
  right: 0;
  
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 20px;
}

/* ───────────────────────── MOBILE LINKS ───────────────────────── */

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  padding: 14px 20px;
  text-decoration: none;
  color: var(--gray-700);
}

.mobile-nav a:hover {
  background: var(--cyan-light);
  color: var(--cyan-dark);
}

.mobile-cta {
  margin: 16px 20px;
  padding: 12px;
  background: var(--cyan-dark);
  color: white !important;
  text-align: center;
  border-radius: 6px;
}

/* ───────────────────────── OVERLAY ───────────────────────── */

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 250;
}

.mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ───────────────────────── RESPONSIVE ───────────────────────── */

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}
/* ────────────────────────────────────────────────────────────
   SHARED SECTION STYLES
   ──────────────────────────────────────────────────────────── */
section { padding: var(--section-pad) 64px; }

.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--cyan-dark);
  margin-bottom: 14px; display: block;
}
.section-title {
  font-size: clamp(26px, 4vw, 36px); font-weight: 700;
  color: var(--gray-900); letter-spacing: -0.8px;
  line-height: 1.15; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--gray-500);
  max-width: 560px; line-height: 1.7;
}

/* ────────────────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────────────────── */
.hero {
  padding: 148px 64px 100px;
  background: var(--gray-900);
  position: relative; overflow: hidden;
}
.hero-contact { padding-bottom: 80px; }
.hero-accent {
  position: absolute; top: 0; right: 0;
  width: 480px; height: 480px;
  background: radial-gradient(circle at 70% 30%, rgba(6,182,212,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-label {
  display: inline-block;
  background: rgba(6,182,212,0.15);
  color: var(--cyan);
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px;
  margin-bottom: 28px;
  border: 1px solid rgba(6,182,212,0.25);
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 700;
  line-height: 1.1; color: var(--white);
  letter-spacing: -1.5px; max-width: 700px; margin-bottom: 24px;
}
.hero h1 span { color: var(--cyan); }
.hero p {
  font-size: 18px; color: var(--gray-400);
  max-width: 560px; margin-bottom: 44px; line-height: 1.7;
}
.hero-sub { font-size: 18px; color: var(--gray-400); max-width: 560px; margin-bottom: 44px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--cyan-dark); color: var(--white);
  padding: 14px 32px; border-radius: 6px;
  font-size: 15px; font-weight: 600;
  transition: background var(--transition);
  border: none; display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--cyan-darker); }

.btn-ghost {
  color: var(--gray-300); font-size: 15px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 0; transition: color var(--transition);
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost svg { width: 18px; height: 18px; }

/* ────────────────────────────────────────────────────────────
   STATS BAR
   ──────────────────────────────────────────────────────────── */
.stats {
  background: var(--gray-800); padding: 40px 64px;
  display: flex; gap: 0;
  border-bottom: 1px solid var(--gray-700);
}
.stat-item {
  flex: 1; text-align: center; padding: 20px 0;
  border-right: 1px solid var(--gray-700);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-size: clamp(18px, 2.5vw, 28px); font-weight: 700; color: var(--white); }
.stat-number span { color: var(--cyan); }
.stat-label { font-size: 13px; color: var(--gray-400); margin-top: 4px; font-weight: 500; }

/* ────────────────────────────────────────────────────────────
   PROBLEM / SOLUTION
   ──────────────────────────────────────────────────────────── */
.problem { background: var(--gray-50); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; margin-top: 64px; align-items: start;
}
.problem-issues { display: flex; flex-direction: column; gap: 16px; }
.issue-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  transition: border-color var(--transition);
}
.issue-item:hover { border-color: var(--gray-300); }
.issue-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--error-bg); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.issue-icon svg { width: 18px; height: 18px; stroke: var(--error); }
.issue-item h4 { font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.issue-item p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

.solution-card {
  background: var(--gray-900); border-radius: var(--radius-lg);
  padding: 40px; position: sticky; top: calc(var(--nav-height) + 20px);
}
.solution-card h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.solution-card > p { font-size: 15px; color: var(--gray-400); margin-bottom: 32px; line-height: 1.6; }
.solution-steps { display: flex; flex-direction: column; gap: 24px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--cyan-dark); color: var(--white);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.step p { font-size: 13px; color: var(--gray-400); line-height: 1.5; }

/* ────────────────────────────────────────────────────────────
   PROCESS STEPS
   ──────────────────────────────────────────────────────────── */
.process { background: var(--gray-900); }
.process .section-title { color: var(--white); }
.process .section-sub { color: var(--gray-400); }
.process-steps {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; margin-top: 64px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 28px; left: 8.33%; right: 8.33%;
  height: 1px; background: var(--gray-700);
}
.process-step { text-align: center; padding: 0 8px; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--gray-700); background: var(--gray-800);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  transition: border-color var(--transition), background var(--transition);
}
.process-step:hover .step-circle {
  border-color: var(--cyan);
  background: rgba(6,182,212,0.1);
}
.step-circle svg { width: 22px; height: 22px; stroke: var(--cyan); }
.process-step h4 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.process-step p { font-size: 12px; color: var(--gray-500); line-height: 1.5; }

/* ────────────────────────────────────────────────────────────
   SERVICES / PACKAGES
   ──────────────────────────────────────────────────────────── */
.services { background: var(--white); }
.services-header { max-width: 560px; margin-bottom: 56px; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.package-card {
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.package-card:hover {
  border-color: var(--cyan-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.package-card.featured { border: 2px solid var(--cyan-dark); }

.featured-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--cyan-dark); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; padding: 5px 16px;
  border-radius: 0 0 6px 6px;
}
.package-header { padding: 32px 28px 24px; border-bottom: 1px solid var(--gray-100); }
.package-name { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--cyan-dark); margin-bottom: 8px; }
.package-title { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.package-desc { font-size: 14px; color: var(--gray-500); line-height: 1.5; }

.package-price { padding: 24px 28px; border-bottom: 1px solid var(--gray-100); }
.price-from { font-size: 12px; color: var(--gray-400); font-weight: 500; margin-bottom: 4px; }
.price-amount { font-size: 32px; font-weight: 700; color: var(--gray-900); letter-spacing: -1px; }
.price-amount span { font-size: 16px; font-weight: 500; color: var(--gray-400); }

.package-features { padding: 24px 28px; flex: 1; }
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--gray-600);
}
.feature-list li svg { width: 16px; height: 16px; stroke: var(--cyan-dark); flex-shrink: 0; }

.package-footer { padding: 20px 28px 28px; }
.pkg-btn {
  display: block; width: 100%; text-align: center;
  padding: 12px 0; border-radius: 6px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: all var(--transition);
}
.pkg-btn-outline {
  border: 1.5px solid var(--gray-300); color: var(--gray-700);
  background: transparent;
}
.pkg-btn-outline:hover { border-color: var(--cyan-dark); color: var(--cyan-dark); }
.pkg-btn-filled { background: var(--cyan-dark); color: var(--white); border: none; }
.pkg-btn-filled:hover { background: var(--cyan-darker); }

/* ────────────────────────────────────────────────────────────
   RECURRING / MONTHLY PLANS
   ──────────────────────────────────────────────────────────── */
.recurring { background: var(--gray-800); }
.recurring-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.recurring-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 10px; padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.recurring-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.recurring-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--cyan-light); border: 1px solid var(--cyan-mid);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.recurring-icon svg { width: 22px; height: 22px; stroke: var(--cyan-darker); }
.recurring-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.recurring-card .price { font-size: 24px; font-weight: 700; color: var(--cyan-dark); margin-bottom: 8px; }
.recurring-card .price span { font-size: 14px; font-weight: 400; color: var(--gray-400); }
.recurring-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 12px; font-weight: 500; color: var(--gray-600); background: var(--gray-100); border-radius: 4px; padding: 4px 10px; }

/* ────────────────────────────────────────────────────────────
   PORTFOLIO
   ──────────────────────────────────────────────────────────── */
.projects-section { padding: 80px 64px; background: var(--gray-900); }
.container { max-width: var(--container); margin: 0 auto; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.project-card {
  border-radius: 14px; overflow: hidden;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.project-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(34,211,238,0.4);
}
.thumbnail { position: relative; height: 200px; overflow: hidden; }
.thumbnail img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;

}
.project-card:hover .thumbnail img { transform: scale(1.08); }

.badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 12px; padding: 5px 10px; border-radius: 999px;
  display: flex; align-items: center; gap: 6px;
  color: white; backdrop-filter: blur(8px);
}
.badge.live { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3); }
.dot {
  width: 6px; height: 6px; background: #34d399;
  border-radius: 50%; animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}
.overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4);
  display: flex; justify-content: center; align-items: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.thumbnail:hover .overlay { opacity: 1; }
.project-card:focus-within .overlay { opacity: 1; }
.overlay-btn {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 20px; border-radius: 999px;
  color: white; font-size: 13px; font-weight: 500;
  transition: background 0.2s;
}
.overlay-btn:hover { background: rgba(255,255,255,0.35); }
.project-content { padding: 20px 18px; }
.project-title { color: white; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.project-desc { color: #94a3b8; font-size: 13px; line-height: 1.6; }

/* ────────────────────────────────────────────────────────────
   CONTACT PAGE
   ──────────────────────────────────────────────────────────── */
.contact-section {
  background: var(--gray-50);
  padding: var(--section-pad) 64px;
}
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 72px; align-items: start;
  max-width: var(--container); margin: 0 auto;
}

/* Info Panel */
.contact-info-title {
  font-size: clamp(22px, 3vw, 30px); font-weight: 700;
  color: var(--gray-900); margin-bottom: 12px; letter-spacing: -0.5px;
}
.contact-info-sub {
  font-size: 16px; color: var(--gray-500);
  line-height: 1.7; margin-bottom: 36px;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }

.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-card:hover { border-color: var(--cyan-dark); box-shadow: var(--shadow-sm); }

.contact-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--cyan-light); border: 1px solid var(--cyan-mid);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; stroke: var(--cyan-darker); }

.contact-card-content h3 { font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 4px; }
.contact-card-content a {
  font-size: 15px; font-weight: 500; color: var(--cyan-dark);
  transition: color var(--transition);
}
.contact-card-content a:hover { color: var(--cyan-darker); }
.contact-card-content span { font-size: 15px; font-weight: 500; color: var(--gray-700); }
.contact-card-content p { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

.response-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--success-bg);
  border: 1px solid rgba(5, 150, 105, 0.2);
  padding: 10px 16px; border-radius: 6px;
  font-size: 13px; color: var(--gray-600);
}
.response-dot {
  width: 8px; height: 8px; background: var(--success);
  border-radius: 50%; animation: pulse 2s infinite;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-form { padding: 40px; }
.form-header { margin-bottom: 32px; }
.form-header h3 { font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.form-header p { font-size: 14px; color: var(--gray-500); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-row .form-group { margin-bottom: 0; }
.form-row + .form-group, .form-row + .form-row { margin-top: 20px; }

label {
  font-size: 13px; font-weight: 600; color: var(--gray-700);
  display: flex; align-items: center; gap: 4px;
}
.required { color: var(--error); font-size: 14px; }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--gray-300); border-radius: 6px;
  font-size: 14px; font-family: inherit; color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none; -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--gray-400); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.12);
}
input.input-error, select.input-error, textarea.input-error {
  border-color: var(--error);
}
input.input-error:focus, textarea.input-error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}
input.input-valid, textarea.input-valid {
  border-color: var(--success);
}
textarea { resize: vertical; min-height: 120px; }

.select-wrapper { position: relative; }
.select-wrapper select { padding-right: 40px; cursor: pointer; }
.select-arrow {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; stroke: var(--gray-400);
  pointer-events: none;
}

.field-error { font-size: 12px; color: var(--error); min-height: 16px; }
.field-hint { font-size: 12px; color: var(--gray-400); }

.form-status {
  padding: 12px 16px; border-radius: 6px; font-size: 14px;
  margin-bottom: 16px; display: none;
}
.form-status:not(:empty) { display: block; }
.form-status--error { background: var(--error-bg); color: var(--error); border: 1px solid rgba(220,38,38,0.2); }
.form-status--success { background: var(--success-bg); color: var(--success); border: 1px solid rgba(5,150,105,0.2); }

.form-submit {
  width: 100%; padding: 14px 28px;
  background: var(--cyan-dark); color: var(--white);
  border: none; border-radius: 6px;
  font-size: 15px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--transition), opacity var(--transition);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.form-submit:hover:not(:disabled) { background: var(--cyan-darker); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.btn-text { display: flex; align-items: center; gap: 8px; }
.btn-loading {
  display: none; align-items: center; gap: 8px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.form-submit.is-loading .btn-text { visibility: hidden; }
.form-submit.is-loading .btn-loading { display: flex; }
.form-submit.is-loading .btn-icon { display: none; }

.spinner {
  width: 18px; height: 18px;
  animation: spin 0.8s linear infinite;
  stroke: var(--white); stroke-linecap: round;
}
@keyframes spin { to { transform: rotate(360deg); } }

.btn-icon { width: 16px; height: 16px; }

.form-privacy {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--gray-400); margin-top: 14px;
}

.form-hidden { display: none !important; }

/* Success state */
.form-success {
  display: none; padding: 48px 40px;
  text-align: center; align-items: center; flex-direction: column;
}
.form-success:not([aria-hidden="true"]) { display: flex; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--success-bg); border: 2px solid var(--success);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.success-icon svg { width: 28px; height: 28px; stroke: var(--success); }
.form-success h3 { font-size: 24px; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.form-success p { font-size: 15px; color: var(--gray-500); line-height: 1.7; max-width: 360px; margin: 0 auto; }
.success-sub { margin-top: 8px !important; }
.success-sub a { color: var(--cyan-dark); font-weight: 500; }
.form-success .btn-primary { margin-top: 24px; }

/* FAQ Section */
.faq-section { background: var(--white); }
.faq-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.faq-item {
  padding: 24px; background: var(--gray-50);
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--cyan-dark); }
.faq-item h3 { font-size: 15px; font-weight: 600; color: var(--gray-800); margin-bottom: 10px; }
.faq-item p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ────────────────────────────────────────────────────────────
   CTA SECTION
   ──────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--gray-900); padding: var(--section-pad) 64px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 700;
  color: var(--white); letter-spacing: -1px; margin-bottom: 16px;
}
.cta-section p { font-size: 17px; color: var(--gray-400); margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }

.btn-secondary {
  background: transparent; color: var(--gray-300);
  border: 1.5px solid var(--gray-600);
  padding: 14px 32px; border-radius: 6px;
  font-size: 15px; font-weight: 600;
  transition: all var(--transition);
}
.btn-secondary:hover { border-color: var(--gray-400); color: var(--white); }

/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
footer {
  background: var(--gray-900);
  border-top: 1px solid var(--gray-800);
  padding: 56px 64px 32px;
}
.footer-top { display: flex; justify-content: space-between; gap: 48px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand { max-width: 260px; }
.footer-logo-link { text-decoration: none; color: inherit; }
.footer-brand .nav-logo { font-size: 20px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-top: 14px; }

.social-links { display: flex; gap: 12px; margin-bottom: 4px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-800); border: 1px solid var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  color: var(--gray-400);
}
.social-links a:hover { background: var(--gray-700); border-color: var(--gray-600); color: var(--white); }
.social-links a svg { width: 16px; height: 16px; }

.footer-links-group { min-width: 130px; }
.footer-links-group h5 {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: var(--gray-500); margin-bottom: 16px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group ul li a,
.footer-links-group ul li span {
  font-size: 14px; color: var(--gray-400);
  transition: color var(--transition);
}
.footer-links-group ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--gray-800); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 13px; color: var(--gray-600); }
.footer-bottom span { color: var(--cyan-dark); }
.footer-tagline { color: var(--gray-600) !important; font-size: 13px !important; }

/* ────────────────────────────────────────────────────────────
   LAZY LOAD IMAGES
   ──────────────────────────────────────────────────────────── */
img[loading="lazy"] { opacity: 0; transition: opacity 0.4s; }
img[loading="lazy"].loaded { opacity: 1; }

/* ────────────────────────────────────────────────────────────
   RESPONSIVE: TABLET (≤ 1024px)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  section { padding: 72px 32px; }
  .stats { padding: 32px; }
  .hero { padding: 128px 32px 80px; }
  .contact-section { padding: 72px 32px; }
  .projects-section { padding: 72px 32px; }
  .cta-section { padding: 72px 32px; }
  footer { padding: 48px 32px 28px; }

  .problem-grid { gap: 40px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { max-width: 560px; margin: 0 auto; }
  .contact-form-wrapper { max-width: 100%; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE: MOBILE (≤ 768px)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-height: 60px; --section-pad: 56px; }

  /* NAV */
  nav { padding: 0 20px; height: var(--nav-height); }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* HERO */
  .hero { padding: 100px 20px 64px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); letter-spacing: -1px; }
  .hero p { font-size: 16px; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; text-align: center; }
  .btn-ghost { width: auto; }

  /* STATS */
  .stats { padding: 0; flex-wrap: wrap; }
  .stat-item {
    flex: 1 1 50%; padding: 24px 16px;
    border-right: 1px solid var(--gray-700);
    border-bottom: 1px solid var(--gray-700);
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  /* SECTIONS */
  section { padding: var(--section-pad) 20px; }

  /* PROBLEM */
  .problem-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
  .solution-card { position: static; padding: 28px 20px; }

  /* PROCESS */
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-step { padding: 0 4px; }

  /* PACKAGES */
  .packages-grid { grid-template-columns: 1fr; }
  .recurring-grid { grid-template-columns: 1fr; }

  /* PORTFOLIO */
  .projects-section { padding: 56px 20px; }
  .projects-grid { grid-template-columns: 1fr; }

  /* CONTACT */
  .contact-section { padding: var(--section-pad) 20px; }
  .contact-wrapper { gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .form-row .form-group { margin-bottom: 0; }
  .contact-form { padding: 24px 20px; }
  .form-success { padding: 36px 20px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-section { padding: 64px 20px; }
  .cta-actions { flex-direction: column; align-items: stretch; }

  /* FOOTER */
  footer { padding: 40px 20px 24px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-links-group { min-width: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* SECTION TITLE */
  .section-title { font-size: 26px; }
  .section-sub { font-size: 15px; }
}
footer .nav-logo {
  color: white;
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE: SMALL MOBILE (≤ 480px)
   ──────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .process-steps { grid-template-columns: 1fr; }
  .stat-item { flex: 1 1 100%; border-right: none; }
  .contact-cards { gap: 12px; }
  .contact-card { padding: 16px; }
  .contact-form { padding: 20px 16px; }
  .form-submit { font-size: 14px; padding: 13px 20px; }
}

/* ────────────────────────────────────────────────────────────
   PRINT
   ──────────────────────────────────────────────────────────── */
@media print {
  nav, .mobile-menu, .mobile-overlay, .cta-section, footer { display: none !important; }
  .hero { padding: 20px 0; background: white !important; }
  .hero h1, .hero p { color: black !important; }
  section { padding: 20px 0; }
}
