@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@700&display=swap');

:root {
  --navy: #071725;
  --navy-soft: #0e263a;
  --teal: #15b8a6;
  --teal-dark: #0a8679;
  --gold: #f5b942;
  --cream: #f7f4ed;
  --white: #ffffff;
  --text: #14202b;
  --muted: #66727d;
  --line: rgba(7, 23, 37, 0.12);
  --shadow: 0 22px 70px rgba(7, 23, 37, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(7, 23, 37, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 21px;
  box-shadow: 0 10px 24px rgba(21, 184, 166, 0.22);
}

.brand-text {
  font-size: 19px;
  letter-spacing: 0.2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  transition: 0.25s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.hero {
  min-height: 900px;
  padding: 180px 0 110px;
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(21, 184, 166, 0.14), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(245, 185, 66, 0.1), transparent 26%),
    linear-gradient(135deg, #06131f, #0a2031 60%, #0c2b3d);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.5;
}

.hero-glow-one {
  width: 280px;
  height: 280px;
  right: -80px;
  top: 160px;
  background: rgba(21, 184, 166, 0.22);
}

.hero-glow-two {
  width: 210px;
  height: 210px;
  left: -70px;
  bottom: 80px;
  background: rgba(245, 185, 66, 0.16);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 12px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 18px;
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.why-panel h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.hero h1 {
  font-size: clamp(50px, 6.2vw, 83px);
  max-width: 820px;
}

.hero-copy {
  max-width: 670px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  margin: 28px 0 36px;
}

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

.button {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--teal), #1ad3be);
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(21, 184, 166, 0.22);
}

.button-secondary {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.hero-stats {
  margin-top: 55px;
  display: flex;
  gap: 38px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-size: 28px;
  color: var(--gold);
}

.hero-stats span {
  font-size: 12px;
  color: rgba(255,255,255,0.56);
}

.hero-card {
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  box-shadow: 0 40px 100px rgba(0,0,0,0.25);
  backdrop-filter: blur(18px);
  transform: rotate(1.5deg);
}

.hero-card-top,
.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.status-dot::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 7px;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(21,184,166,0.1);
}

.service-preview {
  margin-top: 17px;
  padding: 18px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.07);
}

.preview-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold), #ffe095);
}

.service-preview div:last-child {
  display: flex;
  flex-direction: column;
}

.service-preview span {
  font-size: 12px;
  color: rgba(255,255,255,0.52);
}

.hero-card-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  text-align: center;
  gap: 20px;
  color: #67717a;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.section {
  padding: 120px 0;
}

.split-grid,
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.section-heading h2,
.contact-copy h2,
.why-panel h2 {
  font-size: clamp(38px, 4.4vw, 61px);
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading.centered > p:last-child {
  color: var(--muted);
  margin-top: 18px;
}

.about-copy {
  font-size: 18px;
  color: var(--muted);
}

.about-copy p + p {
  margin-top: 22px;
}

.signature {
  margin-top: 32px;
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  background: var(--cream);
  color: var(--navy);
  font-weight: 800;
}

.services {
  background: #f7f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  padding: 30px;
  min-height: 390px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(7, 23, 37, 0.055);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(21,184,166,0.4);
}

.card-number {
  position: absolute;
  top: 22px;
  right: 26px;
  color: #dce2e6;
  font-size: 13px;
  font-weight: 900;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--navy);
  color: var(--gold);
  margin-bottom: 26px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card > p {
  color: var(--muted);
  font-size: 14px;
  min-height: 68px;
}

.service-card ul {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 9px;
  color: #34414b;
  font-size: 14px;
}

.service-card li::before {
  content: "✓";
  color: var(--teal-dark);
  font-weight: 900;
  margin-right: 9px;
}

.process {
  background: var(--navy);
  color: var(--white);
}

.process .section-heading h2 {
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
}

.process-step span {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 28px;
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  color: rgba(255,255,255,0.58);
  font-size: 14px;
}

.why-us {
  background: var(--cream);
}

.why-panel {
  position: sticky;
  top: 120px;
}

.why-panel > p:nth-of-type(2) {
  margin: 26px 0;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-weight: 800;
}

.text-link span {
  transition: transform .25s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit {
  min-height: 220px;
  padding: 28px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.benefit strong {
  font-size: 12px;
  color: var(--teal-dark);
}

.benefit h3 {
  margin: 40px 0 10px;
  font-size: 20px;
}

.benefit p {
  color: var(--muted);
  font-size: 14px;
}

.contact {
  background: var(--white);
}

.contact-card {
  padding: 54px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  background:
    radial-gradient(circle at 10% 10%, rgba(21,184,166,0.11), transparent 26%),
    var(--navy);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(7,23,37,0.18);
}

.contact-copy > p:nth-of-type(2) {
  margin: 24px 0;
  color: rgba(255,255,255,0.66);
}

.contact-details {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}

.contact-details div {
  display: flex;
  flex-direction: column;
}

.contact-details span {
  color: rgba(255,255,255,0.42);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 18px;
}

.contact-form {
  padding: 28px;
  border-radius: 24px;
  background: var(--white);
  color: var(--text);
  display: grid;
  gap: 17px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dfe5e9;
  border-radius: 13px;
  padding: 13px 14px;
  color: var(--text);
  background: #fbfcfd;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(21,184,166,0.1);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  font-size: 12px;
  color: var(--teal-dark);
  text-align: center;
}

.site-footer {
  padding: 50px 0;
  background: #06131f;
  color: rgba(255,255,255,0.66);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  align-items: center;
  gap: 35px;
}

.footer-brand {
  margin-bottom: 15px;
}

.footer-grid p {
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
}

.copyright {
  text-align: right;
}

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

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split-grid,
  .why-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 640px;
    transform: none;
  }

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

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

  .why-panel {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .copyright {
    text-align: left;
  }
}

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

  .site-nav {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    padding: 22px;
    border-radius: 18px;
    background: #0a2031;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    display: none;
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
  }

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

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 140px 0 80px;
  }

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

  .hero-stats {
    gap: 18px;
    justify-content: space-between;
  }

  .hero-stats strong {
    font-size: 22px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 0;
  }

  .section {
    padding: 82px 0;
  }

  .services-grid,
  .process-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .contact-form {
    padding: 20px;
  }

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

  .button {
    width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
