/* ============================================
   THE PRO HOMES — STYLES
   ============================================ */

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

:root {
  --navy:    #0f1e3c;
  --blue:    #00E5FF;
  --blue-lt: #4DEDFF;
  --orange:  #00E5FF;
  --orange-dk: #0099BB;
  --white:   #ffffff;
  --gray-50: #f8fafc;
  --gray-100:#f1f5f9;
  --gray-200:#e2e8f0;
  --gray-500:#64748b;
  --gray-700:#334155;
  --gray-900:#0f172a;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(15,30,60,.10);
  --shadow-lg:0 12px 40px rgba(15,30,60,.15);
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
}

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.gradient-text {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg,#e0faff,#c8f5ff);
  color: var(--orange-dk);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,229,255,.35);
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); font-weight: 800; color: var(--gray-900); line-height: 1.2; margin-bottom: 16px; }
.section-sub { color: var(--gray-500); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none; text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange-dk) 0%, var(--blue) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,229,255,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,229,255,.50); }
.btn-outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  padding: 10px 20px;
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.full-width { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; }

/* ---- HEADER ---- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #ffffff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: all var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.3rem; font-weight: 700;
  color: var(--navy); text-decoration: none;
}
.logo strong { color: var(--blue); }
.logo-icon { font-size: 1.5rem; }
.logo-white { color: var(--white); }
.logo-white strong { color: var(--orange); }
.logo-img { height: 64px !important; width: auto !important; max-width: 220px; display: block; object-fit: contain; }
.logo-img-footer { height: 64px !important; width: auto !important; max-width: 200px; border-radius: 8px; }
.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  color: #1a2340; text-decoration: none;
  font-weight: 500; font-size: .92rem;
  padding: 8px 14px; border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--blue); background: rgba(0,100,255,.06); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #1a2340; border-radius: 2px; transition: all .3s; }

/* ---- HERO ---- */
@keyframes pulse-dot  { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
@keyframes shimmer    { 0%{background-position:200% center} 100%{background-position:-200% center} }
@keyframes orb-float  { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-24px) scale(1.06)} }
@keyframes orb-float2 { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(20px) scale(.94)} }
@keyframes btn-shimmer{ 0%{left:-120%} 100%{left:160%} }
@keyframes dot-blink  { 0%,100%{box-shadow:0 0 0 0 rgba(0,229,255,.5)} 70%{box-shadow:0 0 0 8px rgba(0,229,255,0)} }

.hero {
  position: relative;
  padding: 96px 0 0;
  overflow: hidden;
}

/* Background layers */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(145deg, #060e1f 0%, #0b1b3b 45%, #091528 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 38% 30%, rgba(0,229,255,.15) 0%, transparent 68%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23ffffff' fill-opacity='0.035'/%3E%3C/svg%3E");
}

/* Decorative orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: rgba(0,229,255,.15);
  top: -120px; left: -80px;
  animation: orb-float 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  background: rgba(0,180,255,.13);
  top: 60px; right: -60px;
  animation: orb-float2 11s ease-in-out infinite;
}
.hero-orb-3 {
  width: 260px; height: 260px;
  background: rgba(0,150,220,.10);
  bottom: 40px; left: 38%;
  animation: orb-float 14s ease-in-out infinite reverse;
}

.hero-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 440px;
  gap: 64px; align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,229,255,.10);
  color: #00E5FF;
  font-size: .82rem; font-weight: 600;
  padding: 7px 16px 7px 10px; border-radius: 100px;
  border: 1px solid rgba(0,229,255,.30);
  margin-bottom: 16px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite, dot-blink 1.8s ease-in-out infinite;
}

/* Headline */
.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.12;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.hero-shimmer {
  background: linear-gradient(90deg,
    #4DEDFF 0%, #00E5FF 25%, #ffffff 50%, #00E5FF 75%, #4DEDFF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-sub {
  color: rgba(255,255,255,.68);
  font-size: 1.08rem; line-height: 1.75;
  margin-bottom: 20px; max-width: 500px;
}

/* CTA buttons */
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

.hero-cta .btn-primary {
  position: relative; overflow: hidden;
}
.hero-cta .btn-primary::after {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-15deg);
}
.hero-cta .btn-primary:hover::after {
  animation: btn-shimmer .6s ease forwards;
}
.hero-cta .btn-ghost:hover {
  background: rgba(255,255,255,.2);
  box-shadow: 0 0 20px rgba(255,255,255,.12);
}

/* Stats */
.hero-stats { display: flex; align-items: stretch; gap: 14px; flex-wrap: wrap; }
.stat-card {
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px 20px;
  min-width: 110px;
}
.stat-card strong {
  color: var(--white); font-size: 1.55rem; font-weight: 800;
  letter-spacing: -.01em; line-height: 1;
}
.stat-card span { color: rgba(255,255,255,.55); font-size: .75rem; font-weight: 500; }

/* Hero Form Card */
.hero-form-card {
  background: rgba(255,255,255,.97);
  border-radius: 22px;
  padding: 26px;
  box-shadow:
    0 32px 64px rgba(0,0,0,.28),
    inset 0 0 0 1px rgba(0,229,255,.20);
}
.hero-form-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.hero-form-card > p { color: var(--gray-500); font-size: .9rem; margin-bottom: 26px; }
.hero-form-card .form-group input,
.hero-form-card .form-group select {
  padding: 13px 16px;
}
.hero-form-card .form-group input:focus,
.hero-form-card .form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,229,255,.18);
}

/* Wave */
.hero-wave { position: relative; margin-top: 24px; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 20px 0; }
.trust-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-inner > p { color: var(--gray-500); font-size: .85rem; font-weight: 600; white-space: nowrap; }
.trust-logos { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-logos span {
  color: var(--gray-700); font-size: .875rem; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}

/* ---- SERVICES ---- */
.services {
  background: var(--gray-900);
  position: relative; overflow: hidden;
}
.services::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,229,255,.10) 0%, transparent 70%);
  pointer-events: none;
}
.services .section-header { position: relative; }
.services .section-tag { background: rgba(0,229,255,.10); color: #00E5FF; border-color: rgba(0,229,255,.25); }
.services .section-header h2 { color: var(--white); }
.services .section-sub { color: rgba(255,255,255,.5); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

/* Card base */
.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 26px 22px 22px;
  text-decoration: none;
  color: var(--white);
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1),
              box-shadow .3s ease,
              border-color .3s ease,
              background .3s ease;
  cursor: pointer;
}

/* Ambient glow layer */
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, var(--c-lt, #fff) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.service-card:hover::after { opacity: .07; }

/* Colored left accent bar */
.service-card::before {
  content: '';
  position: absolute; left: 0; top: 16px; bottom: 16px;
  width: 3px; border-radius: 0 3px 3px 0;
  background: var(--c, #3b82f6);
  opacity: 0; transform: scaleY(.4);
  transition: opacity .25s ease, transform .3s ease;
}
.service-card:hover::before { opacity: 1; transform: scaleY(1); }

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  box-shadow: 0 20px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.1);
}

/* Popular badge */
.sc-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--c, #3b82f6);
  color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
}

/* Icon wrap */
.sc-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--c-lt, rgba(255,255,255,.1));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .3s;
}
.service-card:hover .sc-icon-wrap {
  transform: scale(1.12) rotate(-4deg);
  background: var(--c, rgba(255,255,255,.15));
}
.sc-icon { font-size: 1.7rem; line-height: 1; }

/* Body */
.sc-body { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.sc-body h4 { font-size: .97rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.sc-body p  { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* Footer row */
.sc-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 4px;
}
.sc-tag {
  font-size: .7rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--c, #3b82f6);
  background: rgba(255,255,255,.05);
  padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.08);
}
.sc-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: rgba(255,255,255,.4);
  transition: all .25s ease;
}
.service-card:hover .sc-arrow {
  background: var(--c, #3b82f6);
  border-color: var(--c, #3b82f6);
  color: #fff;
  transform: translateX(2px);
}

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .services-grid { grid-template-columns: 1fr; } }

/* ---- HOW IT WORKS ---- */
.how { background: var(--white); }
.steps-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.step {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  flex: 1; min-width: 220px; max-width: 280px;
  position: relative;
}
.step-number {
  position: absolute; top: -1px; right: 20px;
  font-size: 4rem; font-weight: 900;
  color: var(--gray-200); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step h4 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.step p { font-size: .875rem; color: var(--gray-500); }
.step-arrow { font-size: 1.8rem; color: var(--gray-200); flex-shrink: 0; }

/* ---- ABOUT ---- */
.about { background: var(--gray-50); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual {
  position: relative;
  background: linear-gradient(135deg, var(--navy), #1a4080);
  border-radius: 24px;
  height: 420px;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
.about-visual::before {
  content: '🏠';
  font-size: 8rem; opacity: .15;
}
.about-card-1, .about-card-2 {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
}
.about-card-1 { bottom: -20px; left: -20px; }
.about-card-1 strong { font-size: 1.8rem; color: var(--blue); font-weight: 800; }
.about-card-1 span { font-size: .8rem; color: var(--gray-500); }
.about-card-2 { top: -20px; right: -20px; }
.about-card-2 strong { font-size: 1.4rem; color: var(--orange); font-weight: 800; }
.about-card-2 span { font-size: .8rem; color: var(--gray-500); }
.about-badge {
  position: absolute; bottom: 30px; right: -20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: var(--white); font-size: .8rem; font-weight: 700;
  padding: 10px 16px; border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,229,255,.35);
}
.about-text h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: var(--gray-900); margin-bottom: 20px; }
.about-text p { color: var(--gray-500); margin-bottom: 16px; }
.about-list { list-style: none; margin: 24px 0 32px; display: flex; flex-direction: column; gap: 10px; }
.about-list li { font-weight: 500; color: var(--gray-700); }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.review-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.stars { font-size: 1rem; }
.review-card p { color: var(--gray-700); font-size: .93rem; line-height: 1.7; font-style: italic; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white); font-weight: 700; font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .9rem; color: var(--gray-900); }
.reviewer small { color: var(--gray-500); font-size: .8rem; }

/* ---- CONTACT ---- */
.contact { background: linear-gradient(135deg, var(--gray-50) 0%, #eafaff 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start; }

/* Forms */
.lead-form, .quick-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit; font-size: .93rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,229,255,.18);
}
.form-group input.error,
.form-group select.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
.form-group textarea { resize: vertical; }
.consent-intro {
  font-size: .78rem; color: var(--gray-500); line-height: 1.65;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 12px 14px; margin-bottom: 10px;
}
.consent-intro a { color: var(--blue); text-decoration: underline; }
.consent-group .checkbox-label {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .82rem; color: var(--gray-500); cursor: pointer;
}
.consent-group input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; }
.consent-group a { color: var(--blue); }
.form-note { text-align: center; font-size: .8rem; color: var(--gray-500); margin-top: -4px; }

/* Contact Info Sidebar */
.contact-info { padding-top: 8px; }
.contact-info h3 { font-size: 1.3rem; font-weight: 700; color: var(--gray-900); margin-bottom: 12px; }
.phone-link {
  display: block; font-size: 1.4rem; font-weight: 800;
  color: var(--blue); text-decoration: none; margin-bottom: 6px;
}
.phone-link:hover { color: var(--orange); }
.contact-info > p { color: var(--gray-500); font-size: .875rem; margin-bottom: 32px; }
.contact-features { display: flex; flex-direction: column; gap: 20px; }
.cf-item { display: flex; gap: 14px; align-items: flex-start; }
.cf-item > span { font-size: 1.4rem; flex-shrink: 0; }
.cf-item strong { display: block; font-size: .9rem; color: var(--gray-900); font-weight: 600; }
.cf-item p { font-size: .82rem; color: var(--gray-500); margin: 0; }

/* ---- FOOTER ---- */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand { text-align: center; display: flex; flex-direction: column; align-items: center; }
.footer-brand .logo { margin-bottom: 16px; justify-content: center; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-bottom: 16px; }
.footer-phone { color: var(--white); text-decoration: none; font-weight: 600; }
.footer-col h5 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 16px; letter-spacing: .04em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .875rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
  font-size: .8rem;
}

/* ---- MODAL ---- */
.modal {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(15,30,60,.65); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal.show { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: 20px; padding: 48px 40px;
  text-align: center; max-width: 400px; width: 100%;
  box-shadow: var(--shadow-lg);
  animation: popIn .3s ease;
}
@keyframes popIn { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-icon { font-size: 3rem; margin-bottom: 16px; }
.modal-box h3 { font-size: 1.5rem; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.modal-box p { color: var(--gray-500); margin-bottom: 28px; }

/* Thank You modal */
.modal-thankyou { max-width: 560px; padding: 44px 40px; }
.ty-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff; font-size: 1.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.modal-thankyou h3 { font-size: 2rem; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.ty-sub { font-size: 1rem; color: var(--gray-700); margin-bottom: 4px; }
.ty-sub2 { font-size: .9rem; color: var(--gray-500); margin-bottom: 24px; }
.ty-next {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 18px 20px;
  text-align: left; margin-bottom: 24px;
}
.ty-next-title { font-weight: 700; color: var(--gray-900); font-size: .95rem; margin-bottom: 12px; }
.ty-next-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ty-next-list li { font-size: .88rem; color: var(--gray-700); }
.ty-next-list a { color: var(--blue); font-weight: 700; text-decoration: none; }
.ty-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem;
  cursor: pointer; text-decoration: none;
  border: 2px solid var(--gray-200);
  background: transparent; color: var(--gray-700);
  transition: all var(--transition);
}
.btn-outline-dark:hover { border-color: var(--gray-500); color: var(--gray-900); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 480px; width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(8,12,24,.98); border-bottom: 1px solid rgba(0,229,255,.08);
    padding: 16px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,.4);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .hamburger { display: flex; }
  .hero { padding: 88px 0 40px; }
  .hero-cta { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .about-card-1, .about-card-2, .about-badge { display: none; }
}
@media (max-width: 480px) {
  .trust-inner { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
}
