/* ===== VARIABLES ===== */
:root {
  --blue:        #1a4fba;
  --blue-dark:   #0f2f7a;
  --teal:        #00c9a7;
  --teal-dark:   #00a88c;
  --gradient:    linear-gradient(135deg, #1a4fba 0%, #0e7fc2 55%, #00c9a7 100%);
  --gradient-r:  linear-gradient(135deg, #00c9a7 0%, #0e7fc2 45%, #1a4fba 100%);
  --white:       #ffffff;
  --off-white:   #f4f8ff;
  --gray-light:  #e8edf5;
  --gray:        #6b7a99;
  --dark:        #0b1629;
  --text:        #1e293b;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(26,79,186,.12);
  --shadow-lg:   0 8px 48px rgba(26,79,186,.18);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.3rem; font-weight: 700; }
p  { font-size: 1.05rem; color: var(--gray); line-height: 1.75; }

/* ===== UTILITIES ===== */
.container       { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label   { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); background: rgba(0,201,167,.1); padding: 6px 16px; border-radius: 50px; margin-bottom: 14px; }
.section-title   { margin-bottom: 16px; }
.section-sub     { max-width: 560px; margin-bottom: 48px; }
.text-center     { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.gradient-text   { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: 1rem; font-weight: 700;
  cursor: pointer; border: none; transition: all .25s ease;
}
.btn-primary {
  background: var(--gradient); color: var(--white);
  box-shadow: 0 4px 20px rgba(0,201,167,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,201,167,.45); }
.btn-outline {
  background: transparent; color: var(--blue); border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white); color: var(--blue); font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.2); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 32px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
  font-size: .95rem; font-weight: 600; color: var(--text);
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-cta .btn { padding: 10px 24px; font-size: .9rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--text); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-top: 1px solid var(--gray-light);
  padding: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 24px; font-weight: 600; font-size: 1rem;
  border-bottom: 1px solid var(--gray-light); color: var(--text);
}
.mobile-menu a:hover { color: var(--blue); background: var(--off-white); }
.mobile-menu .btn { margin: 16px 24px 24px; }

/* ===== HERO ===== */
#hero {
  padding-top: 72px;
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,201,167,.15) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 20% 30%, rgba(26,79,186,.3) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,201,167,.15); border: 1px solid rgba(0,201,167,.3);
  color: var(--teal); font-size: .85rem; font-weight: 600;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 24px;
}
.hero-badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero-content h1 { color: var(--white); margin-bottom: 24px; }
.hero-content h1 em { font-style: normal; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-content p { color: rgba(255,255,255,.7); font-size: 1.15rem; max-width: 520px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--white); background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-stat .lbl { font-size: .85rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.hero-card-wrap {
  position: relative; width: 100%; max-width: 460px;
}
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px); border-radius: 24px;
  padding: 36px; color: var(--white);
}
.hero-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.hero-card p { color: rgba(255,255,255,.6); font-size: .95rem; margin-bottom: 28px; }
.metric-row { display: flex; flex-direction: column; gap: 16px; }
.metric { display: flex; flex-direction: column; gap: 6px; }
.metric-header { display: flex; justify-content: space-between; font-size: .85rem; }
.metric-header span:last-child { color: var(--teal); font-weight: 700; }
.metric-bar { height: 8px; background: rgba(255,255,255,.1); border-radius: 4px; overflow: hidden; }
.metric-fill { height: 100%; border-radius: 4px; background: var(--gradient); transition: width 1.5s ease; }
.float-badge {
  position: absolute; background: var(--white); border-radius: 14px;
  padding: 12px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 700; color: var(--text);
  animation: float 4s ease-in-out infinite;
}
.float-badge .icon { font-size: 1.3rem; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.badge-top { top: -20px; right: -20px; animation-delay: 0s; }
.badge-bot { bottom: -20px; left: -20px; animation-delay: 2s; }

/* ===== SERVICES ===== */
#services { padding: 100px 0; background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 32px; border: 1px solid var(--gray-light);
  transition: all .3s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(26,79,186,.1), rgba(0,201,167,.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 24px;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.service-card p { font-size: .95rem; margin-bottom: 24px; }
.service-features { display: flex; flex-direction: column; gap: 10px; }
.service-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--text); font-weight: 500;
}
.service-features li::before {
  content: '✓'; display: flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; border-radius: 50%;
  background: var(--gradient); color: white; font-size: .7rem; font-weight: 800;
}

/* ===== ABOUT ===== */
#about { padding: 100px 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap {
  background: var(--gradient); border-radius: 24px; padding: 4px;
  box-shadow: var(--shadow-lg);
}
.about-img-inner {
  background: var(--dark); border-radius: 22px; overflow: hidden;
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.about-img-inner img { width: 80%; }
.about-badge-float {
  position: absolute; background: var(--white); border-radius: 14px;
  padding: 14px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-size: .9rem; font-weight: 700;
}
.about-badge-float .num { font-size: 1.6rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.badge-tl { top: -16px; left: -16px; }
.badge-br { bottom: -16px; right: -16px; }
.about-content .section-sub { margin-bottom: 24px; }
.about-points { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.about-point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: var(--off-white); border-radius: var(--radius);
  border: 1px solid var(--gray-light);
}
.about-point-icon {
  min-width: 44px; height: 44px; border-radius: 12px;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; color: white;
}
.about-point h4 { font-size: 1rem; margin-bottom: 4px; }
.about-point p { font-size: .9rem; margin: 0; }

/* ===== PROCESS ===== */
#process { padding: 100px 0; background: var(--off-white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 2px;
  background: var(--gradient); z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient); color: white;
  font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 4px 20px rgba(0,201,167,.3);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: .9rem; }

/* ===== GHL BOOKING ===== */
#booking { padding: 100px 0; background: var(--dark); position: relative; overflow: hidden; }
#booking::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0,201,167,.1) 0%, transparent 70%);
}
.booking-inner { position: relative; z-index: 2; text-align: center; }
.booking-inner h2 { color: var(--white); }
.booking-inner p { color: rgba(255,255,255,.65); max-width: 560px; margin: 16px auto 48px; }
.ghl-calendar-embed {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; overflow: hidden; min-height: 600px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.ghl-calendar-embed iframe { width: 100%; border: none; min-height: 600px; }
.embed-placeholder {
  padding: 60px 40px; text-align: center; color: rgba(255,255,255,.4);
}
.embed-placeholder .icon { font-size: 3rem; margin-bottom: 16px; }
.embed-placeholder p { color: rgba(255,255,255,.4); font-size: .9rem; max-width: 380px; margin: 0 auto; }
.embed-placeholder code {
  display: block; margin-top: 16px; padding: 12px 20px;
  background: rgba(255,255,255,.08); border-radius: 8px;
  font-family: monospace; font-size: .8rem; color: var(--teal);
}

/* ===== TESTIMONIALS ===== */
#testimonials { padding: 100px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--off-white); border-radius: var(--radius);
  padding: 36px 32px; border: 1px solid var(--gray-light);
  transition: all .3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card blockquote { font-size: .95rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; color: white; font-weight: 800; font-size: 1rem;
}
.reviewer-name { font-weight: 700; font-size: .95rem; }
.reviewer-role { font-size: .82rem; color: var(--gray); }

/* ===== CONTACT ===== */
#contact { padding: 100px 0; background: var(--off-white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info h2 { margin-bottom: 8px; }
.contact-info > p { margin-bottom: 8px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); padding: 18px 20px;
  border-radius: var(--radius); border: 1px solid var(--gray-light);
  transition: box-shadow .25s;
}
.contact-item:hover { box-shadow: var(--shadow); }
.contact-item-icon {
  min-width: 44px; height: 44px; border-radius: 12px;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem;
}
.contact-item a { color: var(--text); font-weight: 600; font-size: .95rem; }
.contact-item a:hover { color: var(--blue); }
.contact-form-wrap {
  background: var(--white); border-radius: 24px; padding: 4px;
  background: var(--gradient); box-shadow: var(--shadow-lg);
}
.contact-form-inner {
  background: var(--white); border-radius: 22px;
  padding: 48px 40px;
}
.contact-form-inner h3 { margin-bottom: 8px; }
.contact-form-inner > p { font-size: .9rem; margin-bottom: 32px; }
.ghl-form-embed { min-height: 400px; }
.ghl-form-embed iframe { width: 100%; border: none; min-height: 400px; }

/* ===== CTA BANNER ===== */
#cta { padding: 80px 0; background: var(--gradient); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-inner h2 { color: var(--white); max-width: 600px; }
.cta-inner p { color: rgba(255,255,255,.8); margin-top: 8px; }

/* ===== FOOTER ===== */
#footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 48px; }
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .9rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--teal); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: all .25s;
}
.social-link:hover { background: var(--gradient); border-color: transparent; color: white; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual      { display: none; }
  .about-inner      { grid-template-columns: 1fr; gap: 48px; }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .process-steps    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner    { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-inner        { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle       { display: flex; }
  .services-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats       { flex-wrap: wrap; gap: 20px; }
  .contact-form-inner { padding: 32px 24px; }
}
