:root {
  --color-bg: #f7f9fc;
  --color-surface: #ffffff;
  --color-panel: #ffffff;
  --color-primary: #1f5da8;
  --color-accent: #f6b735;
  --color-text: #1c2330;
  --color-muted: #6b7280;
  --color-border: #e2e8f0;
  --max-width: 1100px;
  --radius: 12px;
  --shadow: 0 12px 32px rgba(31, 93, 168, 0.08);
  --transition: all 0.2s ease;
}

/* Base styling */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2, h3, h4 {
  margin: 0 0 0.35em;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
  color: var(--color-muted);
}

.section {
  padding: 4rem 0;
}

.section__header {
  margin-bottom: 2rem;
}

.section__actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--color-primary), #184b86);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.btn.ghost {
  border-color: #d6e3f5;
  background: #f0f5fd;
  color: var(--color-primary);
}

.btn.ghost:hover {
  border-color: #c3d5f5;
}

.btn.full {
  width: 100%;
}

.top-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  color: var(--color-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: clamp(120px, 16vw, 180px);
  height: auto;
  max-height: 110px;
  object-fit: contain;
  border-radius: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  color: var(--color-muted);
}

.site-nav a:hover {
  color: var(--color-primary);
  background: #eef3fb;
}

.nav-quote {
  border: 1px solid var(--color-border);
}

.header-cta {
  display: inline-flex;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--color-text);
  margin: 4px 0;
  border-radius: 999px;
  transition: var(--transition);
}

.hero {
  padding: 5rem 0 3rem;
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  justify-items: start;
}

.hero__content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  max-width: 24ch;
}

.hero__content .subhead {
  font-size: 1.05rem;
  max-width: 620px;
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.25rem 0;
  width: 100%;
}

.hero__trust {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.hero__image {
  background: linear-gradient(135deg, rgba(31, 93, 168, 0.08), rgba(246, 183, 53, 0.08));
  border-radius: var(--radius);
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  min-height: 360px;
  aspect-ratio: 16 / 9;
  max-width: 520px;
  margin-left: auto;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlights {
  background: linear-gradient(135deg, rgba(31, 93, 168, 0.06), rgba(246, 183, 53, 0.08));
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.highlight-card {
  padding: 0.85rem 1rem;
  background: #ffffff;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.gallery__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.gallery-card {
  background: var(--color-panel);
  padding: 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
  display: block;
}

.gallery-card__label {
  margin-top: 0.5rem;
  color: var(--color-text);
  font-weight: 600;
}

.service-area {
  background: #eef2f7;
}

.service-area__content {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  grid-template-columns: 1fr;
}

.service-area__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
}

.service-area__list li {
  background: #ffffff;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.service-area__visual {
  display: grid;
  place-items: center;
}

.map-card {
  background: linear-gradient(135deg, rgba(31, 93, 168, 0.12), rgba(246, 183, 53, 0.14));
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  position: relative;
  width: 100%;
  max-width: 460px;
  text-align: center;
  min-height: 160px;
}

.map-card img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 6px);
  display: block;
  margin-bottom: 0.75rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 18, 31, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox__content img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  background: #ffffff;
  padding: 0.5rem;
}

.lightbox__close {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox__close:hover {
  background: rgba(0, 0, 0, 0.7);
}

body.no-scroll {
  overflow: hidden;
}

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

.pricing-card {
  padding: 1.4rem;
  background: var(--color-panel);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.price {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 700;
}

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

.feature-card {
  background: var(--color-panel);
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  display: grid;
  gap: 0.5rem;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #eef3fb;
  font-size: 1.1rem;
}

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

.process-step {
  background: var(--color-panel);
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.process-step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(34, 211, 238, 0.02));
  opacity: 0;
  transition: var(--transition);
}

.process-step:hover::after {
  opacity: 1;
}

.step-number {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

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

.testimonial-card {
  background: var(--color-panel);
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.testimonial-quote {
  color: var(--color-text);
  font-style: italic;
}

.testimonial-name {
  color: var(--color-muted);
  font-weight: 600;
  margin: 0;
}

.faq__list {
  display: grid;
  gap: 0.75rem;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text);
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 1rem;
  color: var(--color-muted);
}

.faq-item.active .faq-answer {
  padding-bottom: 1rem;
  max-height: 300px;
}

.faq-item .indicator {
  color: var(--color-primary);
  margin-left: 1rem;
}

.quote {
  background: linear-gradient(135deg, rgba(31, 93, 168, 0.12), rgba(246, 183, 53, 0.08));
}

.quote__content {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: var(--color-text);
}

input,
select,
textarea {
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #d7deea;
  background: var(--color-panel);
  color: var(--color-text);
  font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(31, 93, 168, 0.4);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--color-text);
}

.checkbox input {
  width: 18px;
  height: 18px;
}

.error-msg {
  min-height: 18px;
  font-size: 0.85rem;
  color: #f87171;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  margin-top: 1rem;
  font-weight: 600;
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  display: none;
  z-index: 9;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);
}

.mobile-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.mobile-cta__actions {
  display: flex;
  gap: 0.5rem;
}

.footer {
  background: linear-gradient(135deg, #ffffff, #f2f6fb);
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 0 3.5rem;
  margin-top: 2rem;
}

.footer__inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.footer__brand {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
}

.footer__logo img {
  width: clamp(130px, 18vw, 180px);
  height: auto;
  border-radius: 0;
}

.footer__title {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.footer__contact a {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.footer__legal {
  color: var(--color-muted);
}

@media (min-width: 768px) {
  .service-area__content {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .header__inner {
    gap: 2rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__image {
    margin-left: 0;
    max-width: 640px;
  }

  .highlights__grid,
  .gallery__grid,
  .pricing__grid,
  .features__grid,
  .process__steps,
  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.25rem 0;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__trust {
    flex-wrap: wrap;
  }

  .hero__image {
    margin-left: 0;
    width: 100%;
    margin-top: 1.25rem;
    max-width: none;
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .hero__image img {
    border-radius: calc(var(--radius) - 2px);
  }

  .logo img {
    width: clamp(140px, 40vw, 200px);
    max-height: 120px;
  }

  .highlights__grid,
  .gallery__grid,
  .pricing__grid,
  .features__grid,
  .process__steps,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--color-border);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-cta {
    display: block;
  }

  .top-bar__inner {
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
  }

  .service-area__visual {
    margin-top: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 6rem;
  }

  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero__image {
    max-width: 560px;
    margin-left: auto;
  }

  .highlights__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery__grid,
  .pricing__grid,
  .features__grid,
  .process__steps,
  .testimonials__grid {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
  }

  .process__steps {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }

  .hero__image img {
    max-height: none;
  }
}
