:root {
  --navy: #0D1B2A;
  --navy2: #162436;
  --red: #E8142A;
  --red-dim: #b50e20;
  --white: #ffffff;
  --off: #F7F8FA;
  --gray: #6B7685;
  --border: #E2E7EE;
  --text: #1C2B3A;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── HEADER / NAV ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: 0.3s ease;
}

.logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--white);
  letter-spacing: -0.5px;
  cursor: pointer;
}

.logo span {
  color: var(--red);
}

.nav-links-wrapper {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-header-mobile,
.nav-footer-mobile,
.close-btn {
  display: none;
}

.nav-links-wrapper a,
.nav-list a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links-wrapper a:hover,
.nav-list a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--red-dim) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-logo {
  display: none;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 48px 60px;
  position: relative;
  overflow: hidden;
}

/* Grid texture */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Red corner accent */
#hero::after {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.06;
  filter: blur(60px);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-headline em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--red-dim);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.hero-content-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-text-content {
  flex: 1;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  object-position: left top;
}

/* Stats strip */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s forwards;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.stat-item {
  flex: 1;
  padding: 0 20px;
  text-align: center;
}

.stat-item+.stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-num span {
  color: var(--red);
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ── SECTION GENERIC ── */
section {
  padding: 100px 48px;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 20px;
  color: var(--gray);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
}

.section-header {
  margin-bottom: 60px;
}

/* ── WHAT WE DO / PROMISE ── */
#promise {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.promise-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.promise-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
}

.promise-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.promise-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.promise-right {
  background: var(--navy);
  border-radius: 16px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.promise-right::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.07;
  filter: blur(40px);
}

.guarantee-tag {
  display: inline-block;
  background: rgba(232, 20, 42, 0.15);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(232, 20, 42, 0.25);
  margin-bottom: 24px;
}

.promise-right h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.promise-right p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 28px;
}

.metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px 18px;
}

.metric-box .num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-box .num span {
  color: var(--red);
}

.metric-box .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ── PROCESS ── */
#process {
  background: var(--white);
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

/* Connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  z-index: 0;
}

.step-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.step-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(232, 20, 42, 0.08);
  transform: translateY(-4px);
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
}

.step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(232, 20, 42, 0.3);
}

.step-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-card p {
  font-size: 12.5px;
  color: var(--gray);
  line-height: 1.65;
}

/* ── CASE STUDIES ── */
#cases {
  background: var(--off);
}

.cases-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.case-card:hover {
  box-shadow: 0 12px 40px rgba(13, 27, 42, 0.1);
  transform: translateY(-4px);
}

.case-header {
  background: var(--navy);
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}

.case-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.08;
}

.case-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(232, 20, 42, 0.12);
  border: 1px solid rgba(232, 20, 42, 0.2);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.case-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 4px;
}

.case-header .company {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.case-result {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.case-amount {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--red);
  line-height: 1;
}

.case-meta {
  display: flex;
  flex-direction: column;
}

.case-meta .metric {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.case-meta .timeframe {
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}

.case-body {
  padding: 20px 28px 26px;
}

.case-body p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.7;
}

/* ── TESTIMONIALS (VIDEO) ── */
#testimonials {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.video-testimonial-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.video-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 27, 42, 0.08);
  border-color: rgba(232, 20, 42, 0.2);
}

.video-wrapper {
  position: relative;
  aspect-ratio: 9 / 16;
  /* Mobile vertical video style, very premium for LinkedIn */
  background: #000;
  overflow: hidden;
}

.testimonial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 2;
}

.video-overlay:hover {
  background: rgba(13, 27, 42, 0.2);
}

.play-btn {
  width: 64px;
  height: 64px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(232, 20, 42, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 2px;
}

.video-overlay:hover .play-btn {
  transform: scale(1.1);
}

.video-info {
  padding: 24px;
}

.video-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.video-info p {
  font-size: 13px;
  color: var(--gray);
}

/* Playing State */
.video-wrapper.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.video-wrapper.playing .testimonial-video {
  opacity: 1;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

#invest {
  background: var(--white);
}

.invest-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.pricing-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.06;
  filter: blur(50px);
}

.pricing-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pricing-row:last-of-type {
  border-bottom: none;
}

.pricing-row .name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-row .val {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
}

.pricing-total {
  margin-top: 24px;
  background: rgba(232, 20, 42, 0.1);
  border: 1px solid rgba(232, 20, 42, 0.2);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-total .label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-total .total-val {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--red);
}

.invest-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.invest-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.invest-box h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.invest-box h4 .icon {
  width: 30px;
  height: 30px;
  background: var(--navy);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--red);
}

.invest-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.invest-box ul li {
  font-size: 13.5px;
  color: var(--gray);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.invest-box ul li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.guarantee-box {
  background: var(--navy);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.guarantee-icon {
  color: var(--red);
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(232, 20, 42, 0.15);
  border: 1px solid rgba(232, 20, 42, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.guarantee-box h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.guarantee-box p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* ── CTA ── */
#cta {
  background: var(--navy);
  text-align: center;
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 20, 42, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

#cta .section-title {
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 16px;
}

#cta .section-sub {
  color: rgba(255, 255, 255, 0.45);
  margin: 0 auto 44px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.contact-strip {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: center;
  gap: 48px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.contact-item strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.contact-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
  background: #080f18;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

footer .logo {
  font-size: 18px;
}

footer p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.15);
  text-align: right;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Stagger children */
.reveal-group>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-group.visible>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.reveal-group.visible>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

.reveal-group.visible>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}

.reveal-group.visible>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}

.reveal-group.visible>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  header {
    padding: 0 24px;
    height: 64px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #08111a;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1200;
    padding: 0;
  }

  .nav-links-wrapper.active {
    right: 0;
  }

  .nav-header-mobile {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .close-btn {
    display: block;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    line-height: 1;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px 16px;
    gap: 10px;
    align-items: flex-start;
  }

  .nav-list li {
    width: 100%;
    list-style: none;
  }

  .nav-list li a {
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    transition: 0.3s;
    text-align: left;
  }

  /* Active Link Styling (Red like the theme) */
  .nav-list li a.active {
    background: var(--red);
    color: white;
    font-weight: 600;
  }

  .nav-footer-mobile {
    display: flex;
    width: 100%;
    padding: 24px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #0a1622;
    padding-bottom: 40px;
  }

  .nav-cta-mobile {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: var(--red);
    color: white !important;
    padding: 18px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(232, 20, 42, 0.2);
    transition: 0.3s;
  }

  .nav-cta-mobile:active {
    background: var(--red-dim);
    transform: scale(0.98);
  }

  .nav-list li.desktop-only {
    display: none;
  }

  section {
    padding: 72px 24px;
  }

  #hero {
    padding: 100px 24px 64px;
  }

  .hero-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .hero-image-wrapper {
    justify-content: center;
    width: 100%;
  }

  .promise-grid,
  .invest-inner {
    grid-template-columns: 1fr;
  }

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

  .steps-grid::before {
    display: none;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .stat-item+.stat-item {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
  }

  .contact-strip {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 40px 24px;
  }

  .footer-note {
    text-align: center;
  }
}

/* -- MODAL -- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--white);
  width: 90%;
  max-width: 600px;
  border-radius: 24px;
  padding: 48px;
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.modal-close {
  background: var(--off);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--red);
  color: var(--white);
  transform: rotate(90deg);
}

/* WP Forms Styling for Modal */
.form-container {
  width: 100%;
}

/* Basic WPForms-like layout reset for demo/modal */
.wpforms-container {
  margin: 0 !important;
}

.wpforms-field {
  margin-bottom: 20px !important;
}

.wpforms-field-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  margin-bottom: 8px !important;
  display: block !important;
}

.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  font-family: inherit !important;
  font-size: 14px !important;
  background: var(--off) !important;
  transition: all 0.2s !important;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus {
  border-color: var(--red) !important;
  background: var(--white) !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(232, 20, 42, 0.1) !important;
}

.wpforms-submit-container button {
  background: var(--red) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 14px 32px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  width: 100% !important;
}

.wpforms-submit-container button:hover {
  background: var(--red-dim) !important;
  transform: translateY(-1px) !important;
}

@media (max-width: 600px) {
  .modal-container {
    padding: 32px 24px;
    width: 95%;
  }
}