:root {
  --navy-950: #0B1B32;
  --navy-900: #0D1E4C;
  --slate: #26415E;
  --blue: #83A6CE;
  --blush: #E5C9D7;
  --mauve: #C88CB3;
  --paper: #f7f9fc;
  --paper-soft: #eef3f8;
  --white: #ffffff;
  --line: rgba(38, 65, 94, 0.14);
  --shadow: 0 24px 70px rgba(11, 27, 50, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--navy-950);
  background: var(--paper);
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: clamp(3rem, 7.2vw, 7.4rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.75rem);
  line-height: 0.96;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.22;
}

p {
  margin: 0;
  color: rgba(38, 65, 94, 0.84);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  width: min(calc(100% - 32px), 1180px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(11, 27, 50, 0.12);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--mauve));
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.95rem;
}

.brand small {
  color: var(--slate);
  font-size: 0.76rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--slate);
  font-size: 0.92rem;
  font-weight: 750;
}

.main-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover {
  color: var(--navy-900);
  background: rgba(131, 166, 206, 0.16);
}

.main-nav .nav-cta {
  color: var(--white);
  background: var(--navy-950);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 128px clamp(18px, 4vw, 56px) 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(229, 201, 215, 0.65), rgba(131, 166, 206, 0.28) 45%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(circle at 88% 16%, rgba(200, 140, 179, 0.5), transparent 28%),
    linear-gradient(180deg, #ffffff, var(--paper-soft));
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.82fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
  max-width: var(--max);
  min-height: calc(100vh - 200px);
  margin: 0 auto;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: var(--navy-900);
  background: rgba(229, 201, 215, 0.56);
  border: 1px solid rgba(200, 140, 179, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy > p {
  max-width: 690px;
  margin-top: 24px;
  color: rgba(38, 65, 94, 0.9);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 16px 38px rgba(13, 30, 76, 0.22);
}

.btn-primary:hover {
  background: var(--navy-950);
}

.btn-soft {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(13, 30, 76, 0.12);
}

.btn svg,
.service-card svg,
.mini-panel svg,
.value-grid svg,
.contact-cards svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
  max-width: 700px;
}

.proof-row div {
  min-height: 116px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(11, 27, 50, 0.08);
  backdrop-filter: blur(18px);
}

.proof-row strong {
  display: block;
  color: var(--navy-900);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1;
}

.proof-row span {
  display: block;
  margin-top: 8px;
  color: var(--slate);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.7);
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 58px rgba(11, 27, 50, 0.18);
  backdrop-filter: blur(18px);
}

.hero-card-top {
  top: 44px;
  left: -26px;
  width: 220px;
  padding: 20px;
  border-radius: 26px;
}

.hero-card-top span,
.hero-card-top small,
.hero-card-bottom span {
  display: block;
  color: var(--slate);
}

.hero-card-top strong {
  display: block;
  margin: 10px 0 4px;
  color: var(--navy-900);
  font-size: 3rem;
  line-height: 0.95;
}

.hero-card-bottom {
  right: -22px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(300px, 82%);
  padding: 17px;
  border-radius: 999px;
}

.hero-card-bottom svg {
  width: 44px;
  height: 44px;
  padding: 11px;
  color: var(--white);
  background: var(--mauve);
  border-radius: 50%;
}

.hero-card-bottom strong {
  display: block;
  color: var(--navy-950);
}

.service-marquee {
  overflow: hidden;
  padding: 18px 0;
  color: var(--white);
  background: var(--navy-950);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
}

.marquee-track span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(78px, 9vw, 128px) clamp(18px, 4vw, 32px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.portrait-stack {
  position: relative;
}

.portrait-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.mini-panel {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(11, 27, 50, 0.16);
  backdrop-filter: blur(16px);
}

.mini-panel svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
}

.mini-panel strong,
.mini-panel span {
  display: block;
}

.mini-panel span {
  color: var(--slate);
  font-size: 0.92rem;
}

.section-copy p {
  max-width: 700px;
  margin-top: 18px;
  font-size: 1.04rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.value-grid article {
  min-height: 170px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(11, 27, 50, 0.08);
}

.value-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--mauve);
}

.value-grid strong,
.value-grid span {
  display: block;
}

.value-grid span {
  margin-top: 8px;
  color: var(--slate);
  font-size: 0.92rem;
}

.services-section {
  max-width: none;
  background: var(--white);
}

.services-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

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

.section-heading p {
  max-width: 690px;
  margin-top: 18px;
  font-size: 1.06rem;
}

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

.service-card {
  position: relative;
  min-height: 266px;
  overflow: hidden;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #f5f8fb);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(11, 27, 50, 0.08);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  background: rgba(229, 201, 215, 0.56);
  border-radius: 50%;
}

.card-index {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--slate);
  font-weight: 900;
}

.service-card svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--navy-900);
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card p {
  margin-top: 12px;
}

.service-feature {
  grid-column: span 2;
  min-height: 300px;
}

.service-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.service-dark p,
.service-dark .card-index {
  color: rgba(255, 255, 255, 0.78);
}

.service-dark svg {
  color: var(--blush);
}

.journey-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 62px);
  align-items: start;
}

.journey-copy {
  position: sticky;
  top: 120px;
}

.journey-copy p {
  margin-top: 18px;
  font-size: 1.06rem;
}

.journey-grid {
  display: grid;
  gap: 14px;
}

.journey-grid article {
  min-height: 180px;
  padding: 28px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 30px;
}

.journey-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--mauve);
  font-weight: 950;
}

.journey-grid p {
  margin-top: 10px;
}

.wide-image-section {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: grid;
  align-items: end;
  margin: 0 clamp(18px, 4vw, 42px);
  border-radius: 42px;
}

.wide-image-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-image-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 27, 50, 0.78), rgba(11, 27, 50, 0.1));
}

.wide-image-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 60px);
  color: var(--white);
}

.wide-image-copy span {
  display: block;
  margin-bottom: 14px;
  color: var(--blush);
  font-weight: 900;
  text-transform: uppercase;
}

.wide-image-copy strong {
  display: block;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 30px;
  align-items: end;
  max-width: none;
}

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

.client-grid article {
  min-height: 160px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 44px rgba(11, 27, 50, 0.07);
}

.client-grid span,
.client-grid strong {
  display: block;
}

.client-grid span {
  color: var(--navy-900);
  font-size: 1.15rem;
  font-weight: 900;
}

.client-grid strong {
  margin-top: 16px;
  color: var(--slate);
  font-weight: 700;
}

.testimonials-section {
  max-width: none;
  color: var(--white);
  background: var(--navy-950);
}

.testimonials-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.testimonials-section .section-kicker {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
}

.testimonials-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.testimonial-layout article {
  min-height: 240px;
  padding: 28px;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
}

.testimonial-layout .testimonial-main {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  padding: clamp(28px, 4vw, 48px);
  background: linear-gradient(135deg, var(--blush), #ffffff);
}

.testimonial-main p {
  color: var(--navy-950);
  font-size: clamp(1.55rem, 3vw, 3.1rem);
  line-height: 1.08;
}

.testimonial-layout article:not(.testimonial-main) p {
  margin-bottom: 26px;
}

.testimonial-layout strong,
.testimonial-layout span {
  display: block;
}

.testimonial-layout span {
  margin-top: 5px;
  color: var(--slate);
}

.faq-section {
  padding-bottom: clamp(32px, 6vw, 76px);
}

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

.faq-grid details {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 16px 44px rgba(11, 27, 50, 0.07);
}

.faq-grid summary {
  cursor: pointer;
  color: var(--navy-900);
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-grid p {
  margin-top: 14px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: stretch;
}

.contact-panel {
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 27, 50, 0.92), rgba(13, 30, 76, 0.82)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=82") center / cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.contact-panel .section-kicker {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-panel p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-cards span {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy-950);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  color: var(--navy-950);
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(131, 166, 206, 0.22);
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--slate) !important;
  font-size: 0.92rem;
  font-weight: 600 !important;
}

.consent input {
  min-height: 20px;
  margin-top: 3px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}

.form-submit {
  width: 100%;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.76);
  background: #071425;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
}

.site-footer a:last-child {
  color: var(--white);
  font-weight: 850;
}

.footer-brand .brand-mark {
  background: var(--white);
  color: var(--navy-950);
}

.footer-brand strong,
.footer-brand small {
  color: var(--white);
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(229, 201, 215, 0.7), rgba(131, 166, 206, 0.22)),
    var(--paper);
}

.thank-you-card {
  width: min(720px, 100%);
  padding: clamp(28px, 6vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

.thank-you-card p {
  margin: 20px 0 28px;
  font-size: 1.08rem;
}

@media (max-width: 1080px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
  }

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

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

  .main-nav .nav-cta {
    text-align: center;
  }

  .nav-toggle {
    display: grid;
  }

  .hero-shell,
  .about-section,
  .journey-section,
  .contact-section,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .journey-copy {
    position: static;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 520px;
    height: 520px;
  }
}

@media (max-width: 860px) {
  h1 {
    font-size: clamp(2.85rem, 14vw, 5.1rem);
  }

  .proof-row,
  .value-grid,
  .service-grid,
  .client-grid,
  .faq-grid,
  .testimonial-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-feature,
  .testimonial-layout .testimonial-main {
    grid-column: auto;
    grid-row: auto;
  }

  .testimonial-layout .testimonial-main {
    min-height: auto;
  }

  .wide-image-section {
    min-height: 480px;
    margin: 0 16px;
    border-radius: 30px;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 26px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero {
    padding: 112px 16px 52px;
  }

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

  .proof-row div {
    min-height: 96px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 430px;
    height: 430px;
  }

  .hero-visual img {
    border-radius: 30px;
    border-width: 6px;
  }

  .hero-card-top {
    left: 12px;
    top: 20px;
    width: 190px;
  }

  .hero-card-bottom {
    right: 12px;
    bottom: 22px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .portrait-main,
  .contact-panel,
  .contact-form {
    border-radius: 26px;
  }

  .mini-panel {
    position: static;
    margin-top: 12px;
  }

  .contact-panel {
    min-height: 520px;
  }

  .contact-cards span {
    width: 100%;
    border-radius: 20px;
  }
}
