:root {
  --navy: #071d38;
  --navy-2: #0d2d52;
  --blue: #164c7d;
  --gold: #c6a15b;
  --gold-light: #e2c98f;
  --text: #17202a;
  --muted: #66707d;
  --soft: #f4f6f8;
  --white: #ffffff;
  --border: #e4e8ed;
  --shadow: 0 20px 60px rgba(7, 29, 56, 0.13);
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228, 232, 237, 0.75);
  transition: box-shadow .25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(7, 29, 56, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  color: var(--navy);
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-size: .94rem;
  font-weight: 600;
  color: #2c3947;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links .nav-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 155px 0 95px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(198, 161, 91, .20), transparent 30%),
    linear-gradient(135deg, #06172d 0%, #0d2d52 58%, #11375f 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  right: -120px;
  top: 120px;
  box-shadow:
    0 0 0 90px rgba(255,255,255,.02),
    0 0 0 180px rgba(255,255,255,.018);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold-light);
}

.hero h1 {
  max-width: 780px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5.75rem);
  line-height: .98;
  letter-spacing: -.03em;
}

.hero-content > p {
  max-width: 710px;
  margin-top: 28px;
  color: rgba(255,255,255,.78);
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.btn {
  min-height: 52px;
  padding: 14px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(198, 161, 91, .22);
}

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

.btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
}

.btn-gold {
  color: var(--navy);
  background: var(--gold);
}

.btn-full {
  width: 100%;
  border-radius: 12px;
}

.hero-trust {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 680px;
}

.hero-trust div {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

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

.hero-trust strong {
  margin-bottom: 4px;
  font-size: .95rem;
}

.hero-trust span {
  color: rgba(255,255,255,.6);
  font-size: .84rem;
}

.hero-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 80px rgba(0,0,0,.2);
}

.hero-card img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 50%;
  filter: drop-shadow(0 18px 38px rgba(0,0,0,.25));
}

.hero-card-line {
  width: 52px;
  height: 2px;
  margin: 28px 0 20px;
  background: var(--gold);
}

.hero-card p {
  color: rgba(255,255,255,.76);
}

.hero-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-light);
  font-weight: 700;
}

.stats {
  position: relative;
  z-index: 10;
  margin-top: -44px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stats-grid > div {
  padding: 30px;
  border-right: 1px solid var(--border);
}

.stats-grid > div:last-child {
  border-right: 0;
}

.stats-grid span {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
}

.stats-grid strong {
  display: block;
  margin: 7px 0;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.stats-grid p {
  color: var(--muted);
  font-size: .91rem;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 52px;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2,
.cta-box h2 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.section-heading p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
}

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

.service-card {
  min-height: 285px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(198, 161, 91, .55);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #f2eadc;
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.service-card h3 {
  margin: 25px 0 12px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
}

.service-card p {
  color: var(--muted);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255,255,255,.02), transparent 40%),
    var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 90px;
  align-items: center;
}

.about-logo {
  padding: 40px;
  border-radius: 32px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.about-logo img {
  width: 100%;
  max-width: 420px;
  margin: auto;
  border-radius: 50%;
}

.about-copy h2 {
  color: var(--white);
}

.about-copy p {
  margin-top: 20px;
  color: rgba(255,255,255,.72);
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--gold-light);
  font-weight: 700;
}

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

.benefit {
  padding: 28px;
  display: flex;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.benefit > span {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #f2eadc;
  border-radius: 50%;
  font-weight: 800;
}

.benefit h3 {
  color: var(--navy);
  margin-bottom: 5px;
}

.benefit p {
  color: var(--muted);
  font-size: .94rem;
}

.cta-section {
  padding: 0 0 110px;
}

.cta-box {
  padding: 55px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(198, 161, 91, .25), transparent 30%),
    var(--navy-2);
  border-radius: 28px;
}

.cta-box h2 {
  color: var(--white);
}

.cta-box p {
  max-width: 720px;
  margin-top: 15px;
  color: rgba(255,255,255,.72);
}

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

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

.contact-copy p {
  max-width: 460px;
  margin-top: 18px;
  color: var(--muted);
}

.contact-data {
  margin-top: 35px;
  display: grid;
  gap: 14px;
}

.contact-data a {
  padding: 19px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.contact-data span {
  color: var(--muted);
  font-size: .85rem;
}

.contact-data strong {
  color: var(--navy);
}

.contact-form {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(7, 29, 56, .07);
}

.contact-form h3 {
  margin-bottom: 24px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
}

.contact-form label {
  display: block;
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 700;
}

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

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, .13);
}

.contact-form button {
  margin-top: 22px;
}

.contact-form small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

.footer {
  color: rgba(255,255,255,.7);
  background: #051426;
}

.footer-grid {
  padding: 55px 0 35px;
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 45px;
}

.footer-brand img {
  width: 105px;
  border-radius: 50%;
}

.footer-brand p {
  margin-top: 12px;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

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

.footer-contact {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-contact span {
  color: var(--gold-light);
  font-weight: 700;
}

.footer-contact a {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
}

.footer-bottom {
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0,0,0,.24);
  transition: transform .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
}

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

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

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    padding: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 10px 8px;
  }

  .nav-links .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

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

  .hero-card {
    max-width: 500px;
  }

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

  .about-grid {
    gap: 45px;
  }

  .about-logo {
    max-width: 520px;
  }

  .cta-box {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

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

  .nav {
    height: 76px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand-text small {
    display: none;
  }

  .nav-links {
    top: 76px;
    left: 14px;
    right: 14px;
  }

  .hero {
    padding: 125px 0 78px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .hero-content > p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-card {
    padding: 25px;
  }

  .stats {
    margin-top: -28px;
  }

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

  .stats-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stats-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 80px 0;
  }

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

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

  .about-logo {
    padding: 25px;
  }

  .cta-section {
    padding-bottom: 80px;
  }

  .cta-box {
    padding: 34px 24px;
  }

  .contact-grid {
    gap: 45px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .contact-data a {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-grid {
    gap: 28px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}


.form-actions {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-actions .btn {
  width: 100%;
  border-radius: 12px;
}

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

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

.footer-email {
  font-size: .88rem !important;
  font-weight: 500 !important;
  overflow-wrap: anywhere;
}

@media (max-width: 560px) {
  .form-actions {
    grid-template-columns: 1fr;
  }
}
