
:root {
  --bg: #f4fbfa;
  --bg-soft: #ecf6f5;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #11343f;
  --text-muted: #44616a;
  --heading: #082a31;
  --line: rgba(10, 42, 49, 0.08);
  --brand: #1a9f88;
  --brand-deep: #0f7363;
  --accent: #2d7fe8;
  --accent-soft: #dbe8ff;
  --shadow: 0 24px 60px rgba(8, 42, 49, 0.10);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", Georgia, serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(45, 127, 232, 0.10), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(26, 159, 136, 0.14), transparent 24%),
    linear-gradient(180deg, #f7fcfb 0%, #eef7f6 58%, #f9fbfd 100%);
  min-height: 100vh;
}

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

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

p,
li,
input,
textarea,
button,
small,
span {
  font-size: 1.06rem;
  line-height: 1.75;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-family: "Sora", "Avenir Next", sans-serif;
  color: var(--heading);
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

main {
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.narrow {
  max-width: 940px;
}

.page-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(247, 252, 251, 0.86);
  border-bottom: 1px solid rgba(17, 52, 63, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 18px 30px rgba(45, 127, 232, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy span {
  font-size: 0.84rem;
  line-height: 1.3;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.24s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--heading);
}

.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(17, 52, 63, 0.08);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--heading);
  border-radius: 999px;
}

.hero {
  padding: 72px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.hero-copy,
.hero-visual {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -32px auto auto -20px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(26, 159, 136, 0.22), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  color: var(--brand-deep);
  background: rgba(26, 159, 136, 0.10);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lead,
.section-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 18px 36px rgba(21, 96, 117, 0.20);
}

.button.ghost {
  color: var(--heading);
  border-color: rgba(17, 52, 63, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-bullets span {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 52, 63, 0.06);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 28px;
}

.metric {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 52, 63, 0.06);
  box-shadow: var(--shadow);
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
}

.hero-form,
.site-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 52, 63, 0.08);
  border-radius: calc(var(--radius-lg) - 4px);
  box-shadow: var(--shadow);
}

.hero-form {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-form label,
.site-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--heading);
}

input,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(17, 52, 63, 0.12);
  padding: 14px 16px;
  font: inherit;
  color: var(--heading);
  background: rgba(255, 255, 255, 0.95);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(45, 127, 232, 0.22);
  border-color: rgba(45, 127, 232, 0.34);
}

.image-panel {
  margin: 0;
  padding: 14px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(232, 246, 244, 0.9));
  border: 1px solid rgba(17, 52, 63, 0.06);
  box-shadow: var(--shadow);
}

.image-panel.large {
  transform: rotate(1deg);
}

.image-panel img {
  width: 100%;
  height: clamp(280px, 36vw, 520px);
  object-fit: cover;
  border-radius: 24px;
}

.image-panel figcaption {
  padding: 12px 10px 4px;
  color: var(--text-muted);
}

.section {
  padding: 42px 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 24px;
}

.section-copy {
  display: grid;
  gap: 18px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 0.95fr 1fr;
}

.split-layout.reverse .split-copy {
  order: 2;
}

.split-layout.reverse .image-panel,
.split-layout.reverse .site-form {
  order: 1;
}

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

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.surface-card,
.pricing-card,
.testimonial-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 52, 63, 0.07);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.surface-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(8, 42, 49, 0.14);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 18px;
  color: var(--brand-deep);
  background: rgba(26, 159, 136, 0.14);
  font-weight: 700;
}

.team-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 52, 63, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 24px;
}

.team-card-copy {
  display: grid;
  gap: 12px;
}

.testimonial-card strong {
  display: block;
  margin-top: 18px;
  font-family: "Sora", sans-serif;
}

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

.pricing-card ul {
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--text);
}

.pricing-card li + li {
  margin-top: 10px;
}

.plan-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(45, 127, 232, 0.10);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 16px 0;
  font-family: "Sora", sans-serif;
  font-size: 2.2rem;
  color: var(--heading);
}

.plan-price small {
  color: var(--text-muted);
  font-size: 1rem;
}

.form-section .form-shell {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 28px;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(26, 159, 136, 0.08), rgba(45, 127, 232, 0.08));
  border: 1px solid rgba(17, 52, 63, 0.06);
  box-shadow: var(--shadow);
}

.form-copy {
  display: grid;
  align-content: center;
}

.map-embed {
  min-height: 420px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 52, 63, 0.06);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  margin-top: 54px;
  padding: 42px 0 28px;
  color: #dbf0f4;
  background:
    radial-gradient(circle at top right, rgba(45, 127, 232, 0.24), transparent 22%),
    linear-gradient(180deg, #0a2830 0%, #091d23 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
}

.site-footer h3 {
  color: #effcfe;
  font-size: 1rem;
}

.site-footer p,
.site-footer span,
.site-footer a {
  color: rgba(225, 245, 247, 0.82);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(225, 245, 247, 0.14);
}

.footer-bottom p {
  max-width: 60ch;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: min(420px, calc(100vw - 40px));
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(10, 40, 48, 0.94);
  color: #effcfe;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.cookie-banner a {
  color: #bce9ff;
}

.legal-page .hero {
  padding-bottom: 24px;
}

.legal-section .section-copy {
  gap: 16px;
}

.legal-list {
  padding-left: 22px;
}

.legal-list li + li {
  margin-top: 10px;
}

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

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

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .split-layout.reverse,
  .footer-grid,
  .form-section .form-shell,
  .team-card {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse .split-copy,
  .split-layout.reverse .image-panel,
  .split-layout.reverse .site-form {
    order: initial;
  }

  .card-grid,
  .pricing-layout .card-grid,
  .mini-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric-row,
  .hero-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(17, 52, 63, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .card-grid,
  .mini-card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }
}

@media (max-width: 540px) {
  .nav-shell,
  .site-header {
    width: 100%;
  }

  .section,
  .site-footer {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-form,
  .site-form,
  .form-section .form-shell,
  .surface-card,
  .pricing-card,
  .testimonial-card,
  .team-card,
  .image-panel {
    padding: 18px;
  }

  .image-panel img {
    height: 260px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
}