:root {
  --navy: #14264d;
  --green: #0a9f3c;
  --green-dark: #087b31;
  --text: #1f2a3d;
  --muted: #536175;
  --card: #eef7f1;
  --line: #dceae2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding: 8px 56px 6px;
  background: #fff;
  border-top: 4px solid #1e252b;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.brand {
  display: flex;
  align-items: center;
  width: 250px;
  height: 104px;
  overflow: visible;
}

.brand img {
  width: 230px;
  height: 104px;
  margin-top: 0;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #2d374a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.main-nav a {
  padding: 8px 0;
  color: inherit;
  font-weight: 400;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 4px;
  background: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #6f7d8d;
}

.hero::after,
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 28, 45, 0.48);
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.hero-slide:nth-child(2) img {
  object-position: center;
}

.hero-slide:nth-child(3) img {
  object-position: center 42%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: 200px 0 100px;
  color: #fff;
}

.hero h1 {
  max-width: 61%;
  margin: 0 0 18px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: 0;
}

.hero p {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  min-height: auto;
  padding: 13px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn.light {
  background: rgba(255, 255, 255, 0.22);
}

.btn.solid {
  color: #fff;
  background: var(--green);
}

.about-section {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 48px;
  align-items: center;
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: 120px 0;
}

.about-image {
  min-height: 650px;
  overflow: hidden;
  border-radius: 30px;
  background: #f6f8fb;
}

.about-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
}

.section-kicker {
  margin: 0;
  color: #07172d;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.65;
}

.about-copy h2 {
  margin: 0 0 6px;
  color: #222c40;
  font-size: 33px;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: 0;
}

.about-copy p {
  max-width: 850px;
  margin: 0 0 24px;
  color: #17233b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #07172d;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

.check-list li {
  position: relative;
  padding-left: 38px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 13px;
  width: 6px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.services-section {
  padding: 120px 40px;
  color: #fff;
  background: var(--navy);
}

.services-section h2 {
  margin: 0;
  padding: 0 8%;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: min(1200px, 100%);
  margin: 68px auto 0;
}

.service-card {
  min-height: auto;
  padding: 24px;
  border-radius: 24px;
  color: var(--navy);
  background: var(--card);
}

.service-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--navy);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
}

.service-card p {
  min-height: 54px;
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.service-photo {
  display: block;
  width: 100%;
  height: 218px;
  min-height: 218px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

.outline-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 354px;
  min-height: auto;
  margin: 48px auto 0;
  padding: 13px 30px;
  border: 2px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.faq-section {
  padding: 6px 12px 0;
  background: #fff;
}

.faq-list {
  width: 100%;
  border-top: 1px solid #cfd5dc;
}

.faq-item {
  border-bottom: 1px solid #cfd5dc;
}

.faq-item button {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 72px;
  padding: 0 14px;
  border: 0;
  color: var(--navy);
  background: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  text-align: left;
  cursor: pointer;
}

.faq-plus {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 4px;
  border-radius: 2px;
  background: #20252c;
  transform: translate(-50%, -50%);
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-plus::after {
  opacity: 0;
}

.faq-answer {
  display: none;
  padding: 0 56px 22px;
  color: #2d3a55;
  font-size: 20px;
  line-height: 1.55;
}

.faq-answer p {
  margin: 0;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.about-page-hero {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 64px;
  align-items: center;
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: 70px 0 80px;
}

.about-page-image {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 30px;
  background: #eef3f5;
}

.about-page-image img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center;
}

.about-page-copy h1,
.services-page-hero h1 {
  margin: 0 0 24px;
  color: #142033;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4em;
  letter-spacing: 0;
}

.about-page-copy p,
.about-page-copy li,
.story-section p,
.service-detail-card p,
.service-detail-card li {
  color: #17233b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.about-page-copy p {
  margin: 0 0 24px;
}

.about-page-copy ul {
  margin: 0;
  padding-left: 30px;
}

.story-section {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 64px;
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: 80px 0 90px;
}

.story-section h2,
.process-section h2,
.service-detail-card h2 {
  margin: 0 0 24px;
  color: #142033;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: 0;
}

.story-section p {
  margin: 0 0 24px;
}

.process-section {
  padding: 100px 60px 120px;
  color: #fff;
  background: var(--navy);
}

.process-section > .section-kicker,
.process-section > h2 {
  width: min(1200px, 100%);
  margin-inline: auto;
  color: #fff;
  text-align: left;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: min(1200px, 100%);
  margin: 88px auto 0;
}

.process-grid article {
  min-height: 220px;
  padding: 44px 34px;
  border-radius: 24px;
  color: var(--navy);
  background: #fff;
  text-align: center;
}

.process-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  color: #111;
}

.process-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-grid h3 {
  margin: 0 0 18px;
  color: #142033;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
}

.process-grid p {
  margin: 0;
  color: #17233b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.services-page-hero {
  padding: 86px 40px 92px;
  color: #fff;
  background: var(--navy);
  text-align: center;
}

.services-page-hero .section-kicker,
.services-page-hero h1 {
  color: #fff;
}

.service-detail-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 80px 60px;
  background: var(--navy);
}

.service-detail-card {
  min-height: 520px;
  padding: 36px;
  border-radius: 24px;
  background: var(--card);
}

.service-detail-card img {
  width: 100%;
  height: 274px;
  margin-bottom: 46px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
}

.service-detail-card p {
  margin: 0 0 34px;
}

.service-detail-card ul {
  margin: 0;
  padding-left: 28px;
}

.cta-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: auto;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(20, 38, 77, 0.34), rgba(10, 159, 60, 0.16)),
    url("assets/package-cta.jpg") center / cover no-repeat;
}

.cta-section div {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding: 120px 0;
  color: #fff;
}

.cta-section h2 {
  margin: 0 0 34px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3em;
}

.cta-section p {
  max-width: 1720px;
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 150px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--green-dark);
}

.chat-dot,
.scroll-top {
  position: fixed;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
}

.chat-dot {
  left: 12px;
  bottom: 14px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: inset -10px -10px 0 rgba(10, 159, 60, 0.48);
}

.scroll-top {
  right: 44px;
  bottom: 32px;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: var(--green);
  font-size: 27px;
}

@media (max-width: 1200px) {
  .site-header {
    padding-inline: 28px;
  }

  .main-nav {
    gap: 18px;
    font-size: 16px;
  }

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

@media (max-width: 860px) {
  .site-header {
    min-height: 104px;
    padding: 12px 18px;
  }

  .brand {
    width: 150px;
    height: 78px;
  }

  .brand img {
    width: 150px;
    height: 78px;
    margin-top: 0;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 24px 22px;
    background: #fff;
    border-top: 1px solid var(--line);
  }

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

  .hero {
    min-height: 590px;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding-top: 96px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .hero p {
    margin-bottom: 46px;
    font-size: 26px;
    line-height: 1.1em;
  }

  .about-section {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }

  .about-page-hero,
  .story-section {
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
    gap: 36px;
  }

  .about-page-copy h1,
  .services-page-hero h1 {
    font-size: 31px;
  }

  .about-page-copy p,
  .about-page-copy li,
  .story-section p,
  .service-detail-card p,
  .service-detail-card li {
    font-size: 18px;
  }

  .process-section,
  .service-detail-section {
    padding-inline: 24px;
  }

  .process-grid,
  .service-detail-section {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 420px;
  }

  .about-copy h2 {
    font-size: 31px;
  }

  .about-copy p,
  .check-list {
    font-size: 18px;
  }

  .services-section {
    padding-inline: 24px;
  }

  .cta-section div {
    width: calc(100% - 48px);
  }
}

@media (max-width: 620px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .services-section h2 {
    padding-bottom: 44px;
    font-size: 30px;
  }

  .service-card {
    min-height: auto;
    padding: 26px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .outline-cta {
    width: 100%;
    min-width: 0;
  }

  .cta-section h2 {
    font-size: 39px;
  }

  .cta-section p {
    margin-bottom: 48px;
    font-size: 24px;
    line-height: 1.1em;
  }

  .site-footer {
    padding: 30px 22px;
    text-align: center;
    font-size: 18px;
  }
}
