:root {
  --blue: #0a2463;
  --orange: #ff6b35;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #ffffff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

/* Custom cursor from original layout */
body.cursor-enabled {
  cursor: none;
}
body.cursor-enabled a,
body.cursor-enabled button,
body.cursor-enabled input,
body.cursor-enabled textarea,
body.cursor-enabled [role="button"] {
  cursor: none;
}

.custom-cursor,
.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
}
.custom-cursor {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  z-index: 9999;
  mix-blend-mode: difference;
}
.custom-cursor-follower {
  width: 40px;
  height: 40px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  z-index: 9998;
  opacity: .5;
}
.custom-cursor.visible,
.custom-cursor-follower.visible {
  opacity: 1;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

h1, h2, h3, h4, .logo {
  font-family: "Montserrat", sans-serif;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 12px 22px;
  font-weight: 700;
  transition: .25s ease;
}
.text-btn {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-dark { background: var(--blue); color: #fff; }
.btn-light { background: #fff; color: var(--orange); }

.urgency-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, var(--orange), #ff8555);
  color: #fff;
  z-index: 50;
}
.urgency-wrap {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; gap: 16px;
}
.urgency-wrap strong { display: block; }
.urgency-wrap span { font-size: 14px; opacity: .95; }
.urgency-actions { display: flex; align-items: center; gap: 8px; }
.close-btn {
  background: transparent; border: 0; color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer;
}

.site-header {
  position: fixed;
  left: 0; right: 0; top: 0;
  z-index: 40;
  padding: 22px 0;
  transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(17, 24, 39, .08);
  padding: 14px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.logo { color: #fff; font-weight: 800; font-size: 30px; text-decoration: none; display: grid;}
.logo span { color: var(--orange); }
.site-header.scrolled .logo { color: var(--blue); }

.main-nav { display: flex; gap: 26px; }
.main-nav a {
  text-decoration: none; color: #fff; font-weight: 700; position: relative;
}
.site-header.scrolled .main-nav a { color: var(--blue); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--orange);
  transition: .2s ease;
}
.main-nav a:hover::after { width: 100%; }

.menu-toggle { display: none; border: 0; background: transparent; color: #fff; font-size: 28px; cursor: pointer; }
.site-header.scrolled .menu-toggle { color: var(--blue); }

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 80px;
}
.hero-glow {
  position: absolute; border-radius: 999px; filter: blur(80px); opacity: .15;
}
.hero-glow-orange { width: 420px; height: 420px; background: var(--orange); right: 5%; top: 10%; }
.hero-glow-blue { width: 360px; height: 360px; background: var(--blue); left: 6%; bottom: 8%; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}
.badge {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--blue);
  background: #fff3ee;
  border: 1px solid #ffd8c9;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.hero h1 { font-size: clamp(40px, 8vw, 92px); color: var(--blue); line-height: .95; }
.hero h1 span { color: var(--orange); }
.subtitle { font-size: clamp(18px, 2.3vw, 30px); color: #4b5563; margin: 24px 0; }
.hero-list { margin: 0 0 28px; padding-left: 20px; }
.hero-list li { margin: 9px 0; font-size: 18px; }

.hero-photo-card {
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 26px 50px rgba(17, 24, 39, .18);
  background: #fff;
}
.photo-placeholder {
  background: linear-gradient(135deg, #e9edf8, #ffe7de);
  min-height: 440px;
  display: grid;
  place-items: center;
  color: var(--blue);
  text-align: center;
}
.photo-placeholder p { margin: 0; font-weight: 700; font-size: 22px; }
.photo-placeholder small { color: #4b5563; }
.photo-placeholder img { width: 100%; }
.hero-metrics {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hero-metrics div { text-align: center; }
.hero-metrics strong { display: block; color: var(--blue); font-size: 30px; }
.hero-metrics span { color: var(--muted); font-size: 13px; }

section { padding: 90px 0; }
.metrics { background: #fff; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.metrics-grid article {
  background: #f9fafb;
  border: 2px solid #eef2f7;
  border-radius: 18px;
  padding: 20px;
}
.metrics-grid strong { font-family: "Montserrat", sans-serif; font-size: 44px; color: var(--blue); }
.metrics-grid span { display: block; color: var(--muted); font-weight: 700; }

.marquee {
  background: linear-gradient(90deg, var(--blue), #1a3a7a);
  color: #fff;
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  animation: slide 28s linear infinite;
}
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.speaker { background: linear-gradient(180deg, #f9fafb, #fff); }
.speaker-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.speaker h2, .cases h2, .expertise h2, .testimonials h2, .contact h2 { font-size: clamp(34px, 6vw, 68px); color: var(--blue); }
.speaker p { color: #4b5563; font-size: 18px; }
.check-list { margin: 20px 0 0; padding-left: 20px; }
.check-list li { margin: 8px 0; font-weight: 700; }

.cases { background: #f9fafb; }
.section-subtitle { margin: 10px 0 30px; font-size: 22px; color: #6b7280; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: #fff;
  border: 1px solid #edf2f8;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, .05);
}
.card h3 { color: var(--blue); margin: 0 0 8px; }
.card strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 46px;
  color: var(--orange);
}
.card p { margin: 0; color: #6b7280; }

.expertise { background: #fff; }
.expertise-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.expertise-grid article {
  border-radius: 28px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #1b4ab5);
}
.expertise-grid article:nth-child(odd) { background: linear-gradient(135deg, var(--orange), #ff8555); }

.roi {
  background: var(--blue);
  color: #fff;
}
.roi-wrap { max-width: 900px; text-align: center; }
.roi label { display: block; margin: 28px 0 8px; font-weight: 700; }
#budget { width: 100%; accent-color: var(--orange); cursor: pointer; }
.budget-value {
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--orange);
}
.roi-grid { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.roi-grid article { background: rgba(255,255,255,.12); border-radius: 18px; padding: 16px; }
.roi-grid span { font-size: 14px; opacity: .9; }
.roi-grid strong { display: block; font-size: 25px; margin-top: 4px; }

.testimonials { background: #f9fafb; }
.testimonials-grid h4 { margin-top: 14px; color: var(--blue); font-size: 17px; }

.contact-wrap { max-width: 740px; text-align: center; }
.contact-form { margin-top: 20px; text-align: left; }
.contact-form label { display: block; margin: 14px 0 8px; font-weight: 700; color: var(--blue); }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px;
  font: inherit;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--orange);
}
.contact-form .btn { width: 100%; margin-top: 20px; font-size: 18px; padding: 16px; }
.consent-row {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4b5563;
  font-size: 14px;
}
.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.consent-row .text-btn {
  color: var(--blue);
  font-weight: 700;
}
.form-success { display: none; color: #047857; font-weight: 700; margin-top: 12px; text-align: center; }
.form-success.show { display: block; }

.site-footer {
  background: var(--blue);
  color: #fff;
  padding: 44px 0 24px;
}
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.site-footer h3 { font-size: 34px; }
.site-footer h3 span { color: var(--orange); }
.footer-links { display: flex; gap: 14px; }
.footer-links a {
  color: #fff; text-decoration: none; background: rgba(255,255,255,.12);
  padding: 9px 14px; border-radius: 12px;
}
.footer-policy-btn {
  color: #fff;
  background: rgba(255,255,255,.12);
  padding: 9px 14px;
  border-radius: 12px;
  text-decoration: none;
}
.copyright {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 24px;
  padding-top: 16px;
  color: #cbd5e1;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 120;
}
.modal.open {
  display: block;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, .6);
}
.modal-dialog {
  position: relative;
  width: min(920px, 92%);
  max-height: 84vh;
  margin: 7vh auto 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(2, 6, 23, .35);
  padding: 24px 24px 18px;
  overflow: hidden;
}
.modal-dialog h2 {
  font-size: 30px;
  color: var(--blue);
  margin-bottom: 10px;
  padding-right: 28px;
}
.modal-content {
  overflow: auto;
  max-height: calc(84vh - 86px);
  padding-right: 8px;
}
.modal-content p {
  margin: 0 0 14px;
  color: #374151;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #6b7280;
}

@media (max-width: 980px) {
  .hero-grid, .speaker-grid { grid-template-columns: 1fr; }
  .cards-grid, .expertise-grid, .roi-grid, .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .desktop-cta { display: none; }
  .main-nav {
    position: absolute;
    top: 68px;
    right: 4%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, .18);
    flex-direction: column;
    min-width: 220px;
    padding: 12px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { color: var(--blue) !important; }
  .menu-toggle { display: block; }
}

@media (max-width: 640px) {
  .cards-grid, .expertise-grid, .roi-grid, .metrics-grid { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; text-align: center; }
  .urgency-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 980px) {
  body.cursor-enabled {
    cursor: auto;
  }
  body.cursor-enabled a,
  body.cursor-enabled button,
  body.cursor-enabled input,
  body.cursor-enabled textarea,
  body.cursor-enabled [role="button"] {
    cursor: pointer;
  }
  .custom-cursor,
  .custom-cursor-follower {
    display: none;
  }
}
