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

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --navy:        #0A2558;
  --blue:        #1565C0;
  --sky:         #1E90FF;
  --light-sky:   #42A5F5;
  --pale:        #EEF5FF;
  --white:       #FFFFFF;
  --text:        #1A1A2E;
  --text-muted:  #546E7A;
  --border:      #D0E4F7;
  --shadow:      0 4px 24px rgba(10, 37, 88, 0.10);
  --shadow-lg:   0 8px 40px rgba(10, 37, 88, 0.16);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.25s ease;
  --max-width:   1160px;
}

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

/* ─── Utilities ─────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30, 144, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 144, 255, 0.45);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-blue {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }

/* ─── Header ─────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 18px 0;
}
#header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10, 37, 88, 0.10);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 200px;
  width: 200px;
  background: var(--white);
  padding: 4px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: var(--transition);
}
#header.scrolled .logo img {
  height: 160px;
  width: 160px;
  box-shadow: none;
  padding: 3px;
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s ease;
}
#header.scrolled .logo-text { color: var(--navy); }

nav { display: flex; align-items: center; gap: 8px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 16px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
}
#header.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { background: rgba(255,255,255,0.15); color: var(--white); }
#header.scrolled .nav-links a:hover { background: var(--pale); color: var(--blue); }

.nav-cta {
  background: var(--white);
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}
#header.scrolled .nav-cta {
  background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%);
  color: var(--white) !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#header.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--border);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.mobile-nav a:hover { background: var(--pale); color: var(--blue); }
.mobile-nav .btn-primary { margin-top: 8px; justify-content: center; }

/* ─── Hero ───────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #061833 0%, #0A2558 35%, #1565C0 75%, #1E90FF 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.hero-bg-circles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg-circles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-bg-circles span:nth-child(1) { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-bg-circles span:nth-child(2) { width: 300px; height: 300px; bottom: -50px; left: -80px; }
.hero-bg-circles span:nth-child(3) { width: 200px; height: 200px; top: 40%; right: 15%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-content { color: var(--white); }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
}
.hero-badge i { color: var(--light-sky); font-size: 0.75rem; }
.veteran-badge {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,200,100,0.4);
  color: rgba(255,230,160,0.95);
}
.veteran-badge i { color: #FCD34D; }
.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--light-sky); }
.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.hero-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-features { display: flex; flex-direction: column; gap: 16px; }
.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hero-feature-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.hero-feature-text strong { display: block; font-weight: 600; font-size: 0.95rem; }
.hero-feature-text span { font-size: 0.85rem; color: rgba(255,255,255,0.72); }

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}

/* ─── Services ───────────────────────────────────────────────── */
#services { padding: 96px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--blue));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  background: var(--pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--blue); color: var(--white); }
.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.service-link:hover { gap: 10px; }

/* ─── Why Us ─────────────────────────────────────────────────── */
#why {
  padding: 96px 0;
  background: var(--pale);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto 20px;
}
.why-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Pricing ────────────────────────────────────────────────── */
#pricing { padding: 96px 0; background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  background: var(--white);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
  background: linear-gradient(160deg, #0A2558 0%, #1565C0 100%);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1A1A00;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.pricing-card .plan-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-card.featured .plan-name { color: var(--white); }
.pricing-card .plan-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.pricing-card.featured .plan-tagline { color: rgba(255,255,255,0.75); }
.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.price .dollar { font-size: 1.3rem; font-weight: 600; color: var(--sky); margin-top: 4px; }
.price .amount {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
}
.pricing-card.featured .price .amount,
.pricing-card.featured .price .dollar { color: var(--white); }
.price .per { font-size: 0.88rem; color: var(--text-muted); }
.pricing-card.featured .price .per { color: rgba(255,255,255,0.7); }
.price-custom { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 28px; }

.features-list { margin-bottom: 36px; }
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .features-list li { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.features-list li:last-child { border-bottom: none; }
.features-list .check { color: #22C55E; flex-shrink: 0; margin-top: 2px; }
.pricing-card.featured .features-list .check { color: #86EFAC; }
.features-list .x { color: #CBD5E1; flex-shrink: 0; margin-top: 2px; }

.pricing-card .btn-primary { width: 100%; justify-content: center; }
.pricing-card .btn-outline-blue { width: 100%; justify-content: center; }
.featured-btn {
  background: var(--white) !important;
  color: var(--navy) !important;
  box-shadow: none !important;
}
.featured-btn:hover { background: var(--pale) !important; transform: translateY(-2px) !important; }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.pricing-note i { color: var(--sky); margin-right: 4px; }

/* ─── Service Area ───────────────────────────────────────────── */
#area { padding: 96px 0; background: var(--pale); }
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.area-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.area-content p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.area-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.area-tag i { color: var(--sky); }
.area-visual {
  background: linear-gradient(150deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  text-align: center;
}
.area-visual i { font-size: 3.5rem; color: var(--light-sky); margin-bottom: 20px; display: block; }
.area-visual h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.area-visual p { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.area-stat-row { display: flex; gap: 20px; margin-top: 28px; justify-content: center; }
.area-stat { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 16px 24px; }
.area-stat .num { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; }
.area-stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* ─── CTA Banner ─────────────────────────────────────────────── */
#cta {
  padding: 96px 0;
  background: linear-gradient(135deg, #061833 0%, #0A2558 40%, #1565C0 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  top: -300px; right: -100px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─────────────────────────────────────────────────── */
footer {
  background: #040E22;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.3rem; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 16px 0 24px;
  color: rgba(255,255,255,0.6);
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-btn:hover { background: var(--blue); color: var(--white); }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}
.footer-col ul a:hover { color: var(--light-sky); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.footer-contact-item i { color: var(--sky); margin-top: 2px; flex-shrink: 0; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin-bottom: 24px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--light-sky); }

/* ─── Inner Page Hero ────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(150deg, #061833 0%, #0A2558 40%, #1565C0 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}
.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-sky);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Packages Page ──────────────────────────────────────────── */
.packages-section { padding: 96px 0; background: var(--white); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 64px;
}
.all-packages-note {
  background: var(--pale);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}
.all-packages-note h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.all-packages-note p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 16px; }
.all-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.include-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.include-pill i { color: var(--sky); }

/* ─── Startup Page ───────────────────────────────────────────── */
.startup-section { padding: 96px 0; }
.startup-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.startup-intro .content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.startup-intro .content p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.startup-visual {
  background: linear-gradient(150deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
}
.startup-visual h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.startup-checklist { display: flex; flex-direction: column; gap: 14px; }
.startup-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
}
.startup-check i { color: #86EFAC; margin-top: 2px; flex-shrink: 0; }
.steps-section { padding-bottom: 96px; }
.steps-section .section-header { margin-bottom: 56px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 20px;
}
.step-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Contact Page ───────────────────────────────────────────── */
.contact-section { padding: 96px 0; background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info p { color: var(--text-muted); margin-bottom: 36px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h4 {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.contact-item p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.form-note { text-align: center; margin-top: 12px; font-size: 0.8rem; color: var(--text-muted); }

/* ─── Scroll Animation ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-card { max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .logo img { height: 64px; width: 64px; border-radius: 10px; }
  #header.scrolled .logo img { height: 52px; width: 52px; }
  nav .nav-links, nav .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid, .pricing-grid, .packages-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-4px); }
  .area-inner, .startup-intro, .contact-inner { grid-template-columns: 1fr; }
  .hero-inner { padding-bottom: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .logo img { height: 70px; width: 70px; border-radius: 10px; }
  #header.scrolled .logo img { height: 56px; width: 56px; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .area-stat-row { flex-direction: column; align-items: center; }
}
