:root {
  --navy: #17324d;
  --navy-deep: #0e253b;
  --sage: #7f9b7a;
  --sage-soft: #e7eee5;
  --cream: #fbf8ef;
  --cream-deep: #f2ecdf;
  --coral: #dd6f58;
  --coral-dark: #c95b45;
  --charcoal: #27313a;
  --muted: #5e6a72;
  --border: #ddd5c7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 50, 77, 0.12);
  --radius: 8px;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--navy);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
  padding: 0 5vw;
  background: rgba(251, 248, 239, 0.94);
  border-bottom: 1px solid rgba(221, 213, 199, 0.68);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 1.45rem;
  color: var(--navy-deep);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--coral-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.15rem;
  border: 0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(221, 111, 88, 0.2);
}

.header-cta:hover,
.button-primary:hover,
.header-cta:focus-visible,
.button-primary:focus-visible {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--sage-soft);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: 720px;
  padding: 3.5rem 5vw 4rem;
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(251, 248, 239, 0.96) 40%, rgba(251, 248, 239, 0.34) 68%),
    var(--cream);
}

.hero-copy {
  max-width: 650px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: 6.25rem;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: 2.8rem;
}

h3 {
  color: var(--navy-deep);
  font-size: 1.17rem;
  line-height: 1.22;
}

.hero-copy > p {
  max-width: 590px;
  color: #2d3a43;
  font-size: 1.45rem;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.9rem 0 1.4rem;
}

.local-note {
  position: relative;
  margin: 0;
  padding-left: 1.65rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.local-note::before {
  position: absolute;
  left: 0;
  top: 0.37rem;
  width: 12px;
  height: 12px;
  border: 4px solid var(--sage);
  border-radius: 50%;
  content: "";
}

.hero-media {
  position: relative;
  min-height: 420px;
  border-radius: 0 0 0 96px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(251, 248, 239, 0.16), rgba(251, 248, 239, 0));
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.section {
  padding: 5.75rem 5vw;
}

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

.section-heading p {
  color: var(--muted);
  font-size: 1.15rem;
}

.services-section,
.faq-section {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-item {
  padding: 2rem min(2vw, 1.4rem);
  border-right: 1px solid var(--border);
}

.service-item:last-child {
  border-right: 0;
}

.service-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.icon-circle {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--sage);
  border-radius: 50%;
}

.icon-circle svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pricing-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 980px;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.price-card.emphasized {
  background: var(--white);
  border-color: rgba(221, 111, 88, 0.46);
  box-shadow: 0 20px 42px rgba(23, 50, 77, 0.09);
}

.price {
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  line-height: 0.94;
}

.price-card > p:not(.price) {
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.45rem;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 700;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.57rem;
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
  content: "";
}

.price-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.steps-section {
  background: var(--white);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  position: relative;
  min-height: 210px;
  padding: 1.6rem 1.3rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.steps-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.1rem;
  color: var(--white);
  background: var(--sage);
  border-radius: 50%;
  font-weight: 900;
}

.steps-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.use-cases-section {
  background: var(--sage-soft);
}

.use-case-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.use-case-list p {
  margin: 0;
  padding: 1rem 1.1rem;
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(127, 155, 122, 0.28);
  border-radius: var(--radius);
  font-weight: 800;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 900px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

details {
  background: var(--white);
}

details + details {
  border-top: 1px solid var(--border);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 1rem 1.15rem;
  color: var(--navy-deep);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-3px);
  transition: transform 160ms ease;
}

details[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

details p {
  margin: 0;
  padding: 0 1.15rem 1.2rem;
  color: var(--muted);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4.75rem 5vw;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(14, 37, 59, 0.97), rgba(23, 50, 77, 0.9)),
    var(--navy);
}

.final-cta h2 {
  max-width: 640px;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.final-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.7rem 1.25rem;
  padding: 1.5rem 5vw;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-deep);
  font-size: 0.95rem;
  text-align: center;
}

.site-footer p,
.site-footer a {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(221, 111, 88, 0.55);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    min-height: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
  }

  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-media {
    min-height: 340px;
    border-radius: var(--radius);
  }

  .hero-media img {
    min-height: 340px;
  }

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

  .service-item:nth-child(2) {
    border-right: 0;
  }

  .service-item:nth-child(1),
  .service-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

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

@media (max-width: 720px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: 2.72rem;
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  h3 {
    font-size: 1.1rem;
  }

  .site-header {
    position: static;
    gap: 0.85rem;
  }

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

  .header-cta {
    width: 100%;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 2rem 1rem 3rem;
  }

  .hero-copy > p {
    font-size: 1.14rem;
    max-width: 100%;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-media img {
    min-height: 280px;
  }

  .section {
    padding: 3.5rem 1rem;
  }

  .price-card {
    padding: 1.35rem;
  }

  .price {
    font-size: 3.35rem;
  }

  .service-grid,
  .pricing-grid,
  .steps-list,
  .use-case-list {
    grid-template-columns: 1fr;
  }

  .service-grid {
    border-bottom: 0;
  }

  .service-item,
  .service-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .price-card .button,
  .pricing-grid .button {
    width: 100%;
  }

  .steps-list li {
    min-height: 0;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 3.4rem 1rem;
  }

  .final-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
