* { box-sizing: border-box; }
  body { font-family: 'DM Sans', sans-serif; }
  h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; }

  .gold-shimmer {
    background: linear-gradient(90deg, #bb8f37 0%, #e8c97a 30%, #d4a843 50%, #e8c97a 70%, #bb8f37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
  }

  .hero-bg {
    background: radial-gradient(ellipse at 30% 50%, rgba(187,143,55,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(26,61,96,0.4) 0%, transparent 50%),
                linear-gradient(160deg, #050f1a 0%, #081827 50%, #0d2238 100%);
  }

  .card-glass {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(187,143,55,0.2);
    transition: all 0.4s ease;
  }
  .card-glass:hover {
    background: rgba(187,143,55,0.06);
    border-color: rgba(187,143,55,0.5);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(187,143,55,0.1);
  }

  .testimonial-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(187,143,55,0.15);
    transition: all 0.4s ease;
  }
  .testimonial-card:hover {
    border-color: rgba(187,143,55,0.4);
    background: rgba(187,143,55,0.04);
    transform: translateY(-4px);
  }

  .btn-primary {
    background: linear-gradient(135deg, #bb8f37 0%, #d4a843 50%, #bb8f37 100%);
    background-size: 200% auto;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
  }
  .btn-primary:hover::before { left: 100%; }
  .btn-primary:hover {
    background-position: right center;
    box-shadow: 0 8px 30px rgba(187,143,55,0.4);
    transform: translateY(-2px);
  }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: #d4a843;
  }

  .divider-gold {
    height: 1px;
    background: linear-gradient(90deg, transparent, #bb8f37, transparent);
  }

  .section-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4a843;
  }

  .floating-badge {
    animation: float 6s ease-in-out infinite;
  }

  .nav-link {
    position: relative;
    padding-bottom: 2px;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: #d4a843;
    transition: width 0.3s ease;
  }
  .nav-link:hover::after { width: 100%; }
  .nav-link:hover { color: #d4a843; }

  .step-line {
    background: linear-gradient(180deg, #bb8f37 0%, transparent 100%);
    width: 1px;
    height: 80px;
  }

  .checkmark {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bb8f37, #e8c97a);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .noise-overlay {
    position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
    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");
  }

  .scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 768px) {
    .hero-title { font-size: 2.6rem !important; }
  }
  @media (max-width: 480px) {
    .hero-title { font-size: 2rem !important; }
  }

  :root {
    --gold: #bb8f37;
    --gold-light: #d4a843;
    --gold-bright: #e8c97a;
    --navy-deep: #050f1a;
    --navy-base: #081827;
    --navy-mid: #0d2238;
  }

  html { scroll-behavior: smooth; }

  .section-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: .5;
  }

  .gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(187,143,55,.5) 30%, rgba(212,168,67,.8) 50%, rgba(187,143,55,.5) 70%, transparent);
  }

  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
  }
  .reveal.up {
    opacity: 1;
    transform: translateY(0);
  }

  .page-hero {
    padding: 160px 0 90px;
    background:
      radial-gradient(ellipse 70% 50% at 20% 0%, rgba(187,143,55,.08) 0%, transparent 60%),
      radial-gradient(ellipse 50% 60% at 85% 100%, rgba(18,44,72,.35) 0%, transparent 55%),
      linear-gradient(160deg, #030c14 0%, #081827 60%, #0d2238 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(187,143,55,.05);
    pointer-events: none;
  }
  .page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #050f1a, transparent);
    pointer-events: none;
  }

  .services-breadcrumb {
    font-size: 11px;
    letter-spacing: .12em;
    color: #4b5563;
    text-transform: uppercase;
  }
  .services-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color .2s;
  }
  .services-breadcrumb a:hover { color: #d4a843; }
  .services-breadcrumb-current { color: #bb8f37; }

  .page-hero-title {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.08;
    max-width: 700px;
    margin: 0 auto 24px;
  }
  .page-hero-copy {
    font-size: 16px;
    color: #6b7280;
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.75;
  }

  .services-anchor {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #9ca3af;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    padding: 8px 20px;
    transition: all .25s;
  }
  .services-anchor:hover {
    border-color: rgba(187,143,55,.4);
    color: #d4a843;
  }

  .why-section {
    background:
      radial-gradient(ellipse 40% 60% at 90% 50%, rgba(187,143,55,.05) 0%, transparent 60%),
      #081827;
    padding: 100px 0;
  }
  .why-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,.045);
    transition: padding-left .3s ease;
  }
  .why-point:last-child { border-bottom: none; }
  .why-point:hover { padding-left: 8px; }
  .why-point:hover .why-dot {
    background: var(--gold-bright);
    box-shadow: 0 0 14px rgba(187,143,55,.5);
  }
  .why-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 7px;
    transition: all .3s;
  }
  .why-point p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #c9d0d9;
  }

  .services-h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .services-h2-sm { margin-bottom: 16px; }
  .services-subtitle {
    font-size: 15px;
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
  }
  .services-subtitle-narrow { max-width: 520px; line-height: 1.75; }
  .services-copy {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 36px;
  }
  .services-highlight { color: #d4a843; }
  .services-strong {
    color: #e2e8f0;
    font-weight: 600;
  }

  .experience-card {
    background: rgba(187,143,55,.06);
    border: 1px solid rgba(187,143,55,.18);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .experience-stat {
    text-align: center;
    flex-shrink: 0;
  }
  .experience-years {
    font-size: 3rem;
    font-weight: 700;
    color: #d4a843;
    line-height: 1;
  }
  .experience-label {
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-top: 4px;
  }
  .experience-divider {
    width: 1px;
    height: 56px;
    background: rgba(187,143,55,.2);
  }
  .experience-copy {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.65;
  }
  .delay-150 { transition-delay: .15s; }
  .delay-200 { transition-delay: .2s; }

  .services-section {
    padding: 100px 0;
    background: var(--navy-deep);
    position: relative;
  }
  .services-bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .025;
    background-image:
      repeating-linear-gradient(0deg,#bb8f37 0,#bb8f37 1px,transparent 1px,transparent 80px),
      repeating-linear-gradient(90deg,#bb8f37 0,#bb8f37 1px,transparent 1px,transparent 80px);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .service-card {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(187,143,55,.14);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity .4s;
  }
  .service-card:hover::before { opacity: 1; }
  .service-card:hover {
    background: rgba(187,143,55,.055);
    border-color: rgba(187,143,55,.4);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(187,143,55,.1);
  }
  .service-card:hover .service-icon-ring {
    border-color: rgba(187,143,55,.7);
    background: rgba(187,143,55,.12);
    box-shadow: 0 0 24px rgba(187,143,55,.2);
  }
  .service-icon-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid rgba(187,143,55,.25);
    background: rgba(187,143,55,.07);
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
  }
  .service-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    color: #f1f5f9;
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .service-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #94a3b8;
  }

  .services-note {
    font-size: 13px;
    color: #4b5563;
    max-width: 480px;
    margin: 0 auto 28px;
  }

  .stats-section {
    padding: 100px 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 0%, rgba(187,143,55,.07) 0%, transparent 60%),
      #081827;
  }
  .stats-panel {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(187,143,55,.15);
    border-radius: 20px;
    padding: 40px;
    transition: border-color .3s;
  }
  .stats-panel:hover { border-color: rgba(187,143,55,.35); }
  .stats-panel-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .stats-panel-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(187,143,55,.3), transparent);
  }
  .stat-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    transition: padding-left .25s;
  }
  .stat-row:last-child { border-bottom: none; }
  .stat-row:hover { padding-left: 6px; }
  .stat-percent {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold-light);
    min-width: 90px;
    line-height: 1;
  }
  .stat-percent-symbol {
    font-size: 1.4rem;
    color: #6b7280;
  }
  .stat-bar-wrap { flex: 1; }
  .stat-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 6px;
  }
  .stat-bar-bg {
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    overflow: hidden;
  }
  .stat-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    width: 0;
    transition: width 1.4s cubic-bezier(.22,1,.36,1);
  }
  .services-disclaimer {
    font-size: 11px;
    color: #374151;
  }

  .cta-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
  }
  .cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('6944102ca49c0a7a0f1ccd3e.jpg');
    background-size: cover;
    background-position: center;
    opacity: .12;
  }
  .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(5,15,26,.92) 0%, rgba(8,24,39,.88) 100%);
  }
  .cta-section .inner {
    position: relative;
    z-index: 1;
  }
  .cta-title {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .cta-copy {
    font-size: 15.5px;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto 44px;
    line-height: 1.75;
  }
  .cta-note {
    margin-top: 16px;
    font-size: 11.5px;
    color: #374151;
  }

  .btn-gold {
    background: linear-gradient(135deg, #bb8f37 0%, #d4a843 50%, #bb8f37 100%);
    background-size: 200% auto;
    color: #081827;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 14px 34px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
  }
  .btn-gold:hover {
    background-position: right center;
    box-shadow: 0 8px 30px rgba(187,143,55,.35);
    transform: translateY(-2px);
  }
  .btn-gold-lg {
    font-size: 13px;
    padding: 16px 40px;
  }

  @keyframes fadeUp {
    from { opacity:0; transform:translateY(30px); }
    to { opacity:1; transform:translateY(0); }
  }
  @keyframes float {
    0%,100% { transform:translateY(0); }
    50% { transform:translateY(-10px); }
  }

  .anim-1 { animation: fadeUp .8s ease forwards; }
  .anim-2 { animation: fadeUp .8s .15s ease both; }
  .anim-3 { animation: fadeUp .8s .3s ease both; }

  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
  }
  @media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr !important; }
    .stats-grid { grid-template-columns: 1fr !important; }
    .page-hero h1 { font-size: 2.6rem !important; }
  }

  .pricing-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
      radial-gradient(ellipse 65% 55% at 15% 40%, rgba(187,143,55,.09) 0%, transparent 60%),
      radial-gradient(ellipse 45% 50% at 90% 70%, rgba(18,44,72,.35) 0%, transparent 55%),
      linear-gradient(170deg, #030c14 0%, #081827 55%, #0d2238 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
  }
  .pricing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .025;
    background-image:
      repeating-linear-gradient(0deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 88px),
      repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 88px);
  }
  .pricing-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--navy-deep), transparent);
    pointer-events: none;
  }
  .pricing-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(70px);
  }
  .pricing-orb-right {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -150px;
    background: radial-gradient(circle,rgba(187,143,55,.08),transparent 70%);
  }
  .pricing-orb-left {
    width: 350px;
    height: 350px;
    bottom: 100px;
    left: -80px;
    background: radial-gradient(circle,rgba(18,44,72,.25),transparent 70%);
  }

  .pricing-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .pricing-eyebrow::before, .pricing-eyebrow::after {
    content:'';
    width:24px;
    height:1px;
    background:var(--gold);
    opacity:.5;
  }
  .pricing-eyebrow-center { justify-content: center; }

  .pricing-hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 24px;
  }
  .pricing-hero-copy {
    font-size: 15.5px;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 560px;
  }
  .anim-fade-1 { animation: fadeUp .8s ease both; }
  .anim-fade-2 { animation: fadeUp .8s .1s ease both; }
  .anim-fade-3 { animation: fadeUp .8s .2s ease both; }
  .anim-fade-4 { animation: fadeUp .8s .3s ease both; }
  .anim-fade-5 { animation: fadeUp .8s .4s ease both; }

  .check-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: #94a3b8;
    padding: 8px 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 999px;
    transition: all .25s;
  }
  .check-pill:hover {
    background: rgba(187,143,55,.08);
    border-color: rgba(187,143,55,.25);
    color: #e8c97a;
  }
  .check-pill svg {
    color: var(--gold);
    flex-shrink: 0;
  }

  .btn-outline {
    background: transparent;
    border: 1px solid rgba(187,143,55,.4);
    color: var(--gold-light);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
  }
  .btn-outline:hover {
    background: rgba(187,143,55,.08);
    border-color: rgba(187,143,55,.7);
    color: var(--gold-bright);
  }

  .price-card {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(187,143,55,.2);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .4s, box-shadow .4s;
  }
  .price-card:hover {
    border-color: rgba(187,143,55,.55);
    box-shadow: 0 0 60px rgba(187,143,55,.1), 0 30px 80px rgba(0,0,0,.4);
  }
  .price-card-topbar {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
  }
  .pricing-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .pricing-plan-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #f1f5f9;
    line-height: 1.1;
  }
  .pricing-badge {
    background: rgba(187,143,55,.12);
    border: 1px solid rgba(187,143,55,.3);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
  }
  .pricing-price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
    margin-bottom: 32px;
  }
  .pricing-price-box {
    background: rgba(187,143,55,.07);
    border: 1px solid rgba(187,143,55,.2);
    border-radius: 16px;
    padding: 22px 20px;
    text-align: center;
  }
  .pricing-price-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 8px;
  }
  .pricing-price-amount {
    font-size: 3.2rem;
    font-weight: 700;
    color: #d4a843;
    line-height: 1;
  }
  .pricing-price-note {
    font-size: 11px;
    color: #4b5563;
    margin-top: 4px;
  }

  .feature-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.045);
    transition: padding-left .25s;
  }
  .feature-row:last-child { border-bottom: none; }
  .feature-row:hover { padding-left: 6px; }
  .feature-row:hover .feat-icon { color: var(--gold-bright); }
  .feat-icon {
    color: var(--gold);
    flex-shrink: 0;
    transition: color .25s;
  }
  .feature-title {
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 2px;
  }
  .feature-copy {
    font-size: 12px;
    color: #6b7280;
  }

  .included-box {
    background: rgba(187,143,55,.05);
    border: 1px solid rgba(187,143,55,.15);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 24px;
  }
  .included-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .included-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .included-item {
    font-size: 12px;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .pricing-small-note {
    text-align: center;
    font-size: 11px;
    color: #374151;
    margin-top: 10px;
  }

  .pricing-section-navy {
    padding: 112px 0;
    background: var(--navy-deep);
  }
  .pricing-section-mid {
    padding: 112px 0;
    background: #081827;
  }
  .pricing-section-grad {
    padding: 112px 0;
    background: linear-gradient(180deg,var(--navy-deep) 0%,#081827 100%);
  }
  .pricing-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .pricing-subheading {
    font-size: 15px;
    color: #6b7280;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.8;
  }
  .pricing-subheading-sm {
    max-width: 480px;
  }
  .pricing-subheading-xs {
    max-width: 520px;
  }

  .pricing-compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    max-width: 860px;
    margin: 0 auto;
  }
  .compare-card {
    border-radius: 22px;
    padding: 36px 32px;
  }
  .compare-card-left {
    background: rgba(187,143,55,.06);
    border: 2px solid rgba(187,143,55,.35);
  }
  .compare-card-right {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.07);
    opacity: .75;
  }
  .compare-name {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .compare-name-left { color: var(--gold); }
  .compare-name-right { color: #4b5563; }
  .compare-price {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
  }
  .compare-price-left { color: #d4a843; }
  .compare-price-right { color: #6b7280; }
  .compare-note {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .compare-note-left { color: #6b7280; }
  .compare-note-right { color: #4b5563; }
  .compare-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .compare-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
  }
  .compare-item-left { color: #94a3b8; }
  .compare-item-right { color: #4b5563; }
  .compare-vs {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #4b5563;
    margin: 0 auto;
  }

  .pricing-services-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 28px;
  }
  .pricing-service-card {
    background: rgba(255,255,255,.022);
    border: 1px solid rgba(187,143,55,.15);
    border-radius: 22px;
    padding: 36px 30px;
    transition: all .4s;
    position: relative;
    overflow: hidden;
  }
  .pricing-service-card:hover {
    border-color: rgba(187,143,55,.45);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(187,143,55,.1);
  }
  .pricing-service-card-core {
    background: rgba(187,143,55,.055);
    border-color: rgba(187,143,55,.3);
  }
  .pricing-service-card-core:hover {
    border-color: rgba(187,143,55,.6);
    box-shadow: 0 20px 60px rgba(187,143,55,.15);
  }
  .pricing-service-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,transparent,#bb8f37,transparent);
  }
  .pricing-service-core-top {
    background: linear-gradient(90deg,transparent,#e8c97a,transparent);
  }
  .pricing-service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg,#bb8f37,#d4a843);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #050f1a;
  }
  .pricing-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(187,143,55,.09);
    border: 1px solid rgba(187,143,55,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }
  .pricing-service-icon-core {
    background: rgba(187,143,55,.15);
    border-color: rgba(187,143,55,.4);
  }
  .pricing-service-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .pricing-service-label-core { color: var(--gold-bright); }
  .pricing-service-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 14px;
  }
  .pricing-service-divider {
    height: 1px;
    background: linear-gradient(90deg,rgba(187,143,55,.3),transparent);
    margin-bottom: 16px;
  }
  .pricing-service-copy {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .pricing-service-copy-core { color: #94a3b8; }
  .pricing-service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .pricing-service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #94a3b8;
  }

  .pricing-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 24px;
  }
  .pricing-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
  }
  .pricing-testimonial-copy {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
  }
  .pricing-client {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .pricing-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg,#bb8f37,#e8c97a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #050f1a;
    flex-shrink: 0;
  }
  .pricing-client-name {
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
  }
  .pricing-client-score {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
  }
  .t-card-highlight { border-color: rgba(187,143,55,.3); }

  .pricing-faq-wrap {
    max-width: 768px;
    margin: 0 auto;
  }
  .faq-item { border-bottom: 1px solid rgba(255,255,255,.055); }
  .faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    cursor: pointer;
    text-align: left;
    transition: color .25s;
  }
  .faq-btn:hover { color: var(--gold-light); }
  .faq-chevron {
    flex-shrink: 0;
    transition: transform .35s;
    color: var(--gold);
  }
  .faq-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .45s ease, padding .35s;
    font-size: 14px;
    line-height: 1.8;
    color: #94a3b8;
  }
  .faq-item.open .faq-chevron { transform: rotate(180deg); }
  .faq-item.open .faq-body {
    max-height: 300px;
    padding-bottom: 18px;
  }

  .pricing-cta {
    position: relative;
    overflow: hidden;
    padding: 128px 0;
    background: linear-gradient(160deg,#030c14 0%,#081827 50%,#0d2238 100%);
  }
  .pricing-cta-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 50% at 50% 50%,rgba(187,143,55,.07) 0%,transparent 65%);
  }
  .pricing-cta-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .02;
    background-image:
      repeating-linear-gradient(0deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px),
      repeating-linear-gradient(90deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px);
  }
  .pricing-cta-title {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .pricing-cta-copy {
    font-size: 15.5px;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto 14px;
    line-height: 1.8;
  }
  .pricing-cta-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 44px;
  }
  .pricing-cta-stat {
    text-align: center;
  }
  .pricing-cta-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: #d4a843;
    line-height: 1;
  }
  .pricing-cta-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #4b5563;
    margin-top: 4px;
  }
  .pricing-cta-divider {
    width: 1px;
    background: rgba(187,143,55,.2);
  }
  .pricing-cta-note {
    font-size: 11.5px;
    color: #1f2937;
    margin-top: 16px;
  }

  #btt {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(187,143,55,.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #050f1a;
    opacity: 0;
    transform: translateY(12px);
    transition: all .3s;
  }
  #btt.show {
    opacity: 1;
    transform: translateY(0);
  }
  #btt:hover { box-shadow: 0 6px 22px rgba(187,143,55,.45); }

  #prog {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    height: 2px;
    background: linear-gradient(90deg,var(--gold),var(--gold-bright));
    width: 0;
    transition: width .1s;
  }

  @media (max-width: 1024px) {
    .pricing-services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .pricing-testimonials-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  }
  @media (max-width: 768px) {
    .pricing-hero-title { font-size: 2.6rem !important; }
    .pricing-price-amount { font-size: 2.8rem !important; }
    .pricing-compare-grid { grid-template-columns: 1fr; }
    .pricing-cta-divider { display: none; }
  }
  @media (max-width: 640px) {
    .pricing-services-grid { grid-template-columns: 1fr; }
    .pricing-testimonials-grid { grid-template-columns: 1fr; }
    .pricing-price-grid { grid-template-columns: 1fr; }
    .pricing-cta-title { font-size: 2.5rem; }
  }
  @media (max-width: 480px) {
    .pricing-hero-title { font-size: 2.1rem !important; }
  }

  .about-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background:
      radial-gradient(ellipse 60% 50% at 20% 40%, rgba(187,143,55,.09) 0%, transparent 60%),
      radial-gradient(ellipse 45% 55% at 88% 70%, rgba(18,44,72,.35) 0%, transparent 55%),
      linear-gradient(165deg, #030c14 0%, #081827 55%, #0d2238 100%);
    position: relative;
    overflow: hidden;
  }
  .about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .022;
    background-image:
      repeating-linear-gradient(0deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 88px),
      repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 1px, transparent 1px, transparent 88px);
  }
  .about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--navy-deep), transparent);
    pointer-events: none;
  }
  .about-orb-right {
    position: absolute;
    top: -80px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(187,143,55,.07),transparent 70%);
    filter: blur(60px);
    pointer-events: none;
  }
  .about-orb-left {
    position: absolute;
    bottom: 60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(18,44,72,.3),transparent 70%);
    filter: blur(80px);
    pointer-events: none;
  }
  .about-breadcrumb {
    font-size: 11px;
    letter-spacing: .12em;
    color: #4b5563;
    text-transform: uppercase;
    animation: fadeUp .7s ease both;
  }
  .about-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color .2s;
  }
  .about-breadcrumb a:hover { color: #d4a843; }
  .about-breadcrumb-current { color: #bb8f37; }

  .about-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .about-eyebrow::before, .about-eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: .5;
  }
  .about-eyebrow-center { justify-content: center; }

  .about-title {
    font-size: 4.4rem;
    font-weight: 700;
    line-height: 1.06;
    margin-bottom: 24px;
    animation: fadeUp .8s .12s ease both;
  }
  .about-copy {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 48px;
    animation: fadeUp .8s .22s ease both;
  }

  .about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 16px;
    animation: fadeUp .8s .32s ease both;
  }
  .about-stat-tile {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(187,143,55,.18);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    transition: all .4s;
  }
  .about-stat-tile:hover {
    border-color: rgba(187,143,55,.5);
    background: rgba(187,143,55,.06);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(187,143,55,.1);
  }
  .about-stat-value {
    font-size: 2.6rem;
    font-weight: 700;
    color: #d4a843;
    line-height: 1;
  }
  .about-stat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #4b5563;
    margin-top: 6px;
  }

  .about-main-section {
    padding: 100px 0;
    background: linear-gradient(180deg,var(--navy-deep) 0%,#081827 100%);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .about-image-panel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(187,143,55,.2);
    transition: border-color .4s;
    height: 560px;
  }
  .about-image-panel:hover { border-color: rgba(187,143,55,.5); }
  .about-image-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(187,143,55,.1) 0%, transparent 50%, rgba(5,15,26,.3) 100%);
    pointer-events: none;
  }
  .about-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .about-image-fallback {
    display: none;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,#0d2238,#081827);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
  }
  .about-image-fallback-label {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #4b5563;
  }
  .about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top,rgba(8,24,39,.6),transparent);
    z-index: 2;
    pointer-events: none;
  }
  .about-corner-tl {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 32px;
    height: 32px;
    border-top: 2px solid rgba(187,143,55,.6);
    border-left: 2px solid rgba(187,143,55,.6);
    z-index: 3;
    border-radius: 4px 0 0 0;
    pointer-events: none;
  }
  .about-corner-br {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-bottom: 2px solid rgba(187,143,55,.6);
    border-right: 2px solid rgba(187,143,55,.6);
    z-index: 3;
    border-radius: 0 0 4px 0;
    pointer-events: none;
  }

  .about-h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 28px;
  }
  .about-value-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,.045);
    transition: padding-left .3s;
  }
  .about-value-card:last-child { border-bottom: none; }
  .about-value-card:hover { padding-left: 8px; }
  .about-value-card:hover .about-vc-icon { color: var(--gold-bright); }
  .about-vc-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
    transition: color .25s;
  }
  .about-value-copy {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.8;
  }
  .about-strong {
    color: #e2e8f0;
    font-weight: 600;
  }
  .about-link-arrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6b7280;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .25s;
  }
  .about-link-arrow:hover { color: #d4a843; }

  .about-mission-card {
    background: rgba(187,143,55,.05);
    border: 1px solid rgba(187,143,55,.18);
    border-radius: 22px;
    padding: 52px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .about-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,transparent,#bb8f37,transparent);
  }
  .about-mission-quote {
    font-size: 2.2rem;
    font-weight: 600;
    color: #f1f5f9;
    line-height: 1.25;
    max-width: 700px;
    margin: 0 auto 24px;
    font-style: italic;
  }
  .about-mission-sign {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #bb8f37;
  }

  .about-industry-section {
    padding: 100px 0;
    background: #081827;
  }
  .about-industry-h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 24px;
  }
  .about-industry-copy {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.85;
    margin-bottom: 28px;
  }
  .about-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .about-bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #94a3b8;
  }
  .about-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }
  .about-highlight-card {
    background: rgba(187,143,55,.06);
    border: 1px solid rgba(187,143,55,.2);
    border-radius: 20px;
    padding: 32px 30px;
    position: relative;
    overflow: hidden;
  }
  .about-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,transparent,#bb8f37,transparent);
  }
  .about-highlight-value {
    font-size: 3.8rem;
    font-weight: 700;
    color: #d4a843;
    line-height: 1;
    margin-bottom: 6px;
  }
  .about-highlight-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #4b5563;
    margin-bottom: 14px;
  }
  .about-highlight-copy {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.75;
  }
  .about-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .about-mini-card {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(187,143,55,.12);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all .3s;
  }
  .about-mini-card:hover { border-color: rgba(187,143,55,.35); }
  .about-mini-value {
    font-size: 2.4rem;
    font-weight: 700;
    color: #d4a843;
    line-height: 1;
  }
  .about-mini-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #4b5563;
    margin-top: 6px;
  }

  .about-trust-section {
    padding: 100px 0;
    background: var(--navy-deep);
  }
  .about-trust-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 24px;
  }
  .about-trust-card {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(187,143,55,.13);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all .35s;
  }
  .about-trust-card:hover {
    border-color: rgba(187,143,55,.4);
    background: rgba(187,143,55,.05);
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(187,143,55,.09);
  }
  .about-trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(187,143,55,.1);
    border: 1px solid rgba(187,143,55,.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  .about-trust-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #f1f5f9;
    margin-bottom: 12px;
  }
  .about-trust-copy {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.75;
  }

  .about-cta {
    position: relative;
    padding: 130px 0;
    text-align: center;
    overflow: hidden;
  }
  .about-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('6929f6097f38c9f035f14877.jpg');
    background-size: cover;
    background-position: center;
    opacity: .12;
  }
  .about-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(5,15,26,.94) 0%, rgba(8,24,39,.9) 100%);
  }
  .about-cta .inner {
    position: relative;
    z-index: 1;
  }
  .about-cta-title {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .about-cta-copy {
    font-size: 15.5px;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.8;
  }
  .about-cta-note {
    margin-top: 18px;
    font-size: 11.5px;
    color: #1f2937;
  }

  .reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal-left.up {
    opacity: 1;
    transform: translateX(0);
  }
  .reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal-right.up {
    opacity: 1;
    transform: translateX(0);
  }

  @media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr !important; }
    .about-image-panel { max-height: 420px; }
    .about-trust-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  }
  @media (max-width: 768px) {
    .about-stats-grid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
    .about-title { font-size: 2.8rem !important; }
  }
  @media (max-width: 480px) {
    .about-title { font-size: 2.2rem !important; }
    .about-stats-grid { grid-template-columns: 1fr !important; }
    .about-trust-grid { grid-template-columns: 1fr !important; }
    .about-mini-grid { grid-template-columns: 1fr; }
  }

  .consult-hero {
    min-height: 68vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background:
      radial-gradient(ellipse 60% 55% at 15% 40%, rgba(187,143,55,.09) 0%, transparent 60%),
      radial-gradient(ellipse 45% 55% at 88% 65%, rgba(18,44,72,.35) 0%, transparent 55%),
      linear-gradient(165deg, #030c14 0%, #081827 55%, #0d2238 100%);
    position: relative;
    overflow: hidden;
  }
  .consult-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .022;
    background-image:
      repeating-linear-gradient(0deg, var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px),
      repeating-linear-gradient(90deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px);
  }
  .consult-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top,var(--navy-deep),transparent);
    pointer-events: none;
  }
  .consult-orb-right {
    position:absolute;
    top:-80px;
    right:-120px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(187,143,55,.07),transparent 70%);
    filter:blur(60px);
    pointer-events:none;
  }
  .consult-orb-left {
    position:absolute;
    bottom:80px;
    left:-60px;
    width:300px;
    height:300px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(18,44,72,.3),transparent 70%);
    filter:blur(80px);
    pointer-events:none;
  }
  .consult-breadcrumb {
    font-size:11px;
    letter-spacing:.12em;
    color:#4b5563;
    text-transform:uppercase;
    animation:fadeUp .7s ease both;
  }
  .consult-breadcrumb a {
    color:#6b7280;
    text-decoration:none;
    transition:color .2s;
  }
  .consult-breadcrumb a:hover { color:#d4a843; }
  .consult-breadcrumb-current { color:#bb8f37; }
  .consult-title {
    font-size:4.4rem;
    font-weight:700;
    line-height:1.06;
    margin-bottom:24px;
    animation:fadeUp .8s .12s ease both;
  }
  .consult-copy {
    font-size:16.5px;
    color:#6b7280;
    max-width:620px;
    line-height:1.82;
    margin-bottom:48px;
    animation:fadeUp .8s .22s ease both;
  }
  .consult-highlight { color:#d4a843; }
  .consult-anchors {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    animation:fadeUp .8s .32s ease both;
  }
  .consult-anchor {
    font-size:11px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#9ca3af;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.08);
    border-radius:999px;
    padding:8px 20px;
    transition:all .25s;
  }
  .consult-anchor:hover {
    border-color:rgba(187,143,55,.4);
    color:#d4a843;
  }

  .consult-section-grad {
    padding:100px 0;
    background:linear-gradient(180deg,var(--navy-deep) 0%,#081827 100%);
  }
  .consult-section-mid {
    padding:100px 0;
    background:#081827;
  }
  .consult-section-navy {
    padding:100px 0;
    background:var(--navy-deep);
  }
  .consult-h2 {
    font-size:3rem;
    font-weight:700;
    line-height:1.1;
    margin-bottom:18px;
  }
  .consult-sub {
    font-size:15px;
    color:#6b7280;
    max-width:560px;
    margin:0 auto;
    line-height:1.8;
  }
  .consult-sub-sm { max-width:500px; }

  .consult-prof-grid {
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:18px;
    margin-bottom:60px;
  }
  .profession-card {
    background: rgba(255,255,255,.025);
    border:1px solid rgba(187,143,55,.15);
    border-radius:16px;
    padding:24px 20px;
    text-align:center;
    transition:all .35s;
  }
  .profession-card:hover {
    border-color:rgba(187,143,55,.5);
    background:rgba(187,143,55,.06);
    transform:translateY(-6px);
    box-shadow:0 18px 48px rgba(187,143,55,.1);
  }
  .profession-card:hover .pc-icon { color:var(--gold-bright); }
  .pc-icon {
    color:var(--gold);
    margin:0 auto 14px;
    display:block;
    transition:color .3s;
  }
  .profession-title {
    font-size:11px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#e2e8f0;
    margin-bottom:6px;
  }
  .profession-copy {
    font-size:11.5px;
    color:#6b7280;
    line-height:1.55;
  }

  .consult-partner-card {
    background:rgba(187,143,55,.05);
    border:1px solid rgba(187,143,55,.18);
    border-radius:22px;
    padding:52px 56px;
    position:relative;
    overflow:hidden;
  }
  .consult-partner-card::before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:2px;
    background:linear-gradient(90deg,transparent,#bb8f37,transparent);
  }
  .consult-main-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:56px;
    align-items:center;
  }
  .consult-h3 {
    font-size:2.3rem;
    font-weight:700;
    line-height:1.15;
    margin-bottom:22px;
    color:#f1f5f9;
  }
  .consult-paragraph {
    font-size:15px;
    color:#94a3b8;
    line-height:1.85;
  }
  .consult-strong {
    color:#e2e8f0;
    font-weight:600;
  }
  .consult-benefit-col {
    display:flex;
    flex-direction:column;
    gap:18px;
  }
  .consult-benefit-card {
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:18px 20px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
    border-radius:14px;
    transition:border-color .3s;
  }
  .consult-benefit-card:hover { border-color:rgba(187,143,55,.3); }
  .consult-benefit-icon {
    width:36px;
    height:36px;
    border-radius:10px;
    background:rgba(187,143,55,.1);
    border:1px solid rgba(187,143,55,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  .consult-benefit-title {
    font-size:12px;
    font-weight:700;
    color:#e2e8f0;
    margin-bottom:3px;
    letter-spacing:.03em;
  }
  .consult-benefit-copy {
    font-size:13px;
    color:#6b7280;
    line-height:1.6;
  }

  .consult-steps-grid {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:0;
    position:relative;
  }
  .consult-steps-line {
    position:absolute;
    top:28px;
    left:calc(12.5% + 14px);
    right:calc(12.5% + 14px);
    height:1px;
    background:linear-gradient(90deg,var(--gold),rgba(187,143,55,.2),var(--gold));
    pointer-events:none;
  }
  .consult-step {
    text-align:center;
    padding:0 16px;
    position:relative;
  }
  .consult-step-dot {
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    position:relative;
    z-index:1;
  }
  .consult-step-dot-first {
    background:linear-gradient(135deg,#bb8f37,#d4a843);
    box-shadow:0 0 0 4px rgba(187,143,55,.12),0 0 0 8px rgba(187,143,55,.06);
  }
  .consult-step-dot-other {
    background:rgba(187,143,55,.1);
    border:1px solid rgba(187,143,55,.35);
  }
  .consult-step-num-first {
    font-size:1.4rem;
    font-weight:700;
    color:#050f1a;
  }
  .consult-step-num {
    font-size:1.4rem;
    font-weight:700;
    color:#d4a843;
  }
  .consult-step-title {
    font-size:12px;
    font-weight:700;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:#f1f5f9;
    margin-bottom:10px;
  }
  .consult-step-copy {
    font-size:12.5px;
    color:#6b7280;
    line-height:1.7;
  }

  .form-shell {
    background:rgba(255,255,255,.025);
    border:1px solid rgba(187,143,55,.2);
    border-radius:24px;
    overflow:hidden;
    position:relative;
  }
  .form-shell::before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:3px;
    background:linear-gradient(90deg,transparent,var(--gold),var(--gold-bright),var(--gold),transparent);
  }
  .consult-form-head {
    padding:28px 36px 20px;
    background:rgba(187,143,55,.05);
    border-bottom:1px solid rgba(187,143,55,.12);
  }
  .consult-form-icon {
    width:44px;
    height:44px;
    border-radius:12px;
    background:rgba(187,143,55,.12);
    border:1px solid rgba(187,143,55,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  .consult-form-title {
    font-size:14px;
    font-weight:700;
    color:#f1f5f9;
    margin-bottom:2px;
  }
  .consult-form-sub {
    font-size:12px;
    color:#6b7280;
  }
  .consult-live-dot {
    width:7px;
    height:7px;
    border-radius:50%;
    background:#22c55e;
    box-shadow:0 0 6px rgba(34,197,94,.5);
    animation:pulse 2s infinite;
  }
  .consult-live-label {
    font-size:10px;
    font-weight:600;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#22c55e;
  }
  @keyframes pulse {
    0% { opacity:.5; }
    50% { opacity:1; }
    100% { opacity:.5; }
  }
  .consult-form-body { padding:32px 36px; }
  .crm-iframe {
    width:100%;
    min-height:620px;
    border:none;
    display:block;
    background:transparent;
    color-scheme:dark;
  }
  .consult-trust-row {
    padding:18px 36px 28px;
    border-top:1px solid rgba(255,255,255,.04);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
  }
  .consult-trust-item {
    display:flex;
    align-items:center;
    gap:7px;
    font-size:11.5px;
    color:#4b5563;
  }
  .consult-alt {
    margin-top:28px;
    text-align:center;
  }
  .consult-alt-label {
    font-size:13px;
    color:#4b5563;
  }
  .consult-alt-links {
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin-top:14px;
  }
  .consult-alt-link {
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#6b7280;
    font-size:13px;
    transition:color .25s;
  }
  .consult-alt-link:hover { color:#d4a843; }

  .consult-cta {
    position:relative;
    padding:130px 0;
    text-align:center;
    overflow:hidden;
  }
  .consult-cta-overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(160deg,rgba(5,15,26,.95) 0%,rgba(8,24,39,.92) 100%);
  }
  .consult-cta-glow {
    position:absolute;
    inset:0;
    background:radial-gradient(ellipse 55% 50% at 50% 50%,rgba(187,143,55,.07) 0%,transparent 65%);
    pointer-events:none;
  }
  .consult-cta .inner { position:relative; z-index:1; }
  .consult-cta-title {
    font-size:3.4rem;
    font-weight:700;
    line-height:1.1;
    margin-bottom:20px;
  }
  .consult-cta-copy {
    font-size:15.5px;
    color:#6b7280;
    max-width:520px;
    margin:0 auto 48px;
    line-height:1.8;
  }
  .consult-cta-note {
    margin-top:18px;
    font-size:11.5px;
    color:#1f2937;
  }

  @media (max-width: 1024px) {
    .consult-main-grid { grid-template-columns:1fr !important; }
  }
  @media (max-width: 768px) {
    .consult-prof-grid { grid-template-columns:repeat(2,1fr) !important; }
    .consult-steps-grid { grid-template-columns:1fr !important; }
    .consult-title { font-size:2.8rem !important; }
  }
  @media (max-width: 480px) {
    .consult-prof-grid { grid-template-columns:1fr !important; }
    .consult-title { font-size:2.2rem !important; }
  }

  .credit-hero {
    min-height:70vh;
    display:flex;
    align-items:center;
    padding-top:120px;
    background:
      radial-gradient(ellipse 65% 55% at 15% 40%, rgba(187,143,55,.09) 0%, transparent 60%),
      radial-gradient(ellipse 45% 55% at 90% 65%, rgba(18,44,72,.35) 0%, transparent 55%),
      linear-gradient(165deg,#030c14 0%,#081827 55%,#0d2238 100%);
    position:relative;
    overflow:hidden;
  }
  .credit-hero::before {
    content:'';
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:.022;
    background-image:
      repeating-linear-gradient(0deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px),
      repeating-linear-gradient(90deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px);
  }
  .credit-hero::after {
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height:100px;
    background:linear-gradient(to top,var(--navy-deep),transparent);
    pointer-events:none;
  }
  .credit-orb-right {
    position:absolute;
    top:-80px;
    right:-120px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(187,143,55,.07),transparent 70%);
    filter:blur(60px);
    pointer-events:none;
  }
  .credit-orb-left {
    position:absolute;
    bottom:80px;
    left:-60px;
    width:300px;
    height:300px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(18,44,72,.3),transparent 70%);
    filter:blur(80px);
    pointer-events:none;
  }
  .credit-breadcrumb {
    display:flex;
    align-items:center;
    gap:8px;
    font-size:11px;
    letter-spacing:.12em;
    color:#4b5563;
    text-transform:uppercase;
    margin-bottom:36px;
    animation:fadeUp .7s ease both;
  }
  .credit-breadcrumb a {
    color:#6b7280;
    text-decoration:none;
    transition:color .2s;
  }
  .credit-breadcrumb a:hover { color:#d4a843; }
  .credit-breadcrumb-current { color:#bb8f37; }
  .credit-title {
    font-size:4.4rem;
    font-weight:700;
    line-height:1.06;
    margin-bottom:22px;
    animation:fadeUp .8s .12s ease both;
  }
  .credit-copy {
    font-size:16px;
    color:#6b7280;
    max-width:640px;
    line-height:1.82;
    margin-bottom:44px;
    animation:fadeUp .8s .22s ease both;
  }
  .credit-pill-row {
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    animation:fadeUp .8s .32s ease both;
  }
  .credit-pill {
    font-size:11px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#9ca3af;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.08);
    border-radius:999px;
    padding:8px 18px;
    transition:all .25s;
  }
  .credit-pill:hover {
    border-color:rgba(187,143,55,.4);
    color:#d4a843;
  }

  .credit-layout {
    display:grid;
    grid-template-columns:220px 1fr;
    gap:52px;
    align-items:start;
  }
  .credit-toc {
    position:sticky;
    top:100px;
  }
  .credit-toc-box {
    background:rgba(255,255,255,.02);
    border:1px solid rgba(187,143,55,.15);
    border-radius:18px;
    padding:22px 16px;
  }
  .credit-toc-label {
    font-size:10px;
    font-weight:700;
    letter-spacing:.2em;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:16px;
    padding:0 4px;
  }
  .toc-link {
    font-size:12px;
    color:#4b5563;
    font-weight:500;
    text-decoration:none;
    padding:6px 12px;
    border-radius:8px;
    border:1px solid transparent;
    display:block;
    transition:all .25s;
  }
  .toc-link:hover, .toc-link.active {
    color:#e8c97a;
    background:rgba(187,143,55,.07);
    border-color:rgba(187,143,55,.2);
  }
  .credit-help {
    background:rgba(187,143,55,.05);
    border:1px solid rgba(187,143,55,.18);
    border-radius:16px;
    padding:20px 18px;
    margin-top:18px;
  }
  .credit-help-label {
    font-size:10px;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:14px;
  }
  .credit-help-link {
    display:flex;
    align-items:center;
    gap:8px;
    font-size:12px;
    color:#4b5563;
    text-decoration:none;
    margin-bottom:8px;
    transition:color .2s;
  }
  .credit-help-link:hover { color:#d4a843; }
  .credit-help-link-mail {
    font-size:11.5px;
    word-break:break-all;
    margin-bottom:0;
  }

  .credit-section { margin-bottom:72px; }
  .credit-h2 {
    font-size:2.6rem;
    font-weight:700;
    line-height:1.12;
    margin-bottom:20px;
  }
  .credit-p {
    font-size:15px;
    color:#94a3b8;
    line-height:1.85;
  }
  .credit-p + .credit-p { margin-top:18px; }
  .credit-strong { color:#e2e8f0; font-weight:600; }
  .credit-gold { color:#d4a843; }

  .credit-range-wrap {
    background:rgba(187,143,55,.04);
    border:1px solid rgba(187,143,55,.18);
    border-radius:20px;
    padding:32px 30px;
  }
  .credit-range-label {
    font-size:10px;
    font-weight:700;
    letter-spacing:.2em;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:24px;
  }
  .credit-spectrum {
    height:16px;
    border-radius:99px;
    background:linear-gradient(90deg,#ef4444 0%,#f97316 20%,#eab308 40%,#84cc16 65%,#22c55e 100%);
    margin-bottom:28px;
    position:relative;
    box-shadow:0 4px 20px rgba(0,0,0,.3);
  }
  .credit-spectrum-min, .credit-spectrum-max {
    position:absolute;
    top:-22px;
    font-size:9px;
    font-weight:700;
    color:#6b7280;
  }
  .credit-spectrum-min { left:0; }
  .credit-spectrum-max { right:0; }
  .score-range-grid {
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:10px;
  }
  .score-card {
    border-radius:14px;
    padding:18px 20px;
    border:1px solid transparent;
    transition:all .3s;
  }
  .score-card:hover {
    transform:translateY(-4px);
    box-shadow:0 14px 36px rgba(0,0,0,.3);
  }
  .score-card-bad { background:rgba(239,68,68,.08); border-color:rgba(239,68,68,.2); }
  .score-card-fair { background:rgba(249,115,22,.08); border-color:rgba(249,115,22,.2); }
  .score-card-good { background:rgba(234,179,8,.08); border-color:rgba(234,179,8,.2); }
  .score-card-vgood { background:rgba(132,204,22,.08); border-color:rgba(132,204,22,.2); }
  .score-card-exc { background:rgba(34,197,94,.08); border-color:rgba(34,197,94,.2); }
  .score-card-range { font-size:1.4rem; font-weight:700; margin-bottom:4px; }
  .score-card-range-bad { color:#f87171; }
  .score-card-range-fair { color:#fb923c; }
  .score-card-range-good { color:#fbbf24; }
  .score-card-range-vgood { color:#a3e635; }
  .score-card-range-exc { color:#4ade80; }
  .score-card-label {
    font-size:10px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:#6b7280;
  }

  .factors-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
  }
  .factor-bar {
    background:rgba(255,255,255,.03);
    border:1px solid rgba(187,143,55,.1);
    border-radius:14px;
    padding:20px 22px;
    transition:all .3s;
  }
  .factor-bar:hover {
    border-color:rgba(187,143,55,.35);
    background:rgba(187,143,55,.04);
  }
  .factor-bar-wide { grid-column:span 2; }
  .factor-top {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
  }
  .factor-title { font-size:12px; font-weight:700; color:#e2e8f0; }
  .factor-pct { font-size:1.5rem; font-weight:700; color:#d4a843; }
  .gauge-track {
    height:14px;
    border-radius:99px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.07);
    overflow:hidden;
    position:relative;
  }
  .gauge-fill {
    height:100%;
    border-radius:99px;
    transition:width 1.4s cubic-bezier(.25,.46,.45,.94);
    background:linear-gradient(90deg,#bb8f37,#e8c97a);
  }
  .factor-copy { font-size:12px; color:#4b5563; line-height:1.65; margin-top:10px; }

  .credit-stat-callout {
    background:linear-gradient(135deg,rgba(187,143,55,.08) 0%,rgba(8,24,39,.5) 100%);
    border:1px solid rgba(187,143,55,.3);
    border-radius:20px;
    padding:36px 40px;
    display:flex;
    align-items:center;
    gap:32px;
    flex-wrap:wrap;
  }
  .credit-stat-main { text-align:center; min-width:140px; }
  .credit-stat-num { font-size:5rem; font-weight:700; color:#d4a843; line-height:1; }
  .credit-stat-tag {
    font-size:10px;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#4b5563;
    margin-top:4px;
  }
  .credit-stat-copy { font-size:16px; font-style:italic; color:#94a3b8; line-height:1.8; }

  .tips-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
  }
  .tip-card {
    background:rgba(255,255,255,.02);
    border:1px solid rgba(187,143,55,.12);
    border-radius:18px;
    padding:28px 26px;
    transition:all .4s;
    position:relative;
    overflow:hidden;
  }
  .tip-card::before {
    content:'';
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:2px;
    background:linear-gradient(90deg,transparent,var(--gold),transparent);
    opacity:0;
    transition:opacity .35s;
  }
  .tip-card:hover::before { opacity:1; }
  .tip-card:hover {
    border-color:rgba(187,143,55,.4);
    background:rgba(187,143,55,.04);
    transform:translateY(-5px);
    box-shadow:0 18px 48px rgba(187,143,55,.08);
  }
  .tip-icon {
    width:48px;
    height:48px;
    border-radius:14px;
    background:rgba(187,143,55,.1);
    border:1px solid rgba(187,143,55,.22);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
  }
  .tip-title { font-size:13px; font-weight:700; color:#e2e8f0; margin-bottom:10px; }
  .tip-copy { font-size:13px; color:#4b5563; line-height:1.75; }

  .credit-timeline-wrap {
    background:rgba(255,255,255,.02);
    border:1px solid rgba(187,143,55,.15);
    border-radius:20px;
    padding:32px 28px;
  }
  .timeline-item {
    display:flex;
    gap:20px;
    align-items:flex-start;
    padding:22px 0;
    border-bottom:1px solid rgba(255,255,255,.045);
    transition:padding-left .3s;
  }
  .timeline-item:last-child { border-bottom:none; }
  .timeline-item:hover { padding-left:6px; }
  .tl-badge {
    background:rgba(187,143,55,.1);
    border:1px solid rgba(187,143,55,.25);
    border-radius:10px;
    padding:6px 12px;
    flex-shrink:0;
    font-size:1.1rem;
    font-weight:700;
    color:#d4a843;
    white-space:nowrap;
    text-align:center;
    min-width:72px;
  }
  .tl-badge-sm { font-size:.85rem; }
  .tl-badge-xs { font-size:.82rem; }
  .timeline-title { font-size:13px; font-weight:700; color:#e2e8f0; margin-bottom:5px; }
  .timeline-copy { font-size:13px; color:#4b5563; line-height:1.7; }
  .timeline-red { color:#f87171; }

  .credit-cannot-list {
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .cannot-card {
    display:flex;
    align-items:center;
    gap:14px;
    background:rgba(239,68,68,.05);
    border:1px solid rgba(239,68,68,.18);
    border-radius:14px;
    padding:18px 22px;
    transition:all .3s;
  }
  .cannot-card:hover {
    border-color:rgba(239,68,68,.35);
    background:rgba(239,68,68,.08);
  }
  .cannot-icon {
    width:36px;
    height:36px;
    border-radius:10px;
    background:rgba(239,68,68,.12);
    border:1px solid rgba(239,68,68,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  .cannot-title { font-size:12px; font-weight:700; color:#fca5a5; margin-bottom:3px; }
  .cannot-copy { font-size:13px; color:#9ca3af; line-height:1.65; }

  .credit-rights {
    margin-top:32px;
    background:rgba(187,143,55,.05);
    border:1px solid rgba(187,143,55,.2);
    border-radius:16px;
    padding:24px 26px;
    display:flex;
    align-items:center;
    gap:16px;
  }
  .credit-rights-icon {
    width:44px;
    height:44px;
    border-radius:12px;
    background:rgba(187,143,55,.1);
    border:1px solid rgba(187,143,55,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
  }
  .credit-rights-copy { font-size:14px; color:#94a3b8; line-height:1.75; }
  .credit-rights-copy a {
    color:#d4a843;
    text-decoration:none;
    font-weight:600;
  }
  .credit-rights-copy a:hover { color:#e8c97a; }

  .credit-cta {
    padding:130px 0;
    text-align:center;
    position:relative;
    overflow:hidden;
    background:linear-gradient(160deg,#030c14 0%,#081827 50%,#0d2238 100%);
  }
  .credit-cta-glow {
    position:absolute;
    inset:0;
    background:radial-gradient(ellipse 60% 50% at 50% 50%,rgba(187,143,55,.07) 0%,transparent 65%);
    pointer-events:none;
  }
  .credit-cta-grid {
    position:absolute;
    inset:0;
    opacity:.02;
    background-image:
      repeating-linear-gradient(0deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px),
      repeating-linear-gradient(90deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px);
    pointer-events:none;
  }
  .credit-cta-title {
    font-size:3.4rem;
    font-weight:700;
    line-height:1.1;
    margin-bottom:20px;
  }
  .credit-cta-copy {
    font-size:15.5px;
    color:#6b7280;
    max-width:520px;
    margin:0 auto 48px;
    line-height:1.8;
  }
  .credit-cta-links {
    margin-top:32px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:28px;
  }
  .credit-cta-link {
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#4b5563;
    font-size:13px;
    transition:color .25s;
  }
  .credit-cta-link:hover { color:#d4a843; }
  .credit-cta-text {
    display:flex;
    align-items:center;
    gap:8px;
    color:#4b5563;
    font-size:13px;
  }

  @media (max-width: 1200px) {
    .credit-layout { grid-template-columns:1fr !important; }
    .credit-toc { display:none; }
  }
  @media (max-width: 768px) {
    .factors-grid { grid-template-columns:1fr !important; }
    .factor-bar-wide { grid-column:span 1; }
    .tips-grid { grid-template-columns:1fr !important; }
    .score-range-grid { grid-template-columns:repeat(2,1fr) !important; }
    .credit-title { font-size:2.8rem !important; }
  }
  @media (max-width: 480px) {
    .score-range-grid { grid-template-columns:1fr !important; }
    .credit-title { font-size:2.2rem !important; }
  }

  .privacy-hero {
    min-height: 62vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background:
      radial-gradient(ellipse 65% 55% at 15% 40%, rgba(187,143,55,.09) 0%, transparent 60%),
      radial-gradient(ellipse 45% 55% at 90% 65%, rgba(18,44,72,.35) 0%, transparent 55%),
      linear-gradient(165deg,#030c14 0%,#081827 55%,#0d2238 100%);
    position: relative;
    overflow: hidden;
  }
  .privacy-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .022;
    background-image:
      repeating-linear-gradient(0deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px),
      repeating-linear-gradient(90deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px);
  }
  .privacy-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top,var(--navy-deep),transparent);
    pointer-events: none;
  }
  .privacy-orb-right {
    position: absolute;
    top: -80px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(187,143,55,.07),transparent 70%);
    filter: blur(60px);
    pointer-events: none;
  }
  .privacy-orb-left {
    position: absolute;
    bottom: 80px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(18,44,72,.3),transparent 70%);
    filter: blur(80px);
    pointer-events: none;
  }
  .privacy-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: .12em;
    color: #4b5563;
    text-transform: uppercase;
    margin-bottom: 36px;
    animation: fadeUp .7s ease both;
  }
  .privacy-breadcrumb a { color: #6b7280; text-decoration: none; transition: color .2s; }
  .privacy-breadcrumb a:hover { color: #d4a843; }
  .privacy-breadcrumb-current { color: #bb8f37; }
  .privacy-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.06;
    margin-bottom: 20px;
    animation: fadeUp .8s .12s ease both;
  }
  .privacy-copy {
    font-size: 15.5px;
    color: #6b7280;
    max-width: 580px;
    line-height: 1.82;
    margin-bottom: 40px;
    animation: fadeUp .8s .22s ease both;
  }
  .privacy-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeUp .8s .3s ease both;
  }
  .privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(187,143,55,.08);
    border: 1px solid rgba(187,143,55,.22);
    font-size: 11px;
    font-weight: 600;
    color: #d4a843;
  }

  .privacy-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 52px;
    align-items: start;
  }
  .privacy-toc {
    position: sticky;
    top: 100px;
  }
  .privacy-toc-box {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(187,143,55,.15);
    border-radius: 18px;
    padding: 22px 14px;
  }
  .privacy-toc-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 0 4px;
  }
  .privacy-toc-num {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    min-width: 20px;
    letter-spacing: .04em;
  }
  .privacy-contact-card {
    background: rgba(187,143,55,.05);
    border: 1px solid rgba(187,143,55,.18);
    border-radius: 14px;
    padding: 18px 16px;
    margin-top: 16px;
  }
  .privacy-contact-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .privacy-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #4b5563;
    text-decoration: none;
    margin-bottom: 8px;
    line-height: 1.5;
    transition: color .2s;
  }
  .privacy-contact-link:hover { color: #d4a843; }

  .policy-section {
    background: rgba(255,255,255,.022);
    border: 1px solid rgba(187,143,55,.13);
    border-radius: 22px;
    padding: 40px 44px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    transition: border-color .35s;
  }
  .policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,transparent,var(--gold),transparent);
    opacity: 0;
    transition: opacity .35s;
  }
  .policy-section:hover { border-color: rgba(187,143,55,.35); }
  .policy-section:hover::before { opacity: 1; }
  .policy-section-emphasis {
    background: rgba(187,143,55,.04);
    border-color: rgba(187,143,55,.28);
  }
  .sec-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  .sec-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg,rgba(187,143,55,.3),transparent);
  }
  .sec-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 20px;
    line-height: 1.15;
  }
  .policy-text {
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.85;
    margin-bottom: 16px;
  }
  .policy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
  }
  .policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
  }
  .policy-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 8px;
    opacity: .7;
  }
  .policy-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .policy-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
  }
  .policy-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: rgba(187,143,55,.07);
    border: 1px solid rgba(187,143,55,.22);
    border-radius: 16px;
    text-decoration: none;
    transition: all .3s;
  }
  .policy-contact-item:hover {
    border-color: rgba(187,143,55,.5);
    background: rgba(187,143,55,.12);
  }
  .policy-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(187,143,55,.15);
    border: 1px solid rgba(187,143,55,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .policy-contact-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
  }
  .policy-contact-value {
    font-size: 14px;
    color: #d4a843;
    font-weight: 500;
  }

  .privacy-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg,#030c14 0%,#081827 50%,#0d2238 100%);
  }
  .privacy-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%,rgba(187,143,55,.07) 0%,transparent 65%);
    pointer-events: none;
  }
  .privacy-cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .privacy-cta-copy {
    font-size: 15px;
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.8;
  }

  @media (max-width: 1200px) {
    .privacy-layout { grid-template-columns: 1fr !important; }
    .privacy-toc { display: none; }
  }
  @media (max-width: 768px) {
    .policy-section { padding: 28px 22px; }
    .policy-grid-2 { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .privacy-title { font-size: 2.4rem !important; }
  }

  .tos-hero {
    min-height: 62vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background:
      radial-gradient(ellipse 65% 55% at 15% 40%, rgba(187,143,55,.09) 0%, transparent 60%),
      radial-gradient(ellipse 45% 55% at 90% 65%, rgba(18,44,72,.35) 0%, transparent 55%),
      linear-gradient(165deg,#030c14 0%,#081827 55%,#0d2238 100%);
    position: relative;
    overflow: hidden;
  }
  .tos-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .022;
    background-image:
      repeating-linear-gradient(0deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px),
      repeating-linear-gradient(90deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px);
  }
  .tos-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top,var(--navy-deep),transparent);
    pointer-events: none;
  }
  .tos-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.06;
    margin-bottom: 20px;
    animation: fadeUp .8s .12s ease both;
  }
  .tos-copy {
    font-size: 15.5px;
    color: #6b7280;
    max-width: 600px;
    line-height: 1.82;
    margin-bottom: 40px;
    animation: fadeUp .8s .22s ease both;
  }
  .tos-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeUp .8s .3s ease both;
  }
  .tos-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(187,143,55,.08);
    border: 1px solid rgba(187,143,55,.22);
    font-size: 11px;
    font-weight: 600;
    color: #d4a843;
  }

  .tos-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 52px;
    align-items: start;
  }
  .tos-toc { position: sticky; top: 100px; }
  .tos-toc-box {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(187,143,55,.15);
    border-radius: 18px;
    padding: 22px 14px;
  }
  .tos-toc-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 0 4px;
  }
  .tos-toc-num {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    min-width: 20px;
    letter-spacing: .04em;
  }
  .tos-contact {
    background: rgba(187,143,55,.05);
    border: 1px solid rgba(187,143,55,.18);
    border-radius: 14px;
    padding: 18px 16px;
    margin-top: 16px;
  }
  .tos-contact-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .tos-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #4b5563;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color .2s;
  }
  .tos-contact-link:hover { color: #d4a843; }

  .tos-section {
    background: rgba(255,255,255,.022);
    border: 1px solid rgba(187,143,55,.13);
    border-radius: 22px;
    padding: 40px 44px;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
    transition: border-color .35s;
  }
  .tos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,transparent,var(--gold),transparent);
    opacity: 0;
    transition: opacity .35s;
  }
  .tos-section:hover { border-color: rgba(187,143,55,.35); }
  .tos-section:hover::before { opacity: 1; }
  .tos-section-important {
    background: rgba(187,143,55,.04);
    border-color: rgba(187,143,55,.28);
  }
  .tos-section-important::before { opacity: 1; }
  .tos-text {
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.87;
    margin-bottom: 16px;
  }
  .tos-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 14px 0;
  }
  .tos-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.75;
  }
  .tos-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 9px;
    opacity: .7;
  }
  .tos-list-check li::before {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    margin-top: 2px;
    background: rgba(187,143,55,.1);
    border: 1px solid rgba(187,143,55,.3);
  }
  .tos-list-cross li::before {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    margin-top: 2px;
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.25);
  }
  .tos-summary {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(187,143,55,.1);
    border-radius: 14px;
    overflow: hidden;
  }
  .summary-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: background .25s;
  }
  .summary-row:last-child { border-bottom: none; }
  .summary-row:hover { background: rgba(187,143,55,.03); }
  .sr-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    min-width: 160px;
    flex-shrink: 0;
    padding-top: 2px;
  }

  .tos-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg,#030c14 0%,#081827 50%,#0d2238 100%);
  }
  .tos-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%,rgba(187,143,55,.07) 0%,transparent 65%);
    pointer-events: none;
  }
  .tos-cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .tos-cta-copy {
    font-size: 15px;
    color: #6b7280;
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.8;
  }

  @media (max-width: 1200px) {
    .tos-layout { grid-template-columns: 1fr !important; }
    .tos-toc { display: none; }
  }
  @media (max-width: 768px) {
    .tos-section { padding: 28px 22px; }
    .tos-title { font-size: 2.6rem !important; }
    .summary-row { flex-direction: column; }
    .sr-label { min-width: 0; }
  }
  @media (max-width: 480px) {
    .tos-title { font-size: 2.2rem !important; }
  }

  /* Disclaimer Page */
  .disc-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    background:
      radial-gradient(ellipse 65% 55% at 15% 40%, rgba(239,68,68,.1) 0%, transparent 60%),
      radial-gradient(ellipse 45% 55% at 90% 65%, rgba(18,44,72,.35) 0%, transparent 55%),
      linear-gradient(165deg,#030c14 0%,#081827 55%,#0d2238 100%);
    position: relative;
    overflow: hidden;
  }
  .disc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .022;
    background-image:
      repeating-linear-gradient(0deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px),
      repeating-linear-gradient(90deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px);
  }
  .disc-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top,var(--navy-deep),transparent);
    pointer-events: none;
  }
  .disc-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.06;
    margin-bottom: 20px;
    animation: fadeUp .8s .12s ease both;
  }
  .disc-copy {
    font-size: 15.5px;
    color: #6b7280;
    max-width: 640px;
    line-height: 1.82;
    margin-bottom: 40px;
    animation: fadeUp .8s .22s ease both;
  }
  .disc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeUp .8s .3s ease both;
  }
  .disc-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(187,143,55,.08);
    border: 1px solid rgba(187,143,55,.22);
    font-size: 11px;
    font-weight: 600;
    color: #d4a843;
  }
  .disc-badge-danger {
    background: rgba(239,68,68,.08);
    border-color: rgba(239,68,68,.25);
    color: #f87171;
  }
  .disc-alert {
    margin: 0 auto;
    max-width: 1320px;
    border-top: 1px solid rgba(239,68,68,.28);
    border-bottom: 1px solid rgba(239,68,68,.28);
    background: linear-gradient(135deg,rgba(239,68,68,.08) 0%,rgba(13,34,56,.6) 100%);
    padding: 22px 18px;
    border-radius: 14px;
  }
  .disc-alert-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fca5a5;
    margin-bottom: 8px;
  }
  .disc-alert-copy {
    font-size: 14px;
    color: #fca5a5;
    line-height: 1.8;
  }
  .disc-alert-copy strong { color: #fecaca; }

  .disc-cta-note {
    margin-top: 16px;
    font-size: 11.5px;
    color: #1f2937;
  }

  @media (max-width: 768px) {
    .disc-title { font-size: 2.6rem !important; }
  }
  @media (max-width: 480px) {
    .disc-title { font-size: 2.2rem !important; }
  }

  /* Cookie Policy Page */
  .cookie-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    background:
      radial-gradient(ellipse 65% 55% at 15% 40%, rgba(187,143,55,.09) 0%, transparent 60%),
      radial-gradient(ellipse 45% 55% at 90% 65%, rgba(59,130,246,.14) 0%, transparent 55%),
      linear-gradient(165deg,#030c14 0%,#081827 55%,#0d2238 100%);
    position: relative;
    overflow: hidden;
  }
  .cookie-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .022;
    background-image:
      repeating-linear-gradient(0deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px),
      repeating-linear-gradient(90deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px);
  }
  .cookie-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top,var(--navy-deep),transparent);
    pointer-events: none;
  }
  .cookie-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.06;
    margin-bottom: 20px;
    animation: fadeUp .8s .12s ease both;
  }
  .cookie-copy {
    font-size: 15.5px;
    color: #6b7280;
    max-width: 620px;
    line-height: 1.82;
    margin-bottom: 40px;
    animation: fadeUp .8s .22s ease both;
  }
  .cookie-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeUp .8s .3s ease both;
  }
  .cookie-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(187,143,55,.08);
    border: 1px solid rgba(187,143,55,.22);
    font-size: 11px;
    font-weight: 600;
    color: #d4a843;
  }
  .cookie-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .cookie-summary-card {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(187,143,55,.12);
    border-radius: 14px;
    padding: 18px 16px;
  }
  .cookie-summary-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
  }
  .cookie-summary-copy {
    font-size: 12px;
    color: var(--dark);
    line-height: 1.65;
  }
  .cookie-pref-panel {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(187,143,55,.12);
    border-radius: 16px;
    padding: 24px;
  }
  .cookie-pref-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .cookie-pref-row:last-child { border-bottom: none; }
  .cookie-pref-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
  }
  .cookie-pref-copy {
    font-size: 12px;
    color: var(--dark);
    line-height: 1.7;
    max-width: 560px;
  }
  .cookie-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid rgba(187,143,55,.28);
    color: var(--gold-lt);
    background: rgba(187,143,55,.08);
  }
  .cookie-tag-required {
    border-color: rgba(34,197,94,.35);
    color: #86efac;
    background: rgba(34,197,94,.09);
  }
  .cookie-tag-optional {
    border-color: rgba(59,130,246,.35);
    color: #93c5fd;
    background: rgba(59,130,246,.09);
  }

  @media (max-width: 1200px) {
    .cookie-summary-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .cookie-title { font-size: 2.6rem !important; }
    .cookie-summary-grid { grid-template-columns: 1fr; }
    .cookie-pref-row { flex-direction: column; }
  }
  @media (max-width: 480px) {
    .cookie-title { font-size: 2.2rem !important; }
  }

  /* CCPA Page */
  .ccpa-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    background:
      radial-gradient(ellipse 65% 55% at 15% 40%, rgba(187,143,55,.09) 0%, transparent 60%),
      radial-gradient(ellipse 45% 55% at 90% 65%, rgba(16,185,129,.12) 0%, transparent 55%),
      linear-gradient(165deg,#030c14 0%,#081827 55%,#0d2238 100%);
    position: relative;
    overflow: hidden;
  }
  .ccpa-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .022;
    background-image:
      repeating-linear-gradient(0deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px),
      repeating-linear-gradient(90deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px);
  }
  .ccpa-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top,var(--navy-deep),transparent);
    pointer-events: none;
  }
  .ccpa-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.06;
    margin-bottom: 20px;
    animation: fadeUp .8s .12s ease both;
  }
  .ccpa-copy {
    font-size: 15.5px;
    color: #6b7280;
    max-width: 640px;
    line-height: 1.82;
    margin-bottom: 40px;
    animation: fadeUp .8s .22s ease both;
  }
  .ccpa-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeUp .8s .3s ease both;
  }
  .ccpa-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(187,143,55,.08);
    border: 1px solid rgba(187,143,55,.22);
    font-size: 11px;
    font-weight: 600;
    color: #d4a843;
  }
  .ccpa-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .ccpa-summary-card {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(187,143,55,.12);
    border-radius: 14px;
    padding: 18px 16px;
  }
  .ccpa-summary-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
  }
  .ccpa-summary-copy {
    font-size: 12px;
    color: var(--dark);
    line-height: 1.65;
  }
  .ccpa-form {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(187,143,55,.16);
    border-radius: 16px;
    padding: 24px;
  }
  .ccpa-field {
    width: 100%;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.03);
    border-radius: 10px;
    color: #e5e7eb;
    font-size: 13px;
    padding: 12px 14px;
    outline: none;
  }
  .ccpa-field:focus { border-color: rgba(187,143,55,.5); }

  @media (max-width: 1200px) {
    .ccpa-summary-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .ccpa-title { font-size: 2.6rem !important; }
    .ccpa-summary-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .ccpa-title { font-size: 2.2rem !important; }
  }

  /* Thank You Page */
  .thanks-hero {
    min-height: 78vh;
    display: flex;
    align-items: center;
    background:
      radial-gradient(ellipse 65% 55% at 15% 40%, rgba(187,143,55,.09) 0%, transparent 60%),
      radial-gradient(ellipse 45% 55% at 90% 65%, rgba(16,185,129,.12) 0%, transparent 55%),
      linear-gradient(165deg,#030c14 0%,#081827 55%,#0d2238 100%);
    position: relative;
    overflow: hidden;
  }
  .thanks-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .02;
    background-image:
      repeating-linear-gradient(0deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px),
      repeating-linear-gradient(90deg,var(--gold) 0,var(--gold) 1px,transparent 1px,transparent 88px);
  }
  .thanks-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 18px;
  }
  .thanks-copy {
    font-size: 15.5px;
    color: #6b7280;
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.82;
  }
  .thanks-progress {
    max-width: 460px;
    margin: 0 auto 40px;
  }
  .thanks-progress-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
  }
  .thanks-progress-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .thanks-progress-step {
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
  }
  .thanks-progress-track {
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
  }
  .thanks-progress-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg,var(--gold),#f4d58d);
    border-radius: inherit;
  }
  .thanks-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 40px;
    text-align: left;
  }
  .thanks-step {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(187,143,55,.14);
    border-radius: 16px;
    padding: 18px;
  }
  .thanks-step-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 10px;
  }
  .thanks-step-copy {
    font-size: 13px;
    color: var(--dark);
    line-height: 1.7;
  }
  .thanks-step-time {
    margin-top: 10px;
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .1em;
  }
  .thanks-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
  }
  .thanks-share {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .thanks-chip {
    border: 1px solid rgba(187,143,55,.18);
    background: rgba(255,255,255,.02);
    color: #9ca3af;
    border-radius: 999px;
    font-size: 11px;
    padding: 8px 14px;
    text-decoration: none;
    transition: color .2s, border-color .2s, background .2s;
  }
  .thanks-chip:hover {
    color: #d4a843;
    border-color: rgba(187,143,55,.4);
    background: rgba(187,143,55,.08);
  }

  @media (max-width: 980px) {
    .thanks-steps { grid-template-columns: 1fr; }
  }


  
