* {
  box-sizing: border-box;
}

:root {
  --navy: #0d2f55;
  --navy-dark: #09213c;
  --blue-light: #9db2c9;
  --background: #f8f7f4;
  --surface: #ffffff;
  --muted: #eef2f5;
  --text: #24313d;
  --border: #dce3e8;
  --shadow: 0 24px 60px rgba(13, 47, 85, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 247, 244, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13, 47, 85, 0.08);
}

.nav {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.brand {
  width: 70px;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--navy-dark);
}

.button-small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.92rem;
}

.hero {
  padding: 92px 0 110px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.3rem;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 32px;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: var(--navy);
  font-weight: 700;
  text-underline-offset: 5px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 600;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
}

.hero-card {
  position: relative;
  padding: 72px 56px 46px;
  border: 1px solid var(--border);
  border-radius: 48px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(13, 47, 85, 0.08);
  border-radius: 34px;
  pointer-events: none;
}

.hero-card img {
  width: min(340px, 100%);
  margin: 0 auto 22px;
}

.hero-card p {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  color: #5d6974;
}

.section {
  padding: 110px 0;
}

.section-muted {
  background: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading > p:last-child {
  max-width: 600px;
}

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

.card {
  min-height: 280px;
  padding: 34px 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
}

.card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--muted);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.card p {
  margin-bottom: 0;
  color: #687480;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

.about-copy > p {
  max-width: 700px;
  font-size: 1.08rem;
}

.about-points {
  margin-top: 42px;
  border-top: 1px solid #ccd5dc;
}

.about-points div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid #ccd5dc;
}

.about-points strong {
  color: var(--navy);
}

.about-points span {
  color: #66727d;
}

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

.contact-section h2,
.contact-section .eyebrow {
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  margin-top: 44px;
}

.contact-details p {
  margin-bottom: 24px;
  color: #d9e2ea;
}

.contact-details strong {
  color: white;
}

.contact-details a {
  color: white;
  text-underline-offset: 4px;
}

.social-block {
  margin-top: 32px;
}

.social-block > strong {
  display: block;
  margin-bottom: 14px;
  color: white;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.15);
}

.social-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--navy);
  font-size: 14px;
  line-height: 25px;
  text-align: center;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  margin-bottom: 8px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.12);
}

.contact-form {
  padding: 34px;
  border-radius: 30px;
  background: white;
  color: var(--text);
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fbfcfd;
  color: var(--text);
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  margin-top: 6px;
}

.contact-form small {
  display: block;
  margin-top: 14px;
  color: #74808b;
  line-height: 1.5;
}

footer {
  padding: 46px 0;
  background: #071a2e;
  color: #cad6e0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 56px;
  align-items: flex-start;
}

.footer-content > div {
  display: grid;
  gap: 10px;
}

.footer-content p {
  margin: 0;
  line-height: 1.75;
}

.footer-content strong {
  color: white;
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero {
    padding-top: 62px;
  }

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

  .about-grid,
  .contact-grid {
    gap: 44px;
  }
}

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

  .site-header .button-small {
    display: none;
  }

  .nav {
    grid-template-columns: 1fr;
  }

  .brand {
    width: 62px;
  }

  h1 {
    font-size: 3.25rem;
  }

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

  .trust-row {
    flex-direction: column;
    gap: 10px;
  }

  .hero-card {
    padding: 48px 26px 32px;
    border-radius: 34px;
  }

  .section {
    padding: 78px 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .about-points div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-message {
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 600;
}

.form-success {
  background: #e9f5ee;
  color: #195c35;
}

.form-error {
  background: #fff0f0;
  color: #8a2424;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.footer-meta {
  text-align: right;
  gap: 8px;
}

@media (max-width: 620px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  input,
  select,
  textarea {
    min-height: 52px;
    font-size: 16px;
  }

  textarea {
    min-height: 140px;
  }

  .contact-form .button {
    min-height: 56px;
  }

  .footer-meta {
    text-align: left;
  }
}


.menu-toggle,
.mobile-contact-bar {
  display: none;
}

@media (max-width: 620px) {
  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  .container {
    width: min(100% - 32px, 1160px);
  }

  .site-header {
    background: rgba(248, 247, 244, 0.98);
  }

  .nav {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .brand {
    width: 58px;
  }

  .nav > .button-small {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: white;
  }

  .menu-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 99px;
    background: var(--navy);
  }

  nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
  }

  nav.nav-open {
    display: flex;
  }

  nav a {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1rem;
  }

  nav a:active {
    background: var(--muted);
  }

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

  .hero-grid {
    gap: 34px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.65rem, 13vw, 3.55rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hero-text {
    margin-bottom: 26px;
    font-size: 1rem;
    line-height: 1.72;
  }

  .hero-actions {
    width: 100%;
    gap: 16px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 56px;
  }

  .text-link {
    align-self: center;
    padding: 6px 0;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(157, 178, 201, 0.13);
  }

  .hero-card {
    padding: 40px 28px 30px;
    border-radius: 28px;
  }

  .hero-card::before {
    inset: 14px;
    border-radius: 20px;
  }

  .hero-card img {
    width: min(250px, 82%);
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .cards {
    gap: 14px;
  }

  .card {
    padding: 26px 24px;
    border-radius: 22px;
  }

  .card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
  }

  .about-points {
    margin-top: 30px;
  }

  .about-points div {
    padding: 20px 0;
  }

  .contact-grid {
    gap: 34px;
  }

  .contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .contact-details p {
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
  }

  .social-block {
    margin-top: 26px;
  }

  .social-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .social-links a {
    width: 100%;
    min-height: 54px;
  }

  .footer-socials {
    justify-content: flex-start;
    margin-bottom: 14px;
  }

  .contact-form {
    padding: 22px;
    border-radius: 24px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  input,
  select,
  textarea {
    min-height: 52px;
    font-size: 16px;
  }

  textarea {
    min-height: 140px;
  }

  .contact-form .button {
    min-height: 56px;
  }

  .footer-content {
    width: min(100% - 40px, 1160px);
    margin-left: auto;
    margin-right: auto;
  }

  .footer-meta {
    width: 100%;
  }

  footer {
    padding: 42px 0 46px;
  }

  .footer-content > div {
    gap: 8px;
  }

  .footer-meta {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.97);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }

  .mobile-contact-bar a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--muted);
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-contact-bar a:last-child {
    background: var(--navy);
    color: white;
  }
}

@media (max-width: 390px) {
  .contact-details {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.55rem;
  }
}
