:root {
  --navy: #0c1528;
  --navy-soft: #152238;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --white: #ffffff;
  --muted: #64748b;
  --text: #0f172a;
  --line: #e2e8f0;
  --max: 1180px;
  --radius: 14px;
  --shadow: 0 12px 40px rgb(15 23 42 / 12%);
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.5rem 0.75rem;
  background: #000;
  color: #fff;
  border-radius: 8px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 6px 24px rgb(0 0 0 / 18%);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--white);
  letter-spacing: -0.02em;
}

.brand span {
  color: var(--orange);
}

.menu-btn {
  display: none;
  border: 1px solid rgb(255 255 255 / 25%);
  background: transparent;
  color: var(--white);
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-weight: 600;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-list a {
  color: rgb(255 255 255 / 92%);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-list a:hover {
  color: var(--white);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-call:hover {
  background: var(--orange-dark);
}

.btn-call-icon {
  font-size: 0.95rem;
}

.hero {
  padding: 0;
  background: var(--navy);
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  min-height: clamp(520px, 78vh, 640px);
}

.hero-panel {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 4vw, 3.25rem) 0;
  background:
    radial-gradient(120% 85% at 0% 0%, rgb(249 115 22 / 22%), transparent 58%),
    linear-gradient(165deg, var(--navy) 0%, #060a12 100%);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.hero-inner {
  padding-right: 10%;
  max-width: 38rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  background:
    radial-gradient(ellipse 90% 70% at 70% 30%, rgb(30 58 138 / 35%), transparent 55%),
    linear-gradient(180deg, var(--navy-soft) 0%, #0a1020 100%);
  overflow: hidden;
}

/* Fixed hero image frame — no full-bleed stretch/cover */
.hero-img-frame {
  width: 520px;
  height: 390px;
  max-width: 100%;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgb(255 255 255 / 96%);
  box-shadow:
    0 4px 0 rgb(249 115 22 / 35%),
    0 28px 56px rgb(0 0 0 / 45%);
  border: 1px solid rgb(255 255 255 / 18%);
}

.hero-img {
  display: block;
  width: 520px;
  height: 390px;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 0.5rem;
}

.hero .eyebrow {
  color: rgb(249 115 22 / 95%);
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 0.65rem;
}

h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  color: var(--white);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.hero-lead {
  color: rgb(226 232 240 / 92%);
  max-width: 46ch;
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
}

@media (min-width: 1025px) {
  .hero-lead {
    font-size: 1.08rem;
    line-height: 1.65;
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.72rem 1.2rem;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-outline {
  border-color: rgb(255 255 255 / 35%);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: rgb(255 255 255 / 10%);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.btn-lg {
  padding: 0.95rem 1.5rem;
  font-size: 1.15rem;
}

.hero-bullets {
  margin: 0;
  padding-left: 1.1rem;
  color: rgb(226 232 240 / 88%);
}

.hero-bullets li {
  margin-bottom: 0.35rem;
}

.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section-alt {
  background: #f8fafc;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.section-sub {
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 420px;
}

.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-img-back {
  position: absolute;
  width: 62%;
  left: 0;
  top: 0;
  z-index: 1;
  border: 3px solid var(--orange);
}

.about-img-front {
  position: absolute;
  width: 58%;
  right: 0;
  bottom: 0;
  z-index: 2;
  border: 3px solid var(--navy);
}

.about-copy .checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgb(249 115 22 / 25%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgb(15 23 42 / 6%);
}

.service-card h3 {
  font-size: 1.1rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.team-section .section-head {
  margin-bottom: 1.5rem;
}

.carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  transition: transform 0.35s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  text-align: center;
  padding: 0.5rem 0.75rem 1.25rem;
}

.carousel-slide img {
  width: min(220px, 70vw);
  height: min(220px, 70vw);
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--orange);
}

.team-name {
  font-weight: 800;
  margin: 0;
}

.team-role {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
}

.carousel-btn:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  padding: 0;
  cursor: pointer;
}

.carousel-dot[aria-current="true"] {
  background: var(--orange);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
}

.why-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.feature h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-badge {
  font-size: 1.25rem;
  line-height: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.price-card-featured {
  border-color: var(--orange);
  box-shadow: 0 16px 48px rgb(249 115 22 / 18%);
  transform: scale(1.02);
}

.price-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
}

.price-label {
  font-weight: 700;
  margin: 0;
  color: var(--navy);
}

.price-amount {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.price-amount strong {
  font-size: 1.85rem;
  color: var(--text);
}

.price-amount span {
  font-size: 0.95rem;
}

.price-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  flex: 1;
  font-size: 0.95rem;
}

.price-list li {
  margin-bottom: 0.35rem;
}

.testimonials {
  background: var(--navy);
  color: var(--white);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.testimonial-quote blockquote {
  margin: 0 0 1rem;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
}

.testimonial-quote figcaption {
  color: rgb(226 232 240 / 85%);
  font-size: 0.95rem;
}

.testimonial-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* FAQ: no absolute overlap — thumbs stay in normal flow */
.faq-section {
  padding-bottom: clamp(3.5rem, 8vw, 5rem);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.faq-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-thumb {
  width: 100%;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  background: #e2e8f0;
}

.faq-thumb-a {
  border: 3px solid var(--orange);
}

.faq-thumb-b {
  border: 3px solid var(--navy);
}

.faq-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.faq-content {
  min-width: 0;
}

.faq-content h2 {
  margin-bottom: 1rem;
}

.acc-btn {
  width: 100%;
  text-align: left;
  padding: 1rem 2.5rem 1rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px 12px 0 0;
  background: var(--white);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 0;
  position: relative;
}

.acc-btn::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--orange);
}

.acc-btn[aria-expanded="true"]::after {
  content: "−";
}

.acc-panel {
  padding: 0 1rem 1.1rem;
  margin-top: -0.35rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 12px 12px;
}

.acc-btn + .acc-panel:not(.acc-panel-hidden) {
  margin-bottom: 1rem;
}

.acc-panel p {
  margin: 0;
  line-height: 1.6;
}

.acc-btn[aria-expanded="false"] {
  border-radius: 12px;
  margin-bottom: 0.65rem;
}

.acc-btn[aria-expanded="true"] {
  border-bottom-color: transparent;
}

.acc-panel-hidden {
  display: none;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-steps li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1rem;
  box-shadow: 0 8px 24px rgb(15 23 42 / 5%);
}

.step-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.process-steps h3 {
  font-size: 1.05rem;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.blog-card time {
  font-size: 0.82rem;
  color: var(--muted);
}

.blog-card h3 {
  font-size: 1.05rem;
  margin: 0.35rem 0;
}

.read-more {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.92rem;
}

.cta-banner {
  background: linear-gradient(120deg, var(--navy-soft), var(--navy));
  color: var(--white);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.35rem;
}

.cta-banner p {
  margin: 0;
  color: rgb(226 232 240 / 88%);
}

.site-footer {
  background: var(--navy);
  color: rgb(226 232 240 / 90%);
  padding: 2.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  color: var(--white);
}

.footer-brand span {
  color: var(--orange);
}

.footer-note {
  margin: 0;
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav a {
  color: rgb(226 232 240 / 88%);
  text-decoration: none;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.footer-contact a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
}

.footer-bar {
  background: var(--orange);
  color: var(--navy);
  padding: 0.65rem 0;
}

.footer-bar-inner {
  font-size: 0.88rem;
  font-weight: 600;
}

.footer-bar p {
  margin: 0;
}

.fab-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  background: #16a34a;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgb(0 0 0 / 22%);
}

.fab-call:hover {
  filter: brightness(1.05);
}

@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .hero-panel {
    clip-path: none;
    padding: 2.5rem 0 1.25rem;
  }

  .hero-inner {
    padding-right: 0;
    max-width: none;
  }

  .hero-visual {
    padding: 1.5rem 0 2.25rem;
  }

  .hero-img-frame {
    width: 440px;
    height: 330px;
  }

  .hero-img {
    width: 440px;
    height: 330px;
  }

  .about-grid,
  .why-grid,
  .testimonial-layout,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    gap: 1.75rem;
  }

  .faq-content {
    order: 1;
  }

  .faq-media {
    order: 2;
    flex-direction: row;
    gap: 0.65rem;
    max-width: 100%;
  }

  .faq-thumb {
    height: 168px;
    flex: 1;
    min-width: 0;
  }

  .about-media {
    min-height: 360px;
  }

  .faq-section {
    padding-bottom: 4.5rem;
  }

  .price-card-featured {
    transform: none;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-block;
  }

  .nav-list {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: var(--navy-soft);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.75rem;
    border-top: 1px solid rgb(255 255 255 / 12%);
    box-shadow: 0 16px 40px rgb(0 0 0 / 25%);
  }

  .nav-list.open {
    display: flex;
  }

  .service-grid,
  .pricing-grid,
  .feature-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-slide img {
    width: min(200px, 65vw);
    height: min(200px, 65vw);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-section {
    padding-bottom: 6rem;
  }

  .faq-thumb {
    height: 148px;
  }

  .hero-img-frame {
    width: min(400px, calc(100% - 1.5rem));
    height: 300px;
    margin-inline: auto;
  }

  .hero-img {
    width: 100%;
    height: 300px;
    max-width: none;
    object-fit: contain;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .carousel-track {
    transition: none;
  }
}
