:root {
  --deep: #0b6a8b;
  --turq: #5cc0cc;
  --sun: #fbb925;
  --ember: #e14b27;
  --ink: #123240;
  --mist: #f5f8fa;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Avenir Next", "Avenir", "Futura", "Gill Sans", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  margin-bottom: 12px;
}

.section-head p {
  max-width: 640px;
  margin: 0 auto;
  color: #405260;
}

.privacy-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--deep);
}

.privacy-content p {
  margin-bottom: 12px;
}

.privacy-content ul {
  margin: 10px 0 18px 20px;
  color: #3a4f5c;
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(18, 50, 64, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
  color: #3a4f5c;
}

.contact-form input {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d8e3ea;
  background: #f8fbfd;
  font-size: 1rem;
}

.contact-form input:focus {
  outline: 2px solid rgba(92, 192, 204, 0.35);
  border-color: #9cd6dd;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 24px;
  font-size: 0.95rem;
  color: #3a4f5c;
}

.checkbox input {
  margin-top: 4px;
}

.form-status {
  margin-top: 14px;
  font-weight: 600;
  color: var(--deep);
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(18, 50, 64, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: #3a5664;
}

.brand-text strong {
  font-size: 1.05rem;
  color: var(--deep);
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: #3b4c58;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--sun);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  background: var(--sun);
  color: #2d2d2d;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(251, 185, 37, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(251, 185, 37, 0.4);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--deep);
  color: var(--deep);
  box-shadow: none;
}

.btn-small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.btn-invert {
  background: var(--white);
  color: var(--deep);
  box-shadow: 0 14px 40px rgba(18, 50, 64, 0.25);
}

.hero {
  position: relative;
  padding: 120px 0 120px;
  background: linear-gradient(145deg, #ffffff 0%, #eef7fa 60%, #e8f2f6 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(92, 192, 204, 0.25), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(225, 75, 39, 0.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(11, 106, 139, 0.2), transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='400' viewBox='0 0 800 400'><path d='M0 260 C160 150, 320 340, 480 240 C640 140, 720 300, 800 220' stroke='%235CC0CC' stroke-width='6' fill='none' stroke-linecap='round' opacity='0.4'/><path d='M0 320 C140 220, 360 380, 520 300 C660 240, 760 320, 800 280' stroke='%230B6A8B' stroke-width='4' fill='none' stroke-linecap='round' opacity='0.35'/></svg>") no-repeat center/cover;
  opacity: 0.7;
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-logo {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.7rem);
  color: var(--deep);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 28px;
  color: #37505d;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  background: var(--white);
  padding: 22px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(18, 50, 64, 0.12);
}

.hero-metrics strong {
  font-size: 1.6rem;
  color: var(--deep);
}

.hero-metrics span {
  display: block;
  color: #5a6f7c;
  font-size: 0.9rem;
}

.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.card {
  background: var(--mist);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 38px rgba(18, 50, 64, 0.08);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(11, 106, 139, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.card .icon svg {
  width: 28px;
  height: 28px;
  color: var(--deep);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 1.2rem;
}

.process {
  background: linear-gradient(135deg, #f7fbfd 0%, #ffffff 60%);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
}

.step {
  background: var(--white);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 42px rgba(18, 50, 64, 0.08);
  position: relative;
}

.step-num {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--deep);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
}

.benefits {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.benefits-copy h2 {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  margin-bottom: 14px;
}

.benefits-copy ul {
  margin-top: 18px;
  padding-left: 18px;
  color: #3a4f5c;
}

.benefits-copy li {
  margin-bottom: 10px;
}

.benefits-cards {
  display: grid;
  gap: 18px;
}

.mini-card {
  background: linear-gradient(120deg, rgba(92, 192, 204, 0.15), rgba(11, 106, 139, 0.05));
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 16px 36px rgba(18, 50, 64, 0.08);
}

.mini-card h3 {
  color: var(--deep);
  margin-bottom: 8px;
}

.trust {
  background: linear-gradient(135deg, #f8fbff 0%, #eff7fa 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(18, 50, 64, 0.08);
}

.stat h3 {
  font-size: 1.9rem;
  color: var(--deep);
}

.testimonial {
  max-width: 760px;
  margin: 0 auto;
  padding: 26px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(18, 50, 64, 0.1);
  text-align: center;
}

.testimonial span {
  display: block;
  margin-top: 14px;
  color: #4b5f6b;
}

.cta {
  background: linear-gradient(140deg, var(--deep), #0f3f52 70%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(251, 185, 37, 0.4), transparent 70%);
  transform: rotate(10deg);
}

.cta h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.cta p {
  max-width: 640px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.85);
}

.footer {
  background: #0c2f3a;
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 140px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

.footer-meta p {
  margin-bottom: 6px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 110px;
  }

  .hero-metrics {
    padding: 18px;
  }

  .section {
    padding: 70px 0;
  }
}
