:root {
  --blue: #0D47A1;
  --blue-mid: #1565C0;
  --blue-light: #1976D2;
  --blue-pale: #E3F2FD;
  --orange: #FF9800;
  --orange-dark: #F57C00;
  --orange-light: #FFF3E0;
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --text: #0F172A;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(13,71,161,0.08), 0 1px 2px rgba(13,71,161,0.04);
  --shadow-md: 0 4px 16px rgba(13,71,161,0.10), 0 2px 6px rgba(13,71,161,0.06);
  --shadow-lg: 0 10px 40px rgba(13,71,161,0.14), 0 4px 12px rgba(13,71,161,0.08);
  --shadow-xl: 0 20px 60px rgba(13,71,161,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── UTILITIES ─────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-pale); color: var(--blue);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.2; color: var(--text);
}
.section-sub { font-size: 1.05rem; color: var(--gray-600); max-width: 560px; margin-top: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  padding: 13px 26px; border-radius: 100px; border: none; cursor: pointer;
  text-decoration: none; transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,152,0,0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,152,0,0.55); }

.btn-secondary {
  background: var(--white); color: var(--blue);
  border: 2px solid rgba(13,71,161,0.2);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--blue); background: var(--blue-pale); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.highlight { color: var(--orange); }
.blue-text { color: var(--blue); }

/* ─── HEADER ─────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,71,161,0.08);
  transition: box-shadow 0.3s;
}
#header.scrolled { box-shadow: 0 4px 24px rgba(13,71,161,0.12); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 20px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
  color: var(--blue); text-decoration: none; flex-shrink: 0;
}
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem; font-weight: 900; letter-spacing: -1px;
  box-shadow: 0 4px 12px rgba(13,71,161,0.35);
}
.logo-mark span { color: var(--orange); }
.logo-img {
  height: 62px; width: auto; object-fit: contain;
  transition: transform 0.3s ease;
}
.logo:hover .logo-img { transform: scale(1.04); }
@media (max-width: 640px) {
  .logo-img { height: 50px; }
}

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  font-size: 0.9rem; font-weight: 600; color: var(--gray-600);
  text-decoration: none; padding: 8px 14px; border-radius: 8px;
  transition: all 0.2s;
}
nav a:hover { color: var(--blue); background: var(--blue-pale); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-actions .btn { padding: 10px 20px; font-size: 0.88rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border: none; background: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--blue);
  border-radius: 2px; transition: all 0.3s;
}

.mobile-nav {
  display: none; position: fixed; inset: 70px 0 0 0; z-index: 999;
  background: white; padding: 24px; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--gray-200); overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem; font-weight: 600; color: var(--gray-800);
  text-decoration: none; padding: 14px 16px; border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav a:hover { color: var(--blue); background: var(--blue-pale); }
.mobile-nav-btns { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

/* ─── HERO ───────────────────────────────────── */
#hero {
  padding-top: 70px;
  background: linear-gradient(135deg, #0A3880 0%, #0D47A1 40%, #1565C0 70%, #0D47A1 100%);
  position: relative; overflow: hidden; min-height: 92vh;
  display: flex; align-items: center;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg-shapes::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,152,0,0.12) 0%, transparent 70%);
  top: -200px; right: -100px; animation: pulse 6s ease-in-out infinite;
}
.hero-bg-shapes::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  bottom: -100px; left: -100px; animation: pulse 8s ease-in-out infinite 2s;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,152,0,0.15); color: var(--orange);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid rgba(255,152,0,0.3); margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}
.hero-eyebrow::before { content: '★'; font-size: 0.75rem; }

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.12; color: var(--white);
  margin-bottom: 20px; animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-h1 .line-accent {
  background: linear-gradient(90deg, var(--orange), #FFD54F);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.82); line-height: 1.7;
  margin-bottom: 36px; max-width: 500px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; animation: fadeInUp 0.6s ease 0.3s both; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; animation: fadeInUp 0.6s ease 0.4s both; }
.hero-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.88);
}
.hero-badge svg { color: #4CAF50; flex-shrink: 0; }

/* Hero Visual */
.hero-visual { position: relative; animation: fadeInRight 0.8s ease 0.2s both; }
.hero-card-main {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-lg);
  padding: 36px; position: relative;
}
.biz-illustration { width: 100%; height: auto; }

.hero-float-card {
  position: absolute; background: white; border-radius: var(--radius);
  padding: 14px 20px; box-shadow: var(--shadow-xl); display: flex;
  align-items: center; gap: 12px; font-size: 0.85rem; font-weight: 700;
  color: var(--text); white-space: nowrap;
}
.hero-float-card .icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.hero-float-card-1 { top: -24px; left: -24px; animation: floatCard1 3s ease-in-out infinite; }
.hero-float-card-2 { bottom: -24px; right: -24px; animation: floatCard2 3.5s ease-in-out infinite; }
.hero-float-card-3 { top: 50%; right: -36px; transform: translateY(-50%); animation: floatCard1 4s ease-in-out infinite 1s; }

/* ─── TRUST BAR ──────────────────────────────── */
#trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 18px 0;
  box-shadow: var(--shadow-sm);
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 600; color: var(--gray-600);
}
.trust-item .ti-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}

/* ─── SERVICES ───────────────────────────────── */
#services { padding: 100px 0; background: var(--off-white); }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 12px auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 30px 28px; border: 1px solid var(--gray-100);
  transition: all 0.3s cubic-bezier(0.34,1.2,0.64,1);
  position: relative; overflow: hidden; cursor: pointer;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; background: var(--blue-pale); transition: all 0.3s;
}
.service-card:hover .sc-icon { background: var(--blue); }
.service-card:hover .sc-icon svg { filter: brightness(10); }
.sc-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.sc-desc { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 18px; }
.sc-link {
  font-size: 0.85rem; font-weight: 700; color: var(--blue);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.sc-link:hover { gap: 10px; }

/* ─── WHY ────────────────────────────────────── */
#why { padding: 100px 0; background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 60px;
}
.why-card {
  padding: 36px 30px; border-radius: var(--radius);
  background: var(--off-white); border: 1px solid var(--gray-100);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--white); }
.why-icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem; color: white;
  box-shadow: 0 8px 24px rgba(13,71,161,0.3);
}
.why-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.why-desc { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

/* ─── STATS ──────────────────────────────────── */
#stats {
  padding: 90px 0;
  background: linear-gradient(135deg, #0A3880 0%, #0D47A1 50%, #0B3D91 100%);
  position: relative; overflow: hidden;
}
#stats::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px; position: relative; z-index: 1;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800; color: var(--white); line-height: 1;
  margin-bottom: 8px; display: block;
}
.stat-num .accent { color: var(--orange); }
.stat-label { font-size: 0.92rem; color: rgba(255,255,255,0.75); font-weight: 500; }
.stat-divider { width: 40px; height: 3px; background: var(--orange); border-radius: 2px; margin: 10px auto 14px; }

/* ─── PROCESS ────────────────────────────────── */
#process { padding: 100px 0; background: var(--off-white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 60px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 44px;
  left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; }
.ps-num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white; font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: 0 8px 24px rgba(13,71,161,0.35);
  border: 3px solid white;
}
.ps-icon { font-size: 1.6rem; margin-bottom: 14px; }
.ps-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ps-desc { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

/* ─── PRICING ────────────────────────────────── */
#pricing { padding: 100px 0; background: var(--white); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 60px;
}
.pricing-card {
  border-radius: var(--radius); padding: 36px 28px;
  border: 2px solid var(--gray-100); background: var(--white);
  transition: all 0.35s cubic-bezier(0.34,1.2,0.64,1);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.pricing-card.featured {
  background: linear-gradient(160deg, var(--blue) 0%, #0B3D91 100%);
  border-color: transparent; color: white;
  transform: scale(1.04); box-shadow: var(--shadow-xl);
}
.pricing-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--orange); color: white;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.pc-service { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.pricing-card.featured .pc-service { color: rgba(255,152,0,0.9); }
.pc-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.pricing-card.featured .pc-name { color: white; }
.pc-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; margin: 18px 0; line-height: 1; }
.pc-price span { font-size: 1rem; font-weight: 500; }
.pricing-card.featured .pc-price { color: white; }
.pc-features { list-style: none; margin-bottom: 28px; flex: 1; }
.pc-features li {
  font-size: 0.88rem; padding: 8px 0; border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; gap: 8px; color: var(--gray-600);
}
.pricing-card.featured .pc-features li { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.82); }
.pc-features li::before { content: '✓'; color: #4CAF50; font-weight: 800; flex-shrink: 0; }
.pricing-card:not(.featured):hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.btn-pricing {
  width: 100%; padding: 14px; border-radius: 100px; font-weight: 700;
  font-size: 0.95rem; cursor: pointer; border: none; font-family: var(--font-body);
  transition: all 0.25s;
}
.btn-pricing-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; box-shadow: 0 4px 16px rgba(255,152,0,0.4);
}
.btn-pricing-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,152,0,0.5); }
.btn-pricing-outline { background: transparent; color: var(--blue); border: 2px solid rgba(13,71,161,0.25); }
.btn-pricing-outline:hover { background: var(--blue-pale); border-color: var(--blue); }

/* ─── TESTIMONIALS ───────────────────────────── */
#testimonials { padding: 100px 0; background: var(--off-white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 30px; border: 1px solid var(--gray-100);
  transition: all 0.3s; display: flex; flex-direction: column;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tc-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.tc-stars { color: #FFC107; font-size: 0.9rem; }
.google-badge {
  width: 24px; height: 24px; border-radius: 6px;
  background: white; border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; color: #4285F4;
}
.tc-text { font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; flex: 1; margin-bottom: 20px; font-style: italic; }
.tc-text::before { content: '"'; font-size: 2rem; color: var(--blue-pale); line-height: 0; vertical-align: -12px; margin-right: 4px; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: white;
}
.tc-name { font-weight: 700; font-size: 0.9rem; }
.tc-role { font-size: 0.8rem; color: var(--gray-400); }

/* ─── FAQ ────────────────────────────────────── */
#faq { padding: 100px 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 60px; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  overflow: hidden; transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(13,71,161,0.2); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  color: var(--text); cursor: pointer; transition: background 0.2s;
}
.faq-q:hover { background: var(--gray-50); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%; background: var(--blue-pale);
  color: var(--blue); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; flex-shrink: 0; transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--blue); color: white; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ─── BLOG ───────────────────────────────────── */
#blog { padding: 100px 0; background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.blog-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--gray-100); transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bc-thumb {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden;
}
.bc-body { padding: 24px; }
.bc-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.bc-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.bc-excerpt { font-size: 0.87rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.bc-meta { font-size: 0.8rem; color: var(--gray-400); display: flex; align-items: center; gap: 8px; }

/* ─── LEAD FORM ──────────────────────────────── */
#contact-form {
  padding: 100px 0;
  background: linear-gradient(135deg, #0A3880 0%, #0D47A1 60%, #1565C0 100%);
  position: relative; overflow: hidden;
}
#contact-form::before {
  content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,152,0,0.12), transparent 70%);
  top: -200px; right: -100px;
}
.form-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.form-content { color: white; }
.form-content .section-tag { background: rgba(255,152,0,0.2); color: var(--orange); border: 1px solid rgba(255,152,0,0.3); }
.form-content .section-heading { color: white; }
.form-content .section-sub { color: rgba(255,255,255,0.75); }
.form-perks { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.form-perk { display: flex; align-items: flex-start; gap: 12px; }
.fp-check {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(76,175,80,0.2);
  color: #4CAF50; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0; margin-top: 1px;
}
.fp-text { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.fp-text strong { color: white; }
.form-box { background: white; border-radius: var(--radius-lg); padding: 44px 40px; box-shadow: var(--shadow-xl); }
.form-box h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.form-box p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--gray-800); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200); font-family: var(--font-body);
  font-size: 0.92rem; color: var(--text); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(13,71,161,0.08); }
.form-group textarea { height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 15px; border-radius: 100px; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; box-shadow: 0 6px 24px rgba(255,152,0,0.45);
  transition: all 0.3s; margin-top: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,152,0,0.55); }

/* ─── CONTACT ────────────────────────────────── */
#contact { padding: 80px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.contact-card {
  padding: 32px 28px; border-radius: var(--radius);
  border: 1px solid var(--gray-100); text-align: center; transition: all 0.3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(13,71,161,0.15); }
.cc-icon { font-size: 2rem; margin-bottom: 14px; }
.cc-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 8px; }
.cc-value { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.cc-value a { color: var(--blue); text-decoration: none; }
.cc-value a:hover { text-decoration: underline; }
.cc-sub { font-size: 0.85rem; color: var(--gray-400); }

/* ─── FOOTER ─────────────────────────────────── */
footer { background: var(--gray-800); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 16px; line-height: 1.7; max-width: 300px; }
.footer-logo { color: white; font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.footer-col h4 { font-size: 0.88rem; font-weight: 800; color: white; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.58); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; text-decoration: none; transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--orange); color: white; border-color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.83rem; }
.footer-bottom a:hover { color: var(--orange); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ─── STICKY BUTTONS ─────────────────────────── */
.sticky-whatsapp {
  position: fixed; bottom: 100px; right: 24px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  text-decoration: none; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  animation: popIn 0.5s 1s both;
}
.sticky-whatsapp:hover { transform: scale(1.12); }

.sticky-call {
  position: fixed; bottom: 30px; right: 24px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; box-shadow: 0 6px 24px rgba(255,152,0,0.55);
  text-decoration: none; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  animation: popIn 0.5s 1.2s both;
}
.sticky-call:hover { transform: scale(1.12); }

.sticky-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--text); color: white; font-size: 0.78rem; font-weight: 700;
  padding: 6px 12px; border-radius: 100px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.sticky-whatsapp:hover .sticky-tooltip,
.sticky-call:hover .sticky-tooltip { opacity: 1; }

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes floatCard1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  nav, .header-actions .btn:first-child { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .form-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 30px; }
  .process-steps::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-grid { padding: 50px 0; }
  .hero-h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-float-card-1, .hero-float-card-2, .hero-float-card-3 { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-box { padding: 30px 22px; }
  .trust-items { gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-heading { font-size: 1.6rem; }
  .header-actions .btn { padding: 9px 16px; font-size: 0.82rem; }
  .process-steps { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
}
