/* ============================================
   PLATINUM RESOURCES — Master Stylesheet
   Aesthetic: Premium Financial Authority
   Palette: Deep Navy + Silver/Platinum + Blue
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── CSS Variables ── */
:root {
  --navy-deepest: #060D18;
  --navy-deep: #0B1829;
  --navy: #0F1F36;
  --navy-mid: #162B4D;
  --navy-light: #1C3461;
  --navy-lighter: #2A4A80;
  --gold: #5B9BD5;
  --gold-light: #7BB3E8;
  --gold-pale: #A8D0F5;
  --gold-dark: #3A7BBF;
  --white: #F4F6F9;
  --white-pure: #FFFFFF;
  --gray-light: #C8CED8;
  --gray: #8D95A7;
  --gray-dark: #5C6478;
  --text-primary: #E8ECF2;
  --text-secondary: #A4ADBE;
  --text-dark: #1A1A1A;
  --success: #4ADE80;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--navy-deepest);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 68ch;
}

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

.text-white {
  color: var(--white);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section--dark {
  background: var(--navy-deep);
}

.section--darker {
  background: var(--navy-deepest);
}

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

.section--gradient {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-deepest) 100%);
}

/* ── Grain Overlay (subtle texture) ── */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ── Header / Navigation ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.header--scrolled {
  background: rgba(6, 13, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(91, 155, 213, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  transition: padding 0.4s ease;
}

.header--scrolled .header__inner {
  padding: 14px 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header__logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #C0C8D4, #8A95A8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--navy-deepest);
  flex-shrink: 0;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.header__logo-text span {
  color: var(--gold);
}

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

.nav__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out-expo);
}

.nav__link:hover,
.nav__link--active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--white-pure);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav__cta:hover {
  background: var(--gold-light);
  color: var(--white-pure);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(91, 155, 213, 0.3);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

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

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-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;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white-pure);
  box-shadow: 0 4px 24px rgba(91, 155, 213, 0.25);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(91, 155, 213, 0.4);
  color: var(--white-pure);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

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

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

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn--large {
  padding: 20px 48px;
  font-size: 1rem;
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(91, 155, 213, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(36, 59, 106, 0.3) 0%, transparent 70%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-deepest) 100%);
}

.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 155, 213, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(-40px, 30px) scale(1.15); opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(91, 155, 213, 0.1);
  border: 1px solid rgba(91, 155, 213, 0.25);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

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

.hero__phone a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

/* ── Trust Strip ── */
.trust-strip {
  padding: 24px 0;
  background: rgba(91, 155, 213, 0.04);
  border-top: 1px solid rgba(91, 155, 213, 0.1);
  border-bottom: 1px solid rgba(91, 155, 213, 0.1);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.trust-strip__icon {
  width: 40px;
  height: 40px;
  background: rgba(91, 155, 213, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-strip__number {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding: 0 20px;
}

.section-header__label::before,
.section-header__label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.section-header__label::before {
  right: 100%;
}

.section-header__label::after {
  left: 100%;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ── Problems Grid ── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.problem-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.problem-card:hover {
  background: rgba(91, 155, 213, 0.04);
  border-color: rgba(91, 155, 213, 0.15);
  transform: translateY(-4px);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(91, 155, 213, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.problem-card h4 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.problem-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray);
}

/* ── Case Studies / Results ── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.result-card {
  background: linear-gradient(145deg, rgba(22, 37, 68, 0.8), rgba(15, 29, 50, 0.9));
  border: 1px solid rgba(91, 155, 213, 0.12);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.result-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(91, 155, 213, 0.08) 0%, transparent 70%);
}

.result-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91, 155, 213, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.result-card__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.result-card__role {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.result-card__location {
  font-size: 0.85rem;
  color: var(--gray);
}

.result-card__amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.result-card__amount small {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  color: var(--gray);
  font-family: var(--font-body);
  margin-top: 4px;
}

.result-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.result-card__stat-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.result-card__stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.result-card__desc {
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Video Section ── */
.video-section {
  text-align: center;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(91, 155, 213, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Guarantee Section ── */
.guarantee {
  text-align: center;
}

.guarantee__box {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 48px;
  background: linear-gradient(145deg, rgba(91, 155, 213, 0.06), rgba(91, 155, 213, 0.02));
  border: 2px solid rgba(91, 155, 213, 0.2);
  border-radius: 20px;
  position: relative;
}

.guarantee__box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(91, 155, 213, 0.3), transparent, rgba(91, 155, 213, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.guarantee__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 36px;
  text-align: left;
}

.guarantee__item {
  display: flex;
  gap: 16px;
  align-items: start;
}

.guarantee__item-num {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--white-pure);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.guarantee__item h4 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 1rem;
}

.guarantee__item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray);
}

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(91, 155, 213, 0.08) 0%, transparent 70%),
    var(--navy-deep);
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  margin: 0 auto 40px;
  font-size: 1.15rem;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--navy-deepest);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 0.9rem;
  margin-top: 16px;
  color: var(--gray);
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold) !important;
  font-size: 0.95rem !important;
  margin-top: 8px !important;
}

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--gray);
  font-size: 0.9rem;
}

.footer__contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--gray-dark);
}

.footer__states {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

/* ── Testimonial Cards ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
}

.testimonial-card:hover {
  border-color: rgba(91, 155, 213, 0.2);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -10px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white-pure);
  font-size: 1.1rem;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-card__detail {
  font-size: 0.8rem;
  color: var(--gray);
}

.testimonial-card__saved {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 4px;
}

/* ── Steps / Process ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(91, 155, 213, 0.3), var(--gold));
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 88px;
  height: 88px;
  background: var(--navy);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.step:hover .step__number {
  background: var(--gold);
  color: var(--white-pure);
  box-shadow: 0 0 40px rgba(91, 155, 213, 0.3);
}

.step h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.step p {
  font-size: 0.95rem;
  margin: 0 auto;
  max-width: 300px;
}

/* ── FAQ Accordion ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s ease;
}

.faq-item__question:hover {
  color: var(--gold);
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: var(--gold);
}

.faq-item.active .faq-item__icon {
  background: var(--gold);
  color: var(--navy-deepest);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo);
}

.faq-item__answer-inner {
  padding-bottom: 28px;
}

.faq-item__answer p {
  font-size: 0.98rem;
  line-height: 1.8;
}

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(91, 155, 213, 0.1);
}

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

.contact-info-block {
  margin-bottom: 36px;
}

.contact-info-block h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-info-block p {
  font-size: 0.95rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: rgba(91, 155, 213, 0.1);
  border: 1px solid rgba(91, 155, 213, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-detail__text strong {
  color: var(--white);
  display: block;
  font-size: 1rem;
}

/* ── About Page ── */
.about-hero {
  padding: 160px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 40% at 50% 30%, rgba(91, 155, 213, 0.05) 0%, transparent 70%),
    var(--navy-deep);
}

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

.about-content--reverse {
  direction: rtl;
}

.about-content--reverse > * {
  direction: ltr;
}

.about-image-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy));
  border-radius: 16px;
  border: 1px solid rgba(91, 155, 213, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(91, 155, 213, 0.2));
}

.timeline__item {
  position: relative;
  margin-bottom: 36px;
  padding-left: 24px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--navy-deep);
}

.timeline__year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.timeline__item h4 {
  color: var(--white);
  margin-bottom: 4px;
}

.timeline__item p {
  font-size: 0.9rem;
}

/* ── States Served ── */
.states-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.state-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: rgba(91, 155, 213, 0.06);
  border: 1px solid rgba(91, 155, 213, 0.15);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
}

.state-badge:hover {
  background: rgba(91, 155, 213, 0.12);
  border-color: rgba(91, 155, 213, 0.3);
  transform: translateY(-2px);
}

/* ── Inner Page Hero ── */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 40% at 50% 30%, rgba(91, 155, 213, 0.05) 0%, transparent 70%),
    var(--navy-deep);
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  margin: 0 auto;
  font-size: 1.15rem;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ── Decorative Elements ── */
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 24px;
}

.gold-line--center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Responsive ── */
@media (max-width: 968px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    transition: right 0.4s var(--ease-out-expo);
    border-left: 1px solid rgba(91, 155, 213, 0.1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  }

  .nav.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content--reverse {
    direction: ltr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
  }

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

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

  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-strip__inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .trust-strip__item {
    justify-content: center;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-section__actions {
    flex-direction: column;
  }

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

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

/* ── Utility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mb-0 { margin-bottom: 0 !important; }
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }
