﻿:root {
  --blue: #000a34;
  --blue-2: #07144f;
  --gold: #fabc09;
  --gold-2: #ffd24c;
  --white: #ffffff;
  --soft: #f5f7fb;
  --line: #e6eaf2;
  --text: #17213a;
  --muted: #667085;
  --shadow: 0 20px 55px rgba(0, 10, 52, 0.12);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  background: var(--white);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(230, 234, 242, 0.8);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(0, 10, 52, 0.1);
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 235px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.nav-menu a {
  text-decoration: none;
}

.nav-menu > a:not(.btn) {
  position: relative;
  padding: 8px 0;
}

.nav-menu > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-menu > a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 96px 0;
}

.section-dark {
  background:
    radial-gradient(circle at 85% 12%, rgba(250, 188, 9, 0.22), transparent 30%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
  color: var(--white);
}

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

.hero {
  padding: 158px 0 96px;
  overflow: hidden;
}

.hero-grid,
.about-grid,
.advisor-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.12;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.hero h1 {
  color: var(--white);
}

h1 {
  max-width: 760px;
  font-size: clamp(40px, 5.5vw, 68px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  letter-spacing: -0.015em;
}

h3 {
  font-size: 22px;
}

.hero-text {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-gold {
  background: var(--gold);
  color: var(--blue);
  box-shadow: 0 14px 34px rgba(250, 188, 9, 0.28);
}

.btn-gold:hover {
  background: var(--gold-2);
}

.btn-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-outline {
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--line);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-points span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-visual {
  position: relative;
}

.hero-visual img,
.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
}

.floating-card {
  position: absolute;
  width: min(275px, 72%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  box-shadow: var(--shadow);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.card-top {
  top: 22px;
  left: -28px;
}

.card-bottom {
  right: -18px;
  bottom: 24px;
}

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

.section-heading p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.need-grid,
.services-grid,
.plans-grid,
.simple-grid,
.trust-grid {
  display: grid;
  gap: 22px;
}

.need-grid {
  grid-template-columns: repeat(4, 1fr);
}

.simple-grid,
.plans-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.need-card,
.service-card,
.plan-card,
.simple-card,
.advisor-card,
.trust-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 10, 52, 0.06);
}

.service-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
  background: var(--soft);
}
.need-card,
.service-card,
.plan-card,
.simple-card {
  padding: 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.need-card:hover,
.service-card:hover,
.plan-card:hover,
.simple-card:hover {
  border-color: rgba(250, 188, 9, 0.7);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: rgba(250, 188, 9, 0.18);
  color: var(--blue);
  font-weight: 900;
}

.need-card p,
.service-card p,
.plan-card p,
.simple-card p {
  margin-top: 12px;
  color: var(--muted);
}

.need-card a,
.service-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.service-card ul,
.plan-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.plan-card li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 22px;
  color: var(--text);
  font-size: 14px;
}

.service-card li::before,
.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.service-card a {
  color: var(--gold);
}

.plan-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
}

.plan-card .btn {
  margin-top: auto;
}

.plan-card.featured {
  border-color: var(--gold);
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 24px 58px rgba(0, 10, 52, 0.2);
}

.plan-card.featured h3,
.plan-card.featured p,
.plan-card.featured li {
  color: var(--white);
}

.tag {
  width: fit-content;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(250, 188, 9, 0.16);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.advisor-section {
  background:
    linear-gradient(90deg, rgba(250, 188, 9, 0.09), transparent 45%),
    var(--white);
}

.advisor-card {
  padding: 28px;
}

.advisor-card fieldset {
  margin-bottom: 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.advisor-card legend {
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 900;
}

.advisor-card label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 18px;
  color: var(--muted);
  cursor: pointer;
}

.advisor-card input {
  accent-color: var(--gold);
}

.advisor-result {
  display: none;
  margin-top: 22px;
  border-radius: var(--radius);
  padding: 20px;
  background: var(--soft);
}

.advisor-result.is-active {
  display: block;
}

.advisor-result strong {
  display: block;
  color: var(--blue);
  font-size: 20px;
}

.advisor-result p {
  margin: 8px 0 16px;
  color: var(--muted);
}

.trust-section {
  padding: 72px 0;
}

.trust-grid {
  grid-template-columns: repeat(5, 1fr);
}

.trust-item {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--gold);
  line-height: 1.25;
}

.trust-item span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.about-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  border-left: 4px solid var(--gold);
  padding-left: 18px;
  color: var(--blue);
  font-weight: 800;
}

.final-cta {
  padding: 92px 0;
}

.final-cta-box {
  max-width: 900px;
  text-align: center;
}

.final-cta-box .eyebrow,
.final-cta-box .hero-actions {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.final-cta-box p:not(.eyebrow) {
  max-width: 670px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.site-footer {
  background: #050b27;
  color: rgba(255, 255, 255, 0.72);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.2fr 0.8fr;
  gap: 34px;
}

.footer-logo {
  width: 230px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 17px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.copyright {
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.whatsapp-main {
  min-width: 128px;
  border: 0;
  border-radius: 999px;
  padding: 15px 20px;
  background: #25d366;
  color: #072b16;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
  cursor: pointer;
}

.whatsapp-options {
  display: grid;
  gap: 8px;
  min-width: 160px;
  transform: translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float.is-open .whatsapp-options,
.whatsapp-float:hover .whatsapp-options {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-options a {
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--white);
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
}

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

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

@media (max-width: 1100px) {
  .nav-menu {
    gap: 14px;
    font-size: 13px;
  }

  .brand img {
    width: 205px;
  }

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

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 84px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    width: 100%;
    border-radius: var(--radius);
    padding: 12px;
  }

  .nav-menu > a:not(.btn)::after {
    display: none;
  }

  .nav-menu > a:not(.btn):hover {
    background: var(--soft);
  }

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

  .hero-grid,
  .about-grid,
  .advisor-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .card-top {
    left: 12px;
  }

  .card-bottom {
    right: 12px;
  }

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

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

  .brand img {
    width: 178px;
  }

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

  .need-grid,
  .services-grid,
  .simple-grid,
  .plans-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .hero-visual img,
  .about-image img {
    aspect-ratio: 16 / 11;
  }

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

  .advisor-card label {
    width: calc(50% - 12px);
    margin-right: 0;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-main {
    min-width: 116px;
    padding: 13px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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