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

:root {
  --orange: #F47920;
  --orange-dark: #d4611a;
  --orange-light: #ffa44d;
  --sky: #0EA5E9;
  --sky-dark: #0284c7;
  --sky-light: #38bdf8;
  --dark: #0f172a;
  --dark2: #1e293b;
  --text: #334155;
  --text-light: #64748b;
  --white: #ffffff;
  --bg: #f8fafc;
  --bg2: #f1f5f9;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(14,165,233,0.10);
  --shadow-lg: 0 8px 40px rgba(14,165,233,0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Outfit', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: none;
  border-bottom: 1px solid var(--border); padding: 0 2rem; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition); box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.10); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; z-index: 1101; position: relative; }
.nav-logo .logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white; font-weight: 900;
  box-shadow: 0 4px 12px rgba(244,121,32,0.35);
}
.nav-logo .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo .logo-name { font-size: 1.15rem; font-weight: 800; color: #F47920; letter-spacing: 0.5px; }
.nav-logo .logo-tag { font-size: 0.62rem; font-weight: 500; color: var(--sky); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.9rem;
  padding: 0.5rem 0.85rem; border-radius: 8px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--sky); background: rgba(14,165,233,0.08); }
.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
  color: white !important; padding: 0.55rem 1.2rem !important;
  border-radius: 8px !important; font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(244,121,32,0.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(244,121,32,0.4) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; z-index: 1101; position: relative;
  background: transparent; border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1098;
}
.nav-overlay.active { display: block; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; padding-top: 70px;
  background: linear-gradient(135deg, #0f172a 0%, #0c2340 50%, #0f2d4a 100%);
  position: relative; overflow: hidden; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(14,165,233,0.15) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(244,121,32,0.12) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(var(--sky) 1px, transparent 1px), linear-gradient(90deg, var(--sky) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,0.15); border: 1px solid rgba(14,165,233,0.3);
  color: var(--sky-light); padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: 0.5px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--sky-light); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero h1 { font-size: clamp(2.2rem,4vw,3.4rem); font-weight: 800; line-height: 1.15; color: white; margin-bottom: 1.2rem; }
.hero h1 .highlight { background: linear-gradient(135deg,var(--orange),var(--orange-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 480px; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; padding: 0.85rem 2rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(244,121,32,0.4); transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(244,121,32,0.5); }
.btn-secondary {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  color: white; padding: 0.85rem 2rem; border-radius: 10px; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .num { font-size: 1.8rem; font-weight: 800; color: white; line-height: 1; }
.hero-stat .num span { color: var(--orange); }
.hero-stat .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 2px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-card-stack { position: relative; width: 100%; max-width: 400px; }
.hero-main-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg); padding: 2rem; position: relative; z-index: 3; }
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 1.5rem; }
.hero-card-icon { width: 48px; height: 48px; background: linear-gradient(135deg,var(--orange),var(--orange-dark)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.hero-card-title { color: white; font-weight: 700; font-size: 1rem; }
.hero-card-sub { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.hero-steps { display: flex; flex-direction: column; gap: 0.8rem; }
.hero-step { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05); border-radius: 10px; padding: 0.75rem 1rem; }
.step-num { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg,var(--sky),var(--sky-dark)); color: white; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-text { color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; }
.step-time { margin-left: auto; font-size: 0.72rem; color: var(--orange-light); font-weight: 600; }

.floating-badge { position: absolute; background: white; border-radius: 12px; padding: 0.6rem 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.2); display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.82rem; color: var(--dark); animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.badge-top { top: -20px; right: -10px; }
.badge-bottom { bottom: -20px; left: -10px; animation-delay: 1.5s; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; }
.badge-dot.green { background: #22c55e; }
.badge-dot.orange { background: var(--orange); }

/* ===== SECTIONS ===== */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(14,165,233,0.08); border: 1px solid rgba(14,165,233,0.2); color: var(--sky-dark); padding: 0.3rem 0.9rem; border-radius: 100px; font-size: 0.78rem; font-weight: 600; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.section-title { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 1rem; }
.section-title span { color: var(--orange); }
.section-desc { color: var(--text-light); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ===== CARDS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.cards-grid-2 { grid-template-columns: repeat(2,1fr); }
.cards-grid-4 { grid-template-columns: repeat(4,1fr); }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; transition: var(--transition); position: relative; overflow: hidden; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(14,165,233,0.3); }
.card-icon { width: 52px; height: 52px; background: linear-gradient(135deg,rgba(14,165,233,0.1),rgba(14,165,233,0.05)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; border: 1px solid rgba(14,165,233,0.15); }
.card-icon.orange-icon { background: linear-gradient(135deg,rgba(244,121,32,0.1),rgba(244,121,32,0.05)); border-color: rgba(244,121,32,0.15); }
.card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ===== PROCESS ===== */
.process-section { background: var(--dark); }
.process-steps { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; margin-top: 3.5rem; position: relative; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; padding: 0 0.5rem; }
.process-step::after { content: ''; position: absolute; top: 28px; left: 60%; right: -10%; height: 2px; background: linear-gradient(90deg,var(--sky),rgba(14,165,233,0.2)); }
.process-step:last-child::after { display: none; }
.step-circle { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg,var(--sky),var(--sky-dark)); color: white; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; margin-bottom: 1rem; box-shadow: 0 6px 20px rgba(14,165,233,0.4); }
.process-step:last-child .step-circle { background: linear-gradient(135deg,var(--orange),var(--orange-dark)); box-shadow: 0 6px 20px rgba(244,121,32,0.4); }
.step-icon-wrap { font-size: 1.4rem; margin-bottom: 0.8rem; }
.process-step h4 { color: white; font-weight: 700; font-size: 0.88rem; margin-bottom: 0.4rem; }
.process-step p { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.step-tag { margin-top: 0.5rem; background: rgba(244,121,32,0.2); color: var(--orange-light); padding: 0.2rem 0.6rem; border-radius: 100px; font-size: 0.7rem; font-weight: 600; }

/* ===== WHY ===== */
.why-section { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.why-list { display: flex; flex-direction: column; gap: 1.2rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; background: white; padding: 1.2rem 1.4rem; border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.why-item:hover { border-color: var(--sky); box-shadow: var(--shadow); transform: translateX(4px); }
.why-item-icon { width: 40px; height: 40px; flex-shrink: 0; background: linear-gradient(135deg,var(--sky),var(--sky-dark)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: white; }
.why-item h4 { font-weight: 700; color: var(--dark); font-size: 0.95rem; margin-bottom: 0.2rem; }
.why-item p { font-size: 0.85rem; color: var(--text-light); }
.why-image-box { background: linear-gradient(135deg,var(--dark),var(--dark2)); border-radius: var(--radius-lg); padding: 2.5rem; position: relative; overflow: hidden; }
.why-image-box::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle,rgba(14,165,233,0.15),transparent); }
.salary-compare { display: flex; flex-direction: column; gap: 1rem; position: relative; z-index: 2; }
.salary-item { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 1.2rem 1.4rem; }
.salary-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 0.4rem; }
.salary-amount { font-size: 1.6rem; font-weight: 800; }
.salary-amount.nepal { color: rgba(255,255,255,0.7); }
.salary-amount.dubai { color: var(--orange); }
.salary-sub { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.2rem; }
.arrow-divider { text-align: center; font-size: 1.5rem; color: var(--sky); }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.pricing-card { background: white; border-radius: var(--radius-lg); border: 2px solid var(--border); padding: 2.5rem 2rem; position: relative; transition: var(--transition); }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--orange); box-shadow: 0 12px 40px rgba(244,121,32,0.2); }
.pricing-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,var(--orange),var(--orange-dark)); color: white; padding: 0.3rem 1.2rem; border-radius: 100px; font-size: 0.78rem; font-weight: 700; white-space: nowrap; }
.pricing-name { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.pricing-desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.pricing-amount { font-size: 2.2rem; font-weight: 900; color: var(--dark); line-height: 1; }
.pricing-amount span { font-size: 1rem; font-weight: 600; color: var(--text-light); }
.pricing-old { font-size: 0.9rem; color: var(--text-light); text-decoration: line-through; margin-top: 0.2rem; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.pricing-features { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.pricing-feature { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text); }
.pricing-feature .check { color: #22c55e; font-weight: 700; flex-shrink: 0; }
.pricing-feature .cross { color: #ef4444; font-weight: 700; flex-shrink: 0; }

/* ===== FORMS ===== */
.apply-page { padding: 8rem 2rem 5rem; min-height: 100vh; background: var(--bg); }
.form-type-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 700px; margin: 2rem auto 0; }
.type-card { background: white; border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; cursor: pointer; transition: var(--transition); position: relative; }
.type-card:hover { border-color: var(--sky); box-shadow: var(--shadow); }
.type-card.selected { border-color: var(--orange); background: rgba(244,121,32,0.03); }
.type-card.selected .type-check { display: flex; }
.type-check { display: none; position: absolute; top: 12px; right: 12px; width: 24px; height: 24px; background: var(--orange); border-radius: 50%; align-items: center; justify-content: center; color: white; font-size: 0.7rem; font-weight: 700; }
.type-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.type-title { font-weight: 700; font-size: 1.1rem; color: var(--dark); margin-bottom: 0.4rem; }
.type-desc { font-size: 0.85rem; color: var(--text-light); }
.form-container { max-width: 800px; margin: 2.5rem auto 0; background: white; border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border); box-shadow: var(--shadow); display: none; }
.form-container.visible { display: block; }
.form-title { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 0.4rem; }
.form-sub { color: var(--text-light); font-size: 0.9rem; margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.span2 { grid-column: span 2; }
label { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
label span { color: var(--orange); }
input, select, textarea { padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: 10px; font-family: 'Outfit',sans-serif; font-size: 0.9rem; color: var(--text); background: white; transition: var(--transition); outline: none; width: 100%; }
input:focus, select:focus, textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(14,165,233,0.12); }
textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 1.5rem; background: linear-gradient(135deg,var(--orange),var(--orange-dark)); color: white; padding: 1rem 2.5rem; border: none; border-radius: 10px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: var(--transition); width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,121,32,0.4); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; margin-top: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.4rem; display: flex; align-items: center; gap: 1rem; transition: var(--transition); }
.contact-card:hover { border-color: var(--sky); box-shadow: var(--shadow); }
.contact-card-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg,var(--sky),var(--sky-dark)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: white; flex-shrink: 0; }
.contact-card h4 { font-weight: 700; color: var(--dark); font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-card p { font-size: 0.88rem; color: var(--text-light); }
.contact-card a { color: var(--sky); text-decoration: none; font-weight: 600; }
.contact-form-box { background: white; border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border); box-shadow: var(--shadow); }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.team-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem; background: linear-gradient(135deg,var(--sky),var(--orange)); display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; font-weight: 800; }
.team-name { font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
.team-role { font-size: 0.85rem; color: var(--sky); font-weight: 600; }
.team-desc { font-size: 0.83rem; color: var(--text-light); margin-top: 0.6rem; }

/* ===== STATS BAND ===== */
.stats-band { background: linear-gradient(135deg,var(--orange),var(--orange-dark)); padding: 3rem 2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-item .stat-num { font-size: 2.5rem; font-weight: 900; color: white; line-height: 1; }
.stat-item .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 500; margin-top: 0.4rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.8rem; transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(14,165,233,0.2); }
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 0.8rem; }
.testimonial-text { font-size: 0.92rem; color: var(--text); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,var(--sky),var(--orange)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.testimonial-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
.testimonial-role { font-size: 0.78rem; color: var(--text-light); }

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg,var(--dark),#0c2340); padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%,rgba(14,165,233,0.12),transparent); }
.cta-section h2 { color: white; font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 800; margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 500px; margin: 0 auto 2rem; position: relative; z-index: 1; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-whatsapp { background: #25D366; color: white; padding: 0.85rem 2rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.4); background: #1ebe5d; }

/* ===== FOOTER ===== */
footer { background: var(--dark); padding: 4rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto; }
.footer-brand .logo-name { color: white; font-size: 1.3rem; font-weight: 800; margin-bottom: 0.4rem; }
.footer-brand .logo-tag { color: var(--sky); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.87rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 0.6rem; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.9rem; text-decoration: none; transition: var(--transition); }
.social-btn:hover { background: var(--sky); color: white; border-color: var(--sky); transform: translateY(-2px); }
.footer-col h4 { color: white; font-weight: 700; font-size: 0.95rem; margin-bottom: 1.2rem; position: relative; padding-bottom: 0.7rem; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--orange); border-radius: 2px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.87rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--sky); padding-left: 4px; }
.footer-links a::before { content: '→'; font-size: 0.7rem; opacity: 0; transition: var(--transition); }
.footer-links a:hover::before { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 3rem; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin-left: auto; margin-right: auto; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-bottom a { color: var(--sky); text-decoration: none; }

/* ===== UTILITIES ===== */
.notification { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; background: white; border-radius: var(--radius); padding: 1rem 1.5rem; box-shadow: 0 12px 40px rgba(0,0,0,0.2); border-left: 4px solid var(--sky); display: flex; align-items: center; gap: 12px; transform: translateX(120%); transition: var(--transition); max-width: 340px; }
.notification.show { transform: translateX(0); }
.notification.success { border-color: #22c55e; }
.notification.error { border-color: #ef4444; }
.notification-icon { font-size: 1.3rem; }
.notification-text { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.whatsapp-float { position: fixed; bottom: 2rem; left: 2rem; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: white; text-decoration: none; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 6px 20px rgba(37,211,102,0.4); transition: var(--transition); animation: float 3s ease-in-out infinite; }
.whatsapp-float:hover { transform: scale(1.1); }
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 46px; height: 46px; border-radius: 50%; background: var(--sky); color: white; border: none; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: var(--shadow); transition: var(--transition); }
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--sky-dark); transform: translateY(-2px); }

/* ===== PAGE HERO ===== */
.page-hero { padding: 9rem 2rem 5rem; background: linear-gradient(135deg,#0f172a 0%,#0c2340 100%); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 80% 50%,rgba(14,165,233,0.12),transparent); }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero .breadcrumb .current { color: var(--orange); font-size: 0.85rem; font-weight: 600; }
.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.7; }

/* ===== ACCORDION ===== */
.accordion { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 2rem; }
.accordion-item { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion-header { padding: 1.2rem 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-weight: 600; color: var(--dark); transition: var(--transition); }
.accordion-header:hover { background: var(--bg); }
.accordion-header.open { color: var(--sky); }
.accordion-icon { font-size: 1.2rem; transition: var(--transition); }
.accordion-header.open .accordion-icon { transform: rotate(45deg); color: var(--orange); }
.accordion-body { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.accordion-body.open { max-height: 300px; padding: 0 1.5rem 1.2rem; }
.accordion-body p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ===== SUCCESS ===== */
.success-message { display: none; text-align: center; padding: 3rem 2rem; }
.success-message.show { display: block; }
.success-icon { font-size: 4rem; margin-bottom: 1rem; }
.success-message h3 { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 0.5rem; }
.success-message p { color: var(--text-light); }

/* ===== RESPONSIVE 1024 ===== */
@media (max-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3,1fr); row-gap: 2rem; }
  .process-step::after { display: none; }
}

/* ===== RESPONSIVE 768 ===== */
@media (max-width: 768px) {
  .hero-container { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 2rem; }
  .cards-grid, .cards-grid-2 { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.span2 { grid-column: span 1; }
  .form-type-selector { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.2rem; }

  /* MOBILE HAMBURGER BUTTON */
  .nav-toggle { display: flex; }

  /* SIDEBAR DRAWER — slides in from RIGHT */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -320px !important;
    bottom: 0 !important;
    left: auto !important;
    width: 280px !important;
    background: #0f172a !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 100px 1.5rem 2rem 1.5rem !important;
    z-index: 1099 !important;
    box-shadow: -4px 0 30px rgba(0,0,0,0.5) !important;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1) !important;
    display: flex !important;
    list-style: none !important;
    gap: 0.3rem !important;
  }

  .nav-links.open {
    right: 0 !important;
  }

  .nav-links li { width: 100% !important; }

  .nav-links a {
    display: block !important;
    color: rgba(255,255,255,0.75) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    padding: 0.9rem 1rem !important;
    border-radius: 10px !important;
    width: 100% !important;
    text-align: left !important;
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    transition: all 0.2s !important;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--orange) !important;
    background: rgba(244,121,32,0.1) !important;
    padding-left: 1.3rem !important;
  }

  .nav-cta {
    background: linear-gradient(135deg,var(--orange),var(--orange-dark)) !important;
    color: white !important;
    text-align: center !important;
    margin-top: 0.6rem !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(244,121,32,0.35) !important;
  }

  /* BLUR OVERLAY behind drawer */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1098;
    transition: opacity 0.3s;
  }
  .nav-overlay.active { display: block; }

  /* Hamburger → X animation */
  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
