
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #BF262A;
    --navy-mid: #3E3E3E;
    --navy-light: #3E3E3E;
    --gold: #030303;
    --gold-light: #030303;
    --gold-pale: #f5e9c0;
    --cream: #E8EDF2;
    --white: #ffffff;
    --text: #1a1a2e;
    --muted: #5a6480;
    --border: rgba(201,168,76,0.2);
    --shadow: 0 20px 60px rgba(10,22,40,0.12);
  }

  html { scroll-behavior: smooth; }

  body {
    
    background: var(--cream);
    overflow-x: hidden;
  }

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: var(--gold);
    color: rgba(255,255,255,0.75);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 10px 20px;
    font-weight: 500;
  }
  .trust-strip span { color: var(--navy); font-weight: 600; }

  

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 90px 40px 80px;
    text-align: center;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201,168,76,0.12) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 80% 80%, rgba(191, 38, 42, .8) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--gold-light);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 28px;
    font-weight: 600;
    position: relative;
  }
  .hero h1 {
    
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    max-width: 860px;
    margin: 0 auto 24px;
    position: relative;
  }
  .hero h1 span {
    
    color: var(--gold-light);
  }
  .hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 580px;
    margin: 0 auto 44px;
    line-height: 1.7;
    position: relative;
    font-weight: 300;
  }

  /* Trust points row */
  .trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
    position: relative;
  }
  .trust-point {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 8px 16px;
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
  }
  .trust-point svg { color: #faf7f0; flex-shrink: 0; }

  /* CTA Row */
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    position: relative;
  }
  .btn-primary {
    background: var(--gold);
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px);  }
  .btn-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-outline:hover { border-color: var(--gold); background: var(--gold); color: #fff !important; }
  
  /* ── SECTION COMMON ── */
  section { padding: 80px 40px; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 12px;
  }
  .form-section .section-inner{
    padding: 60px 40px;
    background-color: #fff;
  }
  h2 {
    
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 18px;
  }
  .lead {
    font-size: 1rem;
    color: var(--gold);
    line-height: 1.75;
    max-width: 640px;
    font-weight: 300;
  }

  /* ── VIDEO SECTION ── */
  .video-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .video-section .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .video-placeholder {
    background: var(--navy);
    border-radius: 8px;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
  }
  
  

  /* ── DECISION GUIDE / CARDS ── */
  .decision-section { background: var(--cream); }
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 40px;
  }
  .service-card {
    background: var(--white);
    border: 1px solid rgba(10,22,40,0.1);
    border-radius: 8px;
    padding: 24px;
    cursor: pointer;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.25s;
    transform-origin: bottom;
  }
  .service-card:hover, .service-card.open {
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 8px 30px rgba(10,22,40,0.1);
    transform: translateY(-2px);
  }
  .service-card:hover::before, .service-card.open::before { transform: scaleY(1); }
  .card-icon {
    width: 40px; height: 40px;
    background: rgba(201,168,76,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    font-size: 1.2rem;
  }
  .card-title {
    
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .card-chevron {
    font-size: 0.7rem;
    color: var(--gold);
    transition: transform 0.25s;
    flex-shrink: 0;
  }
  .service-card.open .card-chevron { transform: rotate(180deg); }
  .card-synopsis {
    display: none;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .service-card.open .card-synopsis { display: block; }
  .card-cta {
    display: inline-block;
    margin-top: 14px;
    background: var(--navy);
    color: var(--white);
    padding: 9px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background 0.2s;
  }
  .content-card .card-cta{
    background: #030303;
  }
  .card-cta:hover { background: var(--navy-light); }

  /* ── INTAKE FORM ── */
  .form-section { background:#E2E2E2; }
  .form-section h2 { color: var(--navy); }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
  }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group.full { grid-column: 1 / -1; }
  label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
  }
  input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    
    border: 1px solid #3E3E3E;
    border-radius: 4px;
    padding: 12px 14px;
    color: var(--gold);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  input:focus, select:focus, textarea:focus {
    border-color: var(--navy);
    
  }
  select option { background: var(--navy); color: var(--white); }
  .checkbox-group { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
  .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gold);
    cursor: pointer;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: none;
  }
  input[type="checkbox"] {
    width: 16px; height: 16px;
    accent-color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .sms-compliance {
    grid-column: 1 / -1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 20px;
    font-size: 0.78rem;
    color: var(--gold);
    line-height: 1.6;
  }
  .sms-compliance .checkbox-group { margin-top: 14px; }
  .sms-compliance .checkbox-label { color: var(--gold); font-size: 0.8rem; }
  .btn-submit {
    grid-column: 1 / -1;
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 15px 32px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* Shipping address conditional */
  #shipping-section,#shipping-section-2 { display: none; }

  /* ── CONTENT SECTIONS ── */
  .content-alt { background: var(--white); }
  .content-section .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .content-section.reverse .section-inner { direction: rtl; }
  .content-section.reverse .section-inner > * { direction: ltr; }
  .content-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
  }
  .content-card.dark {
    background: var(--navy);
    border-color: rgba(201,168,76,0.2);
  }
  .content-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }
  .content-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
  }
  .content-card.dark ul li { color: rgba(255,255,255,0.8); }
  .content-card ul li::before {
    content: '→';
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 700;
  }
  .content-card.dark ul li::before{
    color: rgba(255,255,255,0.8);
  }
  .content-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 18px;
    border-bottom: 1px solid rgba(201,168,76,0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s;
  }
  .content-link:hover { border-color: var(--gold); }

  /* ── B2B SECTION ── */
  .b2b-section { background: var(--cream); }
  .b2b-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 32px;
  }
  .b2b-card {
    background: var(--white);
    border: 1px solid rgba(10,22,40,0.08);
    border-radius: 8px;
    padding: 22px 20px;
    text-align: center;
  }
  .b2b-card .icon { font-size: 1.8rem; margin-bottom: 10px; }
  .b2b-card p { font-size: 0.85rem; color: var(--text); font-weight: 500; }

  /* ── REASSURANCE SECTION ── */
  .reassurance {
    background: var(--navy);
    text-align: center;
    padding: 80px 40px;
  }
  .reassurance p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 300;
    
    font-style: italic;
  }

  /* ── FINAL CTA ── */
  .final-cta { background: var(--cream); text-align: center; }
  .final-cta-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
  }
  .fca-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
  }
  .fca-card .icon { font-size: 1.6rem; margin-bottom: 12px; }
  .fca-card p { font-size: 0.85rem; color: var(--gold); line-height: 1.6; margin-bottom: 16px; }
  .final-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }

  

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero > * { animation: fadeUp 0.7s ease both; }
  .hero .hero-eyebrow { animation-delay: 0.1s; }
  .hero h1 { animation-delay: 0.2s; }
  .hero .hero-sub { animation-delay: 0.3s; }
  .hero .trust-points { animation-delay: 0.4s; }
  .hero .hero-ctas { animation-delay: 0.5s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    section { padding: 60px 20px; }
    nav { padding: 16px 20px; }
    .hero { padding: 60px 20px; }
    .video-section .section-inner,
    .content-section .section-inner {
      grid-template-columns: 1fr;
    }
    .form-grid { grid-template-columns: 1fr; }
    .final-cta-cards { grid-template-columns: 1fr; }
    .form-group.full, .btn-submit, .sms-compliance { grid-column: 1; }
  }

  /* video bg start */
  

  .video-bg{
    position: relative;
    overflow: hidden;
    
}
.video-bg .video-box{
  position: relative;
  width: 100vw;
  min-height: 400px;
  height: 80vh;
  overflow: hidden;
}
.video-box video {
  position: absolute;
  left: 50%;
  width: 100vw;
  height: 38.25vw; 
  min-height: 400px;
  min-width: 1244px; 
  top: 0;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  object-fit: cover;
}



/* Placeholder image */
.video-placeholder-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../images/0001.jpg') center center / cover no-repeat;
  z-index: 2;
  transition: opacity 0.6s ease;
}

/* Hide class */
.video-placeholder-2.hide {
  opacity: 0;
  visibility: hidden;
}


  /* video bg end */
