:root {
  --navy: #08284a;
  --navy-2: #0c3a66;
  --blue: #36a8e0;
  --blue-soft: #eaf7ff;
  --white: #ffffff;
  --ink: #102033;
  --muted: #617087;
  --line: rgba(8, 40, 74, 0.12);
  --shadow: 0 20px 60px rgba(8, 40, 74, 0.16);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(8, 40, 74, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 126px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--navy);
  border: 0;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92vh;
  padding: 140px 0 80px;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 28, 52, 0.92) 0%, rgba(6, 28, 52, 0.72) 38%, rgba(6, 28, 52, 0.12) 72%),
    linear-gradient(180deg, rgba(6, 28, 52, 0.1), rgba(6, 28, 52, 0.46));
}

.hero-content {
  position: relative;
  max-width: 720px;
  margin-left: max(20px, calc((100vw - var(--container)) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #1889c7);
  box-shadow: 0 14px 30px rgba(54, 168, 224, 0.28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.hero-points span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.section {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section-light {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.section-blue {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.section-blue h2,
.section-blue p {
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow),
.before-copy p,
.contact-copy p,
.zone-panel p,
.audience-card p,
.benefit p,
.service-card p,
.review p {
  color: var(--muted);
}

.service-grid,
.benefit-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.benefit,
.review,
.audience-card,
.contact-form,
.zone-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 38px rgba(8, 40, 74, 0.08);
}

.service-card {
  min-height: 210px;
  padding: 28px;
}

.icon,
.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  font-size: 1.25rem;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

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

.benefit {
  padding: 26px;
}

.before-after {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.before-copy .eyebrow {
  color: #8ee0ff;
}

.before-copy p {
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: #8ee0ff;
  font-weight: 800;
}

.before-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.before-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.before-figure figcaption {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(180deg, transparent, rgba(8, 40, 74, 0.78));
}

.work-gallery {
  margin-top: clamp(38px, 6vw, 76px);
}

.work-gallery-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.work-gallery-heading .eyebrow {
  color: #8ee0ff;
}

.work-gallery-heading h3 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.18;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-card {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
}

.work-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.work-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(8, 40, 74, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.two-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.audience-card {
  min-height: 270px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(54, 168, 224, 0.12), rgba(255, 255, 255, 0.95)),
    var(--white);
}

.audience-card-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0d4877);
}

.audience-card-dark h2,
.audience-card-dark p {
  color: var(--white);
}

.zone-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(234, 247, 255, 0.9), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.zone-panel p {
  max-width: 650px;
  margin-bottom: 0;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
  margin-top: 22px;
}

.city-tags span {
  padding: 8px 11px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
}

.pricing-panel,
.legal-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 38px rgba(8, 40, 74, 0.08);
}

.pricing-panel {
  padding: clamp(28px, 5vw, 54px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-grid article {
  padding: 22px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pricing-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.pricing-grid p {
  margin: 0;
  color: var(--muted);
}

.review {
  padding: 28px;
}

.stars {
  margin-bottom: 14px;
  color: #f5b642;
  letter-spacing: 0;
}

.review strong {
  color: var(--navy);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(8, 40, 74, 0.07);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 900;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list p {
  margin: 0;
  padding: 18px 22px 22px;
  color: var(--muted);
}

.contact-section {
  background:
    radial-gradient(circle at top right, rgba(54, 168, 224, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff, #f4faff);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  padding: 16px 18px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(54, 168, 224, 0.14);
}

.form-success {
  display: none;
  margin: 0;
  padding: 14px 16px;
  color: #0d5533;
  background: #e9fff3;
  border: 1px solid rgba(13, 85, 51, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
}

.form-success.is-visible {
  display: block;
}

.legal-section {
  padding: 52px 0 80px;
  background: #f4faff;
}

.legal-header {
  position: static;
}

.legal-page-main h1 {
  margin: 0 0 38px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.legal-page-main .legal-panel h2 {
  margin-top: 34px;
}

.legal-panel {
  padding: clamp(24px, 4vw, 38px);
}

.legal-panel h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.legal-panel p {
  color: var(--muted);
}

.legal-panel a {
  color: var(--navy);
  font-weight: 800;
}

.legal-note {
  padding: 14px 16px;
  background: var(--blue-soft);
  border: 1px solid rgba(54, 168, 224, 0.24);
  border-radius: var(--radius);
}

.site-footer {
  padding: 30px 0;
  color: var(--white);
  background: var(--navy);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner img {
  width: 104px;
  height: 44px;
  object-fit: cover;
  object-position: center;
  background: var(--white);
  border-radius: var(--radius);
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner a {
  font-weight: 800;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 16px;
  color: var(--white);
  background: linear-gradient(135deg, #139f70, #0d7f5d);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(13, 127, 93, 0.28);
}

.floating-call span {
  font-size: 1.15rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(6, 28, 52, 0.8), rgba(6, 28, 52, 0.58));
  }

  .hero-content {
    margin-left: auto;
  }

  .service-grid,
  .review-grid,
  .pricing-grid,
  .work-grid,
  .split,
  .before-after,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    min-height: 72px;
    padding: 10px 14px;
  }

  .brand img {
    width: 108px;
    height: 42px;
  }

  .main-nav {
    top: 72px;
  }

  .hero {
    min-height: 720px;
    padding-top: 118px;
  }

  .hero-bg {
    object-position: 60% center;
  }

  .hero-actions,
  .hero-actions .btn,
  .zone-panel,
  .two-cards,
  .benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .zone-panel {
    align-items: stretch;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .floating-call {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
