@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

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

:root {
  --navy: #1a2b4a;
  --navy-dark: #0f1c33;
  --navy-deep: #0a1220;
  --navy-mid: #243356;
  --navy-light: #2e4270;
  --orange: #e8620a;
  --orange-light: #f07830;
  --orange-dark: #c5520a;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --light-bg: #eef1f6;
  --border: rgba(26,43,74,0.12);
  --border-light: rgba(26,43,74,0.07);
  --text: #1a2b4a;
  --text-mid: #3d5278;
  --text-muted: #6b80a0;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 72px;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 12px rgba(26,43,74,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.nav-logo-text span {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-ctas {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  line-height: 1;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,43,74,0.25); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
}
.btn-orange:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,98,10,0.3); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: white; }

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn-outline-orange:hover { background: var(--orange); color: white; }

.btn-ghost {
  background: var(--off-white);
  color: var(--text-mid);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--light-bg); color: var(--navy); }

.btn-lg {
  font-size: 1rem;
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  border-radius: 7px;
}

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

/* SECTIONS */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.05; color: var(--navy); }
h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; }
h3 { font-size: 1.5rem; font-weight: 700; }

.accent { color: var(--orange); }

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 5rem;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  right: -10%; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,98,10,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  left: -5%; bottom: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,66,112,0.4) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1.1fr 460px;
  gap: 4rem;
  align-items: start;
  width: 100%;
}

.hero-text { min-width: 0; }
.hero-form-wrap { width: 100%; }
.hero-form-wrap .form-card { padding: 2rem; }
.hero-form-wrap .form-card h3 { margin-bottom: 0.4rem; }
.form-card-sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,98,10,0.15);
  border: 1px solid rgba(232,98,10,0.3);
  color: var(--orange-light);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-content h1 { color: var(--white); }
.hero-content h1 .accent { color: var(--orange); }

.hero-sub {
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 540px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
}

.trust-item strong { color: rgba(255,255,255,0.9); }

/* STATS */
#stats {
  padding: 0;
  background: var(--navy);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.83rem;
  margin-top: 0.4rem;
}

/* ABOUT */
#about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 { margin-top: 0.5rem; }
.about-text p { color: var(--text-muted); margin-top: 1.25rem; line-height: 1.85; font-size: 0.95rem; }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  border-left: 3px solid var(--orange);
}

.feature-text strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.feature-text span { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

.about-card {
  background: var(--navy);
  border-radius: 18px;
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
  color: white;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,98,10,0.2) 0%, transparent 70%);
}

.about-card .section-label { color: var(--orange-light); }
.about-card .section-label::before { background: var(--orange-light); }
.about-card h3 { color: white; font-size: 1.9rem; margin-top: 0.5rem; }
.about-card p { color: rgba(255,255,255,0.6); margin-top: 1rem; font-size: 0.9rem; line-height: 1.8; }

.spots-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,98,10,0.2);
  border: 1px solid rgba(232,98,10,0.4);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-top: 1.5rem;
}

.spots-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

/* SERVICES */
#services { background: var(--white); }

.services-intro { max-width: 600px; }
.services-intro p { color: var(--text-muted); margin-top: 1rem; font-size: 0.95rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.service-card:hover {
  border-color: rgba(26,43,74,0.2);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(26,43,74,0.12);
  background: var(--white);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; margin-top: 0.5rem; color: var(--navy); }
.service-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.7; }

.card-price {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
}

.card-arrow {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all 0.2s;
}
.service-card:hover .card-arrow { color: var(--orange); transform: translate(2px,-2px); }

/* INDUSTRIES */
#industries { background: var(--navy-deep); }

#industries .section-label { color: var(--orange-light); }
#industries .section-label::before { background: var(--orange-light); }
#industries h2 { color: var(--white); }
#industries > .container > p { color: rgba(255,255,255,0.55); margin-top:1rem; max-width:600px; font-size:0.95rem; }

.industries-wrap {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.industry-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 0.87rem;
  padding: 0.55rem 1.15rem;
  border-radius: 100px;
  transition: all 0.2s;
}

.industry-tag:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.industries-note {
  margin-top: 2rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.87rem;
}

/* PRICING */
#pricing { background: var(--off-white); }

.pricing-intro p { color: var(--text-muted); margin-top:1rem; max-width:600px; font-size:0.95rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem;
  position: relative;
}

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.pricing-card.featured h3 { color: white; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.55); }
.pricing-card.featured .pricing-amount { color: var(--orange-light); }
.pricing-card.featured .pricing-per { color: rgba(255,255,255,0.45); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.7); }
.pricing-card.featured .pricing-features li::before { color: var(--orange-light); }

.featured-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.pricing-desc { color: var(--text-muted); font-size: 0.83rem; margin-bottom: 1.5rem; }

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.pricing-amount sup { font-size: 1.4rem; vertical-align: top; margin-top: 0.5rem; }
.pricing-per { color: var(--text-muted); font-size: 0.78rem; margin-top: 0.25rem; }

.pricing-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--text-muted);
}

.pricing-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-note {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.8;
  border-left: 3px solid var(--orange);
}

/* FAQ */
#faq { background: var(--white); }

.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: var(--off-white);
  border: none;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}

.faq-q:hover { background: var(--light-bg); }

.faq-chevron {
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 1.5rem 1.25rem;
  background: var(--off-white);
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.85;
}

.faq-item.open .faq-a { display: block; }

/* CONTACT */
#contact { background: var(--navy-deep); }

#contact .section-label { color: var(--orange-light); }
#contact .section-label::before { background: var(--orange-light); }
#contact h2 { color: var(--white); }
#contact .contact-intro { text-align: center; max-width: 640px; margin: 0 auto; }
#contact .contact-intro p { color: rgba(255,255,255,0.6); margin-top:1rem; line-height:1.85; font-size:0.95rem; }
#contact .contact-intro .section-label { justify-content: center; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
}

.contact-methods-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--orange);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.contact-method:hover {
  background: rgba(232,98,10,0.15);
  border-color: rgba(232,98,10,0.3);
  border-left-color: var(--orange);
  transform: translateY(-2px);
}

.method-label { font-size: 0.73rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.05em; }
.method-value { font-weight: 500; color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-top: 0.2rem; }

.contact-back-to-form { text-align: center; margin-top: 2.5rem; }

/* FORM */
.form-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(10,18,32,0.3);
}

.form-card h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); }

.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 95px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* FOOTER */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.footer-logo img { height: 34px; width: auto; }
.footer-logo strong { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: white; }
.footer-logo span { font-size: 0.6rem; color: var(--orange-light); text-transform: uppercase; letter-spacing: 0.08em; display: block; }

.footer-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.78rem; }

/* SERVICE PAGE */
.service-hero {
  padding: 8rem 2rem 4.5rem;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,98,10,0.09) 0%, transparent 65%);
}

.service-hero .section-label { color: var(--orange-light); }
.service-hero .section-label::before { background: var(--orange-light); }
.service-hero h1 { color: var(--white); font-size: clamp(2.5rem, 6vw, 5rem); }
.service-hero p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-top: 1rem; line-height: 1.8; max-width: 680px; }

.service-details { padding: 4.5rem 2rem; background: var(--off-white); }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.detail-grid h2 { font-size: 2.2rem; }

.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0.6rem 0.75rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.includes-list li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.price-block {
  background: var(--navy);
  border-radius: 18px;
  padding: 2.5rem;
  text-align: center;
  position: sticky;
  top: 84px;
  color: white;
}

.price-block .section-label { color: var(--orange-light); justify-content: center; }
.price-block .section-label::before { background: var(--orange-light); }

.price-block .big-price {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--orange-light);
  line-height: 1;
  margin-top: 0.5rem;
}

.price-block .price-note { color: rgba(255,255,255,0.45); font-size: 0.83rem; margin-top: 0.4rem; }

.price-block .btn { width: 100%; justify-content: center; margin-top: 1.5rem; }
.price-block .btn + .btn { margin-top: 0.6rem; }

.info-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-left: 3px solid var(--orange);
}
.info-box strong { color: var(--orange); font-size: 0.85rem; }
.info-box p { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.4rem; line-height: 1.7; }
.info-box a { color: var(--orange); }

/* THANK YOU */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--off-white);
}

.thank-you-inner { max-width: 560px; }

.ty-icon {
  width: 72px; height: 72px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 2rem;
  animation: popIn 0.5s ease;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}

.thank-you-inner h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.thank-you-inner p { color: var(--text-muted); margin-top: 1rem; font-size: 1rem; line-height: 1.8; }

.ty-next {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ty-next .contact-method {
  background: var(--white);
  border-color: var(--border);
  border-radius: 12px;
  text-align: left;
}

.ty-next .method-label { color: var(--text-muted); }
.ty-next .method-value { color: var(--navy); }
.ty-next .method-icon { background: rgba(232,98,10,0.1); }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px rgba(26,43,74,0.12);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav a:last-child { border-bottom: none; }

/* STICKY FOOTER CTAs */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  display: flex;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  background: rgba(10, 18, 32, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  justify-content: center;
}

.btn-sticky {
  flex: 1;
  max-width: 220px;
  justify-content: center;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-sticky-ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-sticky-ghost:hover {
  background: rgba(255,255,255,0.14);
  color: white;
}

@media (max-width: 1000px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 600px;
  }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-ctas .btn-ghost { display: none; }
}

@media (max-width: 768px) {
  section { padding: 4rem 1.5rem; }
  .about-grid, .detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-methods-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-trust { gap: 1.5rem; }
  .price-block { position: static; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-form-wrap .form-card { padding: 1.5rem; }
  #hero { padding-top: 90px; padding-bottom: 3rem; }
  .sticky-cta { padding: 0.55rem 0.6rem; gap: 0.4rem; }
  .btn-sticky { padding: 0.75rem 0.5rem; font-size: 0.85rem; }
  body { padding-bottom: 64px; }
}
