@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --navy: #0B1F3A;
  --navy-2: #102A4C;
  --gold: #C9A86A;
  --gold-2: #E1C98D;
  --white: #FFFFFF;
  --off: #F7F4EF;
  --soft: #EEF2F6;
  --text: #1E2A36;
  --muted: #657181;
  --border: rgba(11, 31, 58, .12);
  --shadow: 0 24px 70px rgba(11, 31, 58, .12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.main-nav a {
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -8px;
  background: var(--gold);
  transition: .3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--navy);
}

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

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 5% 10%, rgba(201,168,106,.18), transparent 32%),
    linear-gradient(135deg, #fff 0%, #fbf8f2 48%, #f1f5f8 100%);
  padding-top: 72px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 14px;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 5vw, 72px);
  max-width: 760px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  color: var(--navy);
  margin: 0;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--muted);
  max-width: 650px;
  margin: 26px 0 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 800;
  transition: .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 35px rgba(11,31,58,.18);
}

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

.btn-secondary {
  border-color: var(--gold);
  color: var(--navy);
  background: rgba(255,255,255,.72);
}

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

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

.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 700;
}

.hero-image {
  position: relative;
}

.image-card {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.9);
  background: var(--white);
}

.image-card img {
  width: 100%;
  height: min(680px, 72vh);
  object-fit: cover;
  object-position: center top;
}

.floating-card {
  position: absolute;
  left: -36px;
  bottom: 42px;
  max-width: 270px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--border);
  box-shadow: 0 24px 54px rgba(11,31,58,.15);
}

.floating-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

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

.problems h2,
.problems .section-heading p:not(.eyebrow) {
  color: var(--white);
}

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

.problem-grid article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.94);
  font-weight: 600;
}

.about {
  background: var(--off);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: center;
}

.about-content p {
  color: var(--muted);
  font-size: 17px;
}

.signature-box {
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  border-radius: 0 18px 18px 0;
}

.signature-box strong,
.signature-box span {
  display: block;
}

.signature-box strong {
  color: var(--navy);
}

.signature-box span {
  color: var(--muted);
  margin-top: 4px;
}

.about-panel {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.about-panel ul {
  padding: 0;
  list-style: none;
  margin: 22px 0 0;
}

.about-panel li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.about-panel li::before {
  content: "•";
  color: var(--gold);
  font-size: 28px;
  position: absolute;
  left: 0;
  top: 6px;
}

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

.practice-card {
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(11,31,58,.06);
}

.card-number {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .15em;
  margin-bottom: 14px;
}

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

.practice-card ul {
  columns: 2;
  margin: 24px 0 0;
  padding-left: 18px;
}

.practice-card li {
  margin-bottom: 10px;
}

.process {
  background: linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

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

.step {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(11,31,58,.06);
}

.step span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 18px;
}

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

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

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

.diff-title h2 {
  color: var(--white);
}

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

.diff-list div {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.07);
}

.diff-list h3 {
  color: var(--gold-2);
}

.diff-list p {
  color: rgba(255,255,255,.78);
}

.contact {
  background: var(--off);
}

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

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

.contact-card {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

.contact-card strong,
.contact-card a {
  display: block;
}

.contact-card a {
  color: var(--gold-2);
  margin-top: 10px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 34px;
}

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

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,106,.14);
}

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

.final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--navy), #061326);
  color: var(--white);
  padding: 82px 0;
}

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

.final-cta p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  margin-bottom: 28px;
}

.site-footer {
  background: #050E1B;
  color: rgba(255,255,255,.78);
  padding: 58px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr .8fr;
  gap: 42px;
}

.footer-logo {
  width: 260px;
  filter: brightness(1.5);
  margin-bottom: 18px;
}

.site-footer h3 {
  color: var(--gold-2);
  margin-bottom: 14px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 9px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(0,0,0,.22);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: .65s ease;
}

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

@media (max-width: 980px) {
  .brand img {
    width: 210px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .hero {
    padding-top: 52px;
  }

  .hero-grid {
    gap: 42px;
  }

  .floating-card {
    left: 20px;
    bottom: 20px;
  }

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

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

  .practice-card ul {
    columns: 1;
  }

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

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

  .section {
    padding: 68px 0;
  }

  .brand img {
    width: 190px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

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

  .btn {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
  }

  .image-card img {
    height: 520px;
  }

  .floating-card {
    position: static;
    margin-top: 16px;
    max-width: none;
  }

  .problem-grid,
  .practice-grid,
  .steps,
  .diff-list {
    grid-template-columns: 1fr;
  }

  .practice-card,
  .contact-form,
  .about-panel {
    padding: 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }

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