:root {
  --navy-950: #071723;
  --navy-900: #0b2233;
  --navy-800: #10364c;
  --navy-700: #17536c;
  --cream: #f8f4ec;
  --paper: #fffdf8;
  --ink: #132833;
  --muted: #61727a;
  --coral: #e85d3f;
  --coral-dark: #c9472d;
  --gold: #e7ad3b;
  --line: rgba(19, 40, 51, 0.12);
  --shadow: 0 24px 70px rgba(7, 23, 35, 0.12);
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--navy-950);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
}

p {
  margin-bottom: 20px;
}

a,
a:hover,
a:focus {
  color: var(--coral);
  text-decoration: none;
}

.section {
  position: relative;
  padding: 105px 0;
}

.section-kicker,
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: #f2c86f;
}

.navbar-default {
  min-height: 76px;
  margin: 0;
  border: 0;
  background: transparent;
  font-family: "DM Sans", Arial, sans-serif;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.navbar-default .navbar-brand {
  display: flex;
  height: 76px;
  padding: 15px;
  align-items: center;
  color: #fff;
}

.brand-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-right: 11px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-name {
  display: flex;
  flex-direction: column;
  color: inherit;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.05;
}

.brand-name small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.navbar-default .nav > li > a,
.navbar-default .nav > li > a:focus {
  margin: 17px 2px;
  padding: 11px 14px;
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.navbar-default .nav > li > a:hover,
.navbar-default .nav > li > a:focus:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.navbar-default .nav > li > a.nav-cta {
  margin-left: 12px;
  padding-right: 18px;
  padding-left: 18px;
  color: #fff;
  background: var(--coral);
}

.navbar-default.affix {
  background: rgba(255, 253, 248, 0.97);
  box-shadow: 0 8px 30px rgba(7, 23, 35, 0.08);
}

.navbar-default.affix .navbar-brand,
.navbar-default.affix .nav > li > a,
.navbar-default.affix .nav > li > a:focus {
  color: var(--navy-900);
}

.navbar-default.affix .brand-mark {
  border-color: var(--navy-900);
  color: var(--navy-900);
  background: transparent;
}

.navbar-default.affix .brand-name small {
  color: var(--muted);
}

.navbar-default.affix .nav > li > a.nav-cta {
  color: #fff;
}

.navbar-default .navbar-toggle {
  margin-top: 20px;
  border-color: rgba(255, 255, 255, 0.35);
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 145px 0 90px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(7, 23, 35, 0.98) 0%, rgba(11, 34, 51, 0.96) 58%, rgba(16, 54, 76, 0.92) 100%),
    url("../img/header.png") center/cover;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: -220px;
  right: -150px;
  width: 630px;
  height: 630px;
  background: radial-gradient(circle, rgba(231, 173, 59, 0.18), transparent 67%);
}

.hero-glow-two {
  bottom: -260px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 93, 63, 0.14), transparent 67%);
}

.hero-container,
.hero-row {
  position: relative;
  min-height: 540px;
}

.hero-row {
  display: flex;
  align-items: center;
}

.hero-copy {
  z-index: 2;
}

.hero .eyebrow {
  color: #f2c86f;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(48px, 6.4vw, 78px);
  line-height: 1.01;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 38px;
}

.btn {
  border: 0;
  border-radius: 8px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-xl {
  padding: 16px 24px;
}

.btn-primary,
.btn-primary:focus {
  border-color: var(--coral);
  color: #fff;
  background: var(--coral);
  box-shadow: 0 12px 24px rgba(232, 93, 63, 0.2);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:active:hover {
  border-color: var(--coral-dark);
  color: #fff;
  background: var(--coral-dark);
}

.btn-ghost,
.btn-ghost:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-row span::before {
  margin-right: 8px;
  color: var(--gold);
  content: "•";
}

.hero-art {
  position: relative;
  align-self: stretch;
}

.hero-art-backdrop {
  position: absolute;
  top: 8%;
  right: -17%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.015) 62%, transparent 63%);
}

.hero-art img {
  position: absolute;
  right: -135px;
  bottom: -100px;
  z-index: 1;
  width: 700px;
  max-width: none;
  filter: drop-shadow(0 35px 35px rgba(0, 0, 0, 0.32));
}

.hero-note {
  position: absolute;
  right: -5px;
  bottom: 38px;
  z-index: 2;
  min-width: 190px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(7, 23, 35, 0.78);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  color: #fff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 15px;
}

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

.wave-divider {
  position: absolute;
  right: -2%;
  bottom: -1px;
  left: -2%;
  height: 42px;
  background: var(--paper);
  clip-path: polygon(0 65%, 13% 84%, 29% 45%, 48% 82%, 67% 42%, 83% 72%, 100% 40%, 100% 100%, 0 100%);
}

.intro-section {
  padding-top: 120px;
}

.intro-section h2 {
  max-width: 470px;
}

.intro-copy {
  color: var(--muted);
  font-size: 17px;
}

.lead-copy {
  color: var(--ink);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.55;
}

.value-grid {
  margin-top: 65px;
}

.value-card {
  min-height: 270px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(7, 23, 35, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.value-card.featured {
  color: rgba(255, 255, 255, 0.68);
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.value-card.featured h3 {
  color: #fff;
}

.card-number {
  display: inline-block;
  margin-bottom: 45px;
  color: var(--coral);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.value-card.featured p {
  color: rgba(255, 255, 255, 0.65);
}

.proof-section {
  padding-top: 20px;
  background: linear-gradient(to bottom, var(--paper), var(--cream));
}

.proof-panel {
  padding: 65px 70px;
  overflow: hidden;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 10% 10%, rgba(232, 93, 63, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow);
}

.proof-panel h2 {
  max-width: 640px;
  color: #fff;
  font-size: clamp(34px, 4vw, 49px);
}

.proof-list {
  padding-top: 13px;
}

.proof-list div {
  display: flex;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 15px;
  font-weight: 600;
}

.proof-list span {
  margin-right: 13px;
  color: var(--gold);
}

.services-section {
  background: var(--cream);
}

.section-heading-wrap {
  max-width: 700px;
  margin: 0 auto 55px;
}

.section-heading-wrap p {
  color: var(--muted);
  font-size: 17px;
}

.service-card {
  display: flex;
  min-height: 405px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(7, 23, 35, 0.06);
}

.service-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  margin-right: 24px;
  padding: 15px;
  border-radius: 12px;
  background: rgba(232, 93, 63, 0.1);
}

.service-icon img {
  width: 100%;
  height: 100%;
}

.service-label {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
}

.service-card ul {
  margin: 25px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card li {
  position: relative;
  padding: 5px 0 5px 19px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.service-card li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "—";
}

.contact-section {
  padding: 0;
  background: var(--cream);
}

.contact-shell {
  position: relative;
  margin-bottom: -70px;
  padding: 75px;
  border-radius: 20px;
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.contact-copy {
  padding-top: 15px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-copy h2 {
  margin-bottom: 25px;
  color: #fff;
}

.contact-promise {
  margin-top: 35px;
  padding: 20px 0 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--gold);
}

.contact-promise strong,
.contact-promise span {
  display: block;
}

.contact-promise strong {
  color: #fff;
}

.contact-promise span {
  font-size: 13px;
}

.contact-form {
  padding: 35px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.contact-form label {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form .form-control {
  height: 50px;
  border: 1px solid rgba(19, 40, 51, 0.16);
  border-radius: 7px;
  box-shadow: none;
  color: var(--ink);
  background: #fcfbf8;
  font-size: 16px;
}

.contact-form textarea.form-control {
  height: auto;
  resize: vertical;
}

.contact-form .form-control:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 93, 63, 0.1);
}

.contact-form .btn {
  margin-top: 8px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

footer {
  padding: 125px 0 50px;
  color: rgba(255, 255, 255, 0.48);
  background: var(--navy-950);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  color: #fff;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.footer-brand:hover,
.footer-brand:focus {
  color: #fff;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  font-size: 11px;
}

@media (max-width: 991px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-row {
    display: block;
  }

  .hero-copy {
    padding-top: 35px;
  }

  .hero-art {
    min-height: 430px;
  }

  .hero-art img {
    right: 50%;
    bottom: -115px;
    width: 580px;
    transform: translateX(50%);
  }

  .hero-art-backdrop {
    right: 50%;
    transform: translateX(50%);
  }

  .hero-note {
    right: 10%;
  }

  .value-card,
  .service-card {
    margin-bottom: 25px;
  }

  .proof-panel,
  .contact-shell {
    padding: 50px;
  }

  .contact-copy {
    margin-bottom: 35px;
  }
}

@media (max-width: 767px) {
  .navbar-default {
    background: var(--navy-950);
  }

  .navbar-default .navbar-collapse {
    border: 0;
    background: var(--navy-950);
  }

  .navbar-default .nav > li > a,
  .navbar-default .nav > li > a:focus {
    margin: 3px 5px;
  }

  .navbar-default .nav > li > a.nav-cta {
    margin: 8px 5px 14px;
    text-align: center;
  }

  .hero {
    padding-top: 120px;
  }

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

  .hero-actions {
    display: block;
  }

  .hero-actions .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .trust-row {
    display: block;
  }

  .trust-row span {
    display: block;
    margin-bottom: 6px;
  }

  .hero-art {
    min-height: 350px;
  }

  .hero-art img {
    bottom: -75px;
    width: 450px;
  }

  .hero-art-backdrop {
    width: 340px;
    height: 340px;
  }

  .hero-note {
    right: 0;
    bottom: 15px;
  }

  .section {
    padding: 65px 0;
  }

  .intro-section {
    padding-top: 85px;
  }

  .value-grid {
    margin-top: 35px;
  }

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

  .card-number {
    margin-bottom: 24px;
  }

  .proof-panel,
  .contact-shell {
    padding: 35px 25px;
    border-radius: 14px;
  }

  .service-card {
    display: block;
    min-height: auto;
    padding: 30px;
  }

  .service-icon {
    margin: 0 0 20px;
  }

  .contact-form {
    padding: 25px;
  }

  .footer-inner {
    display: block;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
    margin-bottom: 20px;
  }
}
