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

:root {
  --navy: #071422;
  --gold: #b78a2a;
  --gold-light: #d7b15b;
  --cream: #f7f1e7;
  --soft: #fffaf1;
  --text: #101820;
  --muted: #4f5861;
  --line: rgba(183,138,42,.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--soft);
  color: var(--text);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1180px, 92%); margin: 0 auto; }

/* ── Top Bar ── */
.top-bar {
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  padding: 9px 0;
}

.top-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* ── Header / Nav ── */
header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255,250,241,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand img { height: 70px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 30px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--navy);
  align-items: center;
  list-style: none;
}

.nav-links a {
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
  transition: color .2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--gold);
  color: var(--navy);
  background: rgba(255,250,241,.76);
  padding: 14px 24px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: .2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
}

.btn-solid {
  background: var(--gold);
  color: white;
  box-shadow: 0 16px 40px rgba(183,138,42,.24);
}

.btn-solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

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

.btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.btn-outline-light {
  border-color: rgba(255,255,255,.5);
  color: white;
  background: transparent;
}

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

.nav-cta { display: inline-flex; }

/* ── Typography ── */
h1, h2, h3, .poster-font {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  letter-spacing: 1.2px;
  color: var(--navy);
  line-height: .95;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 16px;
  display: inline-block;
  border-left: 5px solid var(--gold);
  padding-left: 14px;
}

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

/* ── Page Hero ── */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--navy);
  color: white;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,20,34,.88), rgba(7,20,34,.7));
  z-index: 1;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .4;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  color: var(--gold-light);
  border-left-color: var(--gold-light);
}

.page-hero h1 {
  font-size: clamp(52px, 7vw, 96px);
  color: white;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 800px;
}

.page-hero p {
  font-size: clamp(17px, 1.8vw, 21px);
  color: #e8edf3;
  font-weight: 600;
  max-width: 640px;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -100px;
  width: 420px;
  height: 720px;
  border: 3px solid rgba(215,177,91,.25);
  border-radius: 50%;
  transform: rotate(28deg);
  pointer-events: none;
  z-index: 1;
}

/* ── Home Hero ── */
.hero {
  min-height: 830px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,250,241,1) 0%, rgba(255,250,241,.98) 42%, rgba(255,250,241,.66) 64%, rgba(255,250,241,.18) 100%),
    radial-gradient(circle at 78% 28%, rgba(183,138,42,.25), transparent 34%),
    linear-gradient(135deg, #fffaf1, #eee2cf);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 52%;
  background:
    linear-gradient(to bottom, rgba(255,250,241,.03), rgba(255,250,241,.86)),
    url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1300&q=80') center/cover;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  opacity: .92;
}

.hero::after {
  content: "";
  position: absolute;
  top: -220px;
  left: -80px;
  width: 520px;
  height: 940px;
  border: 4px solid rgba(183,138,42,.4);
  border-radius: 50%;
  transform: rotate(27deg);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 72px 0 58px;
  max-width: 760px;
}

.hero-logo {
  width: 315px;
  margin-bottom: 30px;
}

h1.hero-heading {
  font-size: clamp(62px, 8.5vw, 118px);
  max-width: 720px;
  margin-bottom: 26px;
  text-transform: uppercase;
}

h1.hero-heading .gold { display: block; }

.hero-copy {
  font-size: clamp(18px, 2vw, 23px);
  color: #172330;
  max-width: 610px;
  font-weight: 600;
  margin-bottom: 34px;
}

.hero-copy strong { color: var(--gold); font-weight: 900; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* ── Sections ── */
section { padding: 95px 0; }

.section-title {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(46px, 5vw, 78px);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title p {
  font-size: 18px;
  color: var(--muted);
  font-weight: 600;
}

.section-title-left {
  text-align: left;
  margin: 0 0 46px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-bottom: 24px;
  font-family: 'Bebas Neue', Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--navy);
  font-size: 34px;
}

.section-label::before,
.section-label::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

/* ── Problem Strip ── */
.problem-strip {
  position: relative;
  z-index: 5;
  margin-top: -82px;
}

.problem-card {
  background: rgba(255,250,241,.94);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(7,20,34,.12);
  border-radius: 26px;
  padding: 28px;
}

.problems {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.problem {
  text-align: center;
  padding: 12px 18px 4px;
  border-right: 1px solid var(--line);
}

.problem:last-child { border-right: none; }

.icon {
  width: 58px;
  height: 58px;
  border: 3px solid var(--gold);
  border-radius: 18px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.problem h3 {
  font-size: 32px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.problem p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

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

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 24px;
  min-height: 250px;
  box-shadow: 0 16px 45px rgba(7,20,34,.06);
  position: relative;
  overflow: hidden;
  transition: transform .2s;
}

.card:hover { transform: translateY(-4px); }

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.card h3 {
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.card p {
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
}

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

/* ── Process ── */
.process-section {
  background: linear-gradient(180deg, #fffaf1, #f7f1e7);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.process-step {
  background: white;
  border-radius: 24px;
  padding: 34px 28px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px rgba(7,20,34,.055);
}

.process-step span.step-num {
  display: inline-block;
  color: var(--gold);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 46px;
  line-height: 1;
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 38px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--muted);
  font-weight: 600;
}

/* ── Split Layout ── */
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.split-reverse { grid-template-columns: 1.1fr .9fr; }

.feature-box {
  background: var(--navy);
  color: white;
  border-radius: 30px;
  padding: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(7,20,34,.2);
}

.feature-box::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 360px;
  height: 520px;
  border: 3px solid rgba(215,177,91,.45);
  border-radius: 50%;
  transform: rotate(28deg);
}

.feature-box h2 {
  color: white;
  font-size: clamp(44px, 5vw, 76px);
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.feature-box p {
  position: relative;
  z-index: 2;
  color: #e8edf3;
  font-weight: 600;
  font-size: 17px;
}

/* ── Industries Grid ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  border-radius: 24px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px rgba(7,20,34,.06);
  transition: transform .2s;
}

.industry-card:hover { transform: translateY(-4px); }

.industry-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.industry-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,20,34,.3), transparent);
}

.industry-card-body {
  padding: 28px 24px;
}

.industry-card-body h3 {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.industry-card-body p {
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 18px;
}

/* ── Industry Detail Sections ── */
.industry-section {
  padding: 80px 0;
}

.industry-section:nth-child(even) {
  background: var(--cream);
}

.industry-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.industry-img {
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 24px 60px rgba(7,20,34,.1);
}

.industry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-content h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.industry-content p {
  color: var(--muted);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.industry-content ul {
  list-style: none;
  margin: 20px 0 28px;
}

.industry-content ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-weight: 700;
  color: var(--text);
}

.industry-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* ── About / Founder ── */
.about-text p {
  color: var(--muted);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 18px;
  line-height: 1.7;
}

.founder-section {
  background: var(--cream);
}

.founder-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}

.founder-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(7,20,34,.12);
}

.founder-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
}

.founder-info h2 {
  font-size: clamp(44px, 5vw, 72px);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.founder-info .founder-role {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 24px;
  display: block;
}

.founder-info p {
  color: var(--muted);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ── Mini Grid ── */
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.mini {
  border-left: 4px solid var(--gold);
  background: white;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(7,20,34,.05);
}

.mini h3 { font-size: 29px; text-transform: uppercase; margin-bottom: 5px; }
.mini p { color: var(--muted); font-size: 14px; font-weight: 600; }

/* ── Vision / Dark Section ── */
.vision {
  background:
    linear-gradient(180deg, rgba(7,20,34,.96), rgba(7,20,34,.99)),
    url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1300&q=80') center/cover;
  color: white;
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--gold);
  border-bottom: 6px solid var(--gold);
}

.vision::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -200px;
  width: 520px;
  height: 820px;
  border: 3px solid rgba(215,177,91,.32);
  border-radius: 50%;
  transform: rotate(28deg);
  pointer-events: none;
}

.vision .container { position: relative; z-index: 2; }

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

.vision h2 {
  color: white;
  font-size: clamp(48px, 6vw, 92px);
  text-transform: uppercase;
  margin-bottom: 22px;
  max-width: 880px;
}

.vision h2 .gold { color: var(--gold-light); display: block; }

.vision-lead {
  color: #e8edf3;
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 760px;
  margin-bottom: 46px;
}

.vision-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar {
  border: 1px solid rgba(215,177,91,.45);
  border-radius: 22px;
  padding: 30px 26px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(4px);
}

.pillar h3 {
  color: var(--gold-light);
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pillar p {
  color: #e8edf3;
  font-weight: 600;
  font-size: 15px;
}

/* ── CTA Band ── */
.cta-band {
  background:
    linear-gradient(90deg, rgba(7,20,34,.96), rgba(7,20,34,.92)),
    url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1300&q=80') center/cover;
  color: white;
  text-align: center;
  padding: 78px 0;
  border-top: 6px solid var(--gold);
  border-bottom: 6px solid var(--gold);
}

.cta-band h2 {
  color: white;
  font-size: clamp(44px, 6vw, 86px);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cta-band p {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 18px;
  color: #e8edf3;
  font-weight: 600;
}

/* ── Contact ── */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 22px 70px rgba(7,20,34,.08);
}

.contact-info-panel h2 {
  font-size: clamp(40px, 4vw, 60px);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-info-panel > p {
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 28px;
  line-height: 1.7;
}

.details {
  display: grid;
  gap: 14px;
}

.detail {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  font-weight: 800;
  color: var(--navy);
  background: var(--soft);
  transition: border-color .2s;
}

a.detail:hover { border-color: var(--gold); }

.detail span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}

/* ── Contact Form ── */
.contact-form-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 22px 70px rgba(7,20,34,.08);
}

.contact-form-panel h3 {
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: var(--soft);
  transition: border-color .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { min-height: 120px; resize: vertical; }

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

/* ── Founder Contact Card ── */
.founder-contact {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  margin-top: 24px;
}

.founder-contact img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.founder-contact-text strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.founder-contact-text span {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Social Links ── */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  transition: .2s ease;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.social-link svg { width: 20px; height: 20px; }

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

.social-link-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  color: white;
  transition: .2s ease;
}

.social-link-footer:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.social-link-footer svg { width: 18px; height: 18px; }

/* ── Footer ── */
footer {
  background: var(--navy);
  color: white;
  padding: 48px 0 32px;
  font-size: 14px;
  font-weight: 600;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--gold-light);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,.6);
  transition: color .2s;
  font-weight: 600;
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom span {
  color: rgba(255,255,255,.5);
}

/* ── Thank You ── */
.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0;
}

.thank-you-section h1 {
  font-size: clamp(48px, 6vw, 86px);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.thank-you-section p {
  font-size: 18px;
  color: var(--muted);
  font-weight: 600;
  max-width: 540px;
  margin: 0 auto 30px;
}

/* ── Pricing ── */
.packages-hero::before {
  background: linear-gradient(135deg, rgba(7,20,34,.96), rgba(7,20,34,.82));
}

.packages-hero {
  background:
    radial-gradient(circle at 82% 24%, rgba(183,138,42,.28), transparent 42%),
    var(--navy);
}

.pricing-section {
  background: linear-gradient(180deg, #fffaf1, #f7f1e7);
  border-bottom: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 40px 32px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(7,20,34,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 72px rgba(7,20,34,.14);
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.price-card .plan-tag {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  margin-bottom: 10px;
}

.price-card .plan-name {
  font-size: clamp(34px, 3.4vw, 44px);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.price-card .plan-desc {
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 26px;
  min-height: 72px;
}

.price-block {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  margin-bottom: 26px;
}

.price-old {
  display: inline-block;
  position: relative;
  color: var(--muted);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .5px;
  margin-bottom: 6px;
}

.price-old::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  top: 50%;
  height: 2px;
  background: #c0392b;
  transform: rotate(-6deg);
}

.price-now {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-currency {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 1px;
}

.price-amount {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(58px, 6vw, 74px);
  line-height: .9;
  color: var(--navy);
  letter-spacing: 1px;
}

.price-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.plan-features {
  list-style: none;
  margin: 0 0 30px;
  flex: 1;
}

.plan-features li {
  position: relative;
  padding: 9px 0 9px 28px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text);
  border-bottom: 1px solid rgba(183,138,42,.14);
}

.plan-features li:last-child { border-bottom: none; }

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 14px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.plan-cta { width: 100%; margin-top: auto; }

/* Featured (bundle) card */
.price-card.featured {
  background: var(--navy);
  color: white;
  border-color: var(--gold);
  box-shadow: 0 30px 80px rgba(7,20,34,.28);
}

.price-card.featured::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -150px;
  width: 320px;
  height: 460px;
  border: 3px solid rgba(215,177,91,.35);
  border-radius: 50%;
  transform: rotate(28deg);
  pointer-events: none;
}

.price-card.featured .plan-name { color: white; position: relative; z-index: 2; }
.price-card.featured .plan-desc { color: #e8edf3; position: relative; z-index: 2; }
.price-card.featured .plan-tag { color: var(--gold-light); }
.price-card.featured .price-block { border-color: rgba(215,177,91,.3); position: relative; z-index: 2; }
.price-card.featured .price-old { color: rgba(255,255,255,.6); }
.price-card.featured .price-amount { color: white; }
.price-card.featured .price-currency { color: var(--gold-light); }
.price-card.featured .price-note { color: rgba(255,255,255,.55); }
.price-card.featured .plan-features { position: relative; z-index: 2; }
.price-card.featured .plan-features li { color: #f1f4f8; border-bottom-color: rgba(255,255,255,.1); }
.price-card.featured .plan-cta { position: relative; z-index: 2; }

.plan-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  background: var(--gold);
  color: white;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(183,138,42,.4);
}

/* ── Installments ── */
.installments-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(183,138,42,.22), transparent 40%),
    var(--navy);
  color: white;
  border-top: 6px solid var(--gold);
  border-bottom: 6px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.installments-section::before {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 520px;
  height: 760px;
  border: 3px solid rgba(215,177,91,.22);
  border-radius: 50%;
  transform: rotate(28deg);
  pointer-events: none;
}

.installments-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.installments-section .eyebrow {
  color: var(--gold-light);
  border-left-color: var(--gold-light);
}

.installments-section h2 {
  color: white;
  font-size: clamp(48px, 6.5vw, 96px);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.installments-section h2 .gold { color: var(--gold-light); }

.installments-lead {
  color: #e8edf3;
  font-weight: 600;
  font-size: clamp(17px, 1.8vw, 21px);
  max-width: 680px;
  margin: 0 auto 46px;
}

.installments-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  margin-bottom: 36px;
}

.installment-step {
  flex: 1;
  max-width: 360px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(215,177,91,.4);
  border-radius: 22px;
  padding: 34px 28px;
  backdrop-filter: blur(4px);
}

.installment-step .step-percent {
  display: block;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 72px;
  line-height: .9;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.installment-step h3 {
  color: white;
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.installment-step p {
  color: #e8edf3;
  font-weight: 600;
  font-size: 15px;
}

.installment-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(215,177,91,.6), transparent);
  align-self: stretch;
}

.installments-terms {
  color: rgba(255,255,255,.6);
  font-weight: 600;
  font-size: 13px;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Premium Polish ── */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--gold); color: #fff; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Subtle gold finish on the top bar and footer for a richer, on-brand palette */
.top-bar { border-bottom: 1px solid rgba(215,177,91,.28); }
footer { border-top: 4px solid var(--gold); }

/* Consistent gold accent beneath section headings */
.section-title h2 { position: relative; }

.section-title h2::after {
  content: "";
  display: block;
  width: 68px;
  height: 4px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
}

.section-title-left h2::after { margin-left: 0; margin-right: auto; }

/* Warmer depth and a gold edge on cards as they lift */
.card,
.industry-card {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.card:hover,
.industry-card:hover {
  border-color: var(--gold);
  box-shadow: 0 28px 64px rgba(7,20,34,.13);
}

/* Slightly more tactile buttons */
.btn { box-shadow: 0 6px 18px rgba(7,20,34,.06); }
.btn-solid { box-shadow: 0 16px 40px rgba(183,138,42,.28); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card .plan-desc { min-height: 0; }
}

@media (max-width: 980px) {
  nav {
    height: auto;
    padding: 14px 0 12px;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .brand img { height: 48px; }

  .nav-cta {
    padding: 10px 16px;
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .menu-toggle { display: flex; }

  .nav-links {
    display: none;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    background: var(--soft);
    border-radius: 16px;
    border: 1px solid var(--line);
    padding: 8px 0;
    margin-top: 8px;
  }

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

  .nav-links a {
    padding: 12px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .nav-links a:last-child { border-bottom: none; }

  .nav-links a::after { display: none; }

  .hero { min-height: auto; }
  .hero::before { opacity: .18; width: 100%; clip-path: none; }
  .hero-inner { padding: 54px 0 120px; }
  .hero-logo { width: 240px; }

  .problems,
  .cards,
  .cards-3,
  .split,
  .split-reverse,
  .contact-grid,
  .mini-grid,
  .process-grid,
  .vision-pillars,
  .industry-grid,
  .industry-split,
  .founder-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .problem {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 22px 12px;
  }

  .problem:last-child { border-bottom: none; }
  .problem-strip { margin-top: -74px; }

  .industry-img { height: 280px; }
  .founder-photo img { height: 400px; }
  .form-row { grid-template-columns: 1fr; }

  .installments-steps { flex-direction: column; align-items: center; gap: 18px; }
  .installment-step { max-width: 100%; width: 100%; }
  .installment-divider { width: 60%; height: 1px; background: linear-gradient(90deg, transparent, rgba(215,177,91,.6), transparent); }
}

@media (max-width: 560px) {
  .hero-logo { width: 210px; }
  .hero-actions .btn { width: 100%; }
  .problem-card { padding: 24px 18px; }
  section { padding: 70px 0; }
  .top-bar { font-size: 11px; letter-spacing: 1px; }
  .top-row { justify-content: center; text-align: center; }
  .contact-info-panel,
  .contact-form-panel { padding: 28px 20px; }
  .nav-cta {
    padding: 9px 12px;
    font-size: 11px;
    letter-spacing: 1px;
  }
  .brand img { height: 42px; }
  .page-hero { padding: 70px 0 60px; min-height: auto; }
  .feature-box { padding: 30px 24px; }
  .industry-card-img { height: 160px; }
  .founder-grid { gap: 30px; }
}

/* ── Responsive Polish ── */
@media (max-width: 980px) {
  .section-title { margin-bottom: 38px; }
  .section-title h2::after { margin-top: 16px; }
  .hero-actions { gap: 12px; }
  .cards { gap: 16px; }
  .industry-grid { gap: 18px; }
}

@media (max-width: 560px) {
  .section-title h2::after { width: 54px; height: 3px; margin-top: 14px; }
  .cta-band { padding: 60px 0; }
  .footer-inner { gap: 28px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ──────────────────────────────────────────────
   Premium Motion & Conversion Layer
   (additive — keeps existing branding/palette)
   ────────────────────────────────────────────── */

/* Scroll-reveal fade-up (applied by script.js) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,.7,.2,1), transform .7s cubic-bezier(.22,.7,.2,1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Animated hero trust stats */
.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-stat { display: flex; flex-direction: column; }

.hero-stat-num {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: 1px;
}

.hero-stat-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin-top: 5px;
}

.hero-stat + .hero-stat {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}

/* Button sheen micro-interaction */
.btn-solid { position: relative; overflow: hidden; }

.btn-solid::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
  pointer-events: none;
}

.btn-solid:hover::after { left: 140%; }

/* Floating conversion buttons */
.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}

.floating-cta.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.fab-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  box-shadow: 0 16px 38px rgba(183,138,42,.4);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.fab-book:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.fab-whatsapp {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  border: 2px solid var(--gold);
  box-shadow: 0 16px 38px rgba(7,20,34,.32);
  transition: transform .2s ease;
}

.fab-whatsapp:hover { transform: translateY(-3px) scale(1.05); }
.fab-whatsapp svg { width: 28px; height: 28px; position: relative; z-index: 2; }

.fab-whatsapp::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: fabPulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(1.55); opacity: 0; }
}

@media (max-width: 560px) {
  .hero-stat + .hero-stat { padding-left: 22px; }
  .hero-stats { gap: 22px; }
  .floating-cta { right: 16px; bottom: 16px; gap: 10px; }
  .fab-book { padding: 11px 16px; font-size: 11px; letter-spacing: 1.2px; }
  .fab-whatsapp { width: 52px; height: 52px; }
  .fab-whatsapp svg { width: 25px; height: 25px; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .fab-whatsapp::after { animation: none; }
  .btn-solid::after { display: none; }
}
