
    /* Global Styles & CSS Variables */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #0a0a0a;
      --deep: #111111;
      --card: #181818;
      --card-hover: #1e1e1e;
      --border: rgba(212, 175, 55, 0.25);
      --border-light: rgba(212, 175, 55, 0.1);
      --gold: #D4AF37;
      --gold-light: #f0d060;
      --gold-dim: rgba(212, 175, 55, 0.15);
      --text: #e8e4dc;
      --muted: #888880;
      --white: #f9f6f0;
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'Montserrat', sans-serif;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      background: var(--black);
    }

    body {
      background: var(--black);
      color: var(--text);
      font-family: var(--sans);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
      width: 100%;
      max-width: 100vw;
    }

    body.menu-open {
      overflow: hidden;
    }

    /* ── Navigation Bar with Glassmorphism Effect ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 15px 4vw 6px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(10,10,10,0.85);
      backdrop-filter: blur(16px);
      border-bottom: 0.5px solid var(--border);
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-family: var(--serif);
      font-size: 1.6rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      color: var(--gold);
      text-decoration: none;
    }

    .logo img {
      display: block;
      height: 75px;
      width: auto;
    }

    .logo-caption {
      display: inline-block;
      font-family: var(--serif);
      font-size: 0.75rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-left: 0.85rem;
      white-space: nowrap;
    }

    .nav-links { display: flex; gap: 2.5rem; list-style: none; }

    .nav-links a {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      background: transparent;
      border: 0.5px solid var(--gold);
      color: var(--gold);
      padding: 0.6rem 1.4rem;
      border-radius: 4px;
      text-decoration: none;
      transition: all 0.3s;
    }
    .nav-cta:hover { background: var(--gold); color: var(--black); }

    /* Mobile Menu Button */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    .mobile-menu-btn span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gold);
      margin: 5px 0;
      transition: 0.3s;
    }

    /* ── Hero Section ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 8rem 5vw 5rem;
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.98) 100%);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(212,175,55,0.14), transparent 20%),
        radial-gradient(circle at 80% 25%, rgba(255,255,255,0.05), transparent 18%),
        linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      max-width: 840px;
      z-index: 1;
    }

    .hero-eyebrow {
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.75rem;
      opacity: 0.9;
    }

    .hero-h1 {
      font-family: var(--serif);
      font-size: clamp(3.4rem, 6vw, 5.8rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 1.75rem;
      max-width: 10ch;
    }

    .hero-h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-sub {
      font-size: 1rem;
      color: rgba(232,228,220,0.9);
      max-width: 640px;
      margin-bottom: 3rem;
      line-height: 1.95;
      letter-spacing: 0.03em;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
      margin-bottom: 3rem;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--gold);
      color: var(--black);
      font-family: var(--sans);
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-weight: 700;
      padding: 1rem 2.75rem;
      text-decoration: none;
      border-radius: 999px;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      background: #f2d75f;
      transform: translateY(-2px);
      box-shadow: 0 16px 35px rgba(212,175,55,0.22);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: var(--gold);
      font-family: var(--sans);
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 1rem 2.5rem;
      text-decoration: none;
      border-radius: 999px;
      border: 1px solid rgba(212,175,55,0.8);
      transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
      cursor: pointer;
    }

    .btn-ghost:hover {
      background: rgba(212,175,55,0.09);
      color: var(--white);
      border-color: var(--gold);
    }

    .hero-stat-row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 0;
      justify-content: flex-start;
    }

    .hero-stat {
      flex: 1;
      min-width: 180px;
      padding: 1.75rem 1.5rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(212,175,55,0.12);
      border-radius: 1.25rem;
      transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .hero-stat:hover {
      transform: translateY(-2px);
      border-color: rgba(212,175,55,0.28);
      background: rgba(255,255,255,0.06);
    }

    .hero-stat-num {
      font-family: var(--serif);
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 0.25rem;
      line-height: 1.6;
    }

    .btn-outline:hover {
      background: var(--gold);
      color: var(--black);
    }

    /* ── Reusable Typography Styles ── */
    .section-eyebrow {
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(2.4rem, 6vw, 3.6rem);
      font-weight: 300;
      line-height: 1.15;
      color: var(--white);
    }
    .section-title em { font-style: italic; color: var(--gold); }

    .section-body {
      font-size: 0.9rem;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.8;
    }

    /* ── Scroll-Triggered Animation Classes ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Services Section ── */
    .services-section {
      padding: 8rem 5vw;
      background: var(--deep);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
    }

    .service-card {
      background: var(--card);
      border: 0.5px solid var(--border-light);
      padding: 2.5rem;
      border-radius: 8px;
      transition: all 0.4s;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.4s;
    }

    .service-card:hover {
      background: var(--card-hover);
      border-color: var(--border);
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-icon {
      width: 48px;
      height: 48px;
      background: var(--gold-dim);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .service-icon svg {
      width: 24px;
      height: 24px;
      fill: var(--gold);
    }

    .service-card h3 {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 1rem;
    }

    .service-card p {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.8;
    }

    .posts-section {
      padding: 8rem 5vw;
      background: radial-gradient(circle at top right, rgba(212,175,55,0.08), transparent 35%), var(--black);
    }

    .posts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .post-card {
      background: var(--card);
      border: 0.5px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 320px;
      padding: 0;
      transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    }

    .post-card:hover {
      transform: translateY(-4px);
      border-color: var(--border);
      background: var(--card-hover);
    }

    .post-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .post-card-content {
      padding: 1.75rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .post-title {
      margin: 0;
      font-family: var(--serif);
      font-size: 1.55rem;
      line-height: 1.2;
      color: var(--white);
    }

    .post-content {
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
      flex: 1;
    }

    .post-link {
      color: var(--gold);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      align-self: flex-start;
      transition: color 0.3s ease;
    }

    .post-link:hover {
      color: var(--gold-light);
    }

    .post-error {
      color: var(--white);
      background: rgba(212,175,55,0.12);
      border: 0.5px solid rgba(212,175,55,0.2);
      border-radius: 16px;
      padding: 1rem 1.25rem;
      margin-top: 1.5rem;
    }

    /* ── Results Section ── */
    .results-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .results-left,
    .results-right {
      padding: 8rem 5vw;
    }

    .results-left {
      background: var(--deep);
    }

    .results-right {
      background: var(--card);
      border-left: 0.5px solid var(--border-light);
    }

    .results-metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .result-card {
      background: #111;
      border: 0.5px solid var(--border-light);
      border-radius: 18px;
      padding: 2rem;
      transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    }

    .result-card:hover {
      transform: translateY(-3px);
      border-color: var(--gold);
    }

    .result-label {
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }

    .result-metric {
      font-family: var(--serif);
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 0.75rem;
    }

    .result-sub {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.8;
    }

    .result-impact-row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .impact-pill {
      background: rgba(212,175,55,0.08);
      color: var(--gold);
      border: 0.5px solid rgba(212,175,55,0.18);
      border-radius: 999px;
      padding: 0.85rem 1.25rem;
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .case-badge {
      display: inline-block;
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      background: var(--gold-dim);
      color: var(--gold);
      border: 0.5px solid var(--gold);
      padding: 0.5rem 1rem;
      margin-bottom: 2rem;
    }

    .case-highlights {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .highlight-item {
      background: #111;
      border: 0.5px solid var(--border-light);
      border-radius: 18px;
      padding: 1.75rem;
    }

    .highlight-label {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.75rem;
    }

    .highlight-value {
      font-family: var(--serif);
      font-size: 1.35rem;
      color: var(--white);
      line-height: 1.2;
    }

    .result-summary-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 2rem;
    }

    .summary-card {
      background: #111;
      border: 0.5px solid var(--border-light);
      border-radius: 18px;
      padding: 1.75rem;
    }

    .summary-value {
      font-family: var(--serif);
      font-size: 1.45rem;
      color: var(--gold);
      margin: 0.6rem 0;
      line-height: 1.2;
    }

    .summary-note {
      font-size: 0.75rem;
      color: var(--muted);
    }

    /* ── Features Section ── */
    .features-section {
      padding: 8rem 5vw;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-top: 4rem;
    }

    .feature-item {
      text-align: left;
    }

    .feature-number {
      font-family: var(--serif);
      font-size: 3rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .feature-item h4 {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.75rem;
    }

    .feature-item p {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.8;
    }

    /* ── Process Section ── */
    .process-section {
      padding: 8rem 5vw;
      background: var(--deep);
    }

    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 3rem;
      margin-top: 4rem;
      max-width: 800px;
    }

    .process-step {
      display: flex;
      gap: 2rem;
      align-items: flex-start;
    }

    .step-number {
      font-family: var(--serif);
      font-size: 3rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      min-width: 60px;
    }

    .step-content h4 {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.75rem;
    }

    .step-content p {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.8;
    }

    /* ── Testimonials Section ── */
    .testimonials-section {
      padding: 8rem 5vw;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
    }

    .testimonial-card {
      background: var(--card);
      border: 0.5px solid var(--border-light);
      padding: 2.5rem;
      border-radius: 8px;
      transition: all 0.3s;
    }

    .testimonial-card:hover {
      border-color: var(--border);
      background: var(--card-hover);
    }

    .testimonial-stars {
      color: var(--gold);
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      letter-spacing: 0.2em;
    }

    .testimonial-text {
      font-size: 0.85rem;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .author-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--gold-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--serif);
      font-size: 1.2rem;
      color: var(--gold);
    }

    .author-name {
      font-size: 0.85rem;
      color: var(--white);
      font-weight: 500;
    }

    .author-role {
      font-size: 0.7rem;
      color: var(--muted);
    }

    .testimonial-card:hover {
      border-color: var(--border);
      background: var(--card-hover);
    }

    .testimonial-stars {
      color: var(--gold);
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      letter-spacing: 0.2em;
    }

    .testimonial-text {
      font-size: 0.85rem;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .author-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--gold-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--serif);
      font-size: 1.2rem;
      color: var(--gold);
    }

    .author-name {
      font-size: 0.85rem;
      color: var(--white);
      font-weight: 500;
    }

    .author-role {
      font-size: 0.7rem;
      color: var(--muted);
    }

    /* ── Posts Section ── */
    .posts-section {
      padding: 8rem 5vw;
      max-width: 1280px;
      margin: 0 auto;
    }

    .posts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .post-card {
      background: var(--card);
      border: 0.5px solid rgba(255,255,255,0.08);
      border-radius: 18px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 320px;
      padding: 0;
      transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    }

    .post-card:hover {
      transform: translateY(-4px);
      border-color: var(--border);
      background: var(--card-hover);
    }

    .post-image {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 9;
      object-fit: cover;
      display: block;
      background: var(--deep);
      border-top-left-radius: 18px;
      border-top-right-radius: 18px;
    }

    .post-card-content {
      padding: 1.75rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .post-title {
      margin: 0;
      font-family: var(--serif);
      font-size: 1.55rem;
      line-height: 1.2;
      color: var(--white);
    }

    .post-content {
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
      flex: 1;
    }

    .post-link {
      color: var(--gold);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      align-self: flex-start;
      transition: color 0.3s ease;
    }

    .post-link:hover {
      color: var(--gold-light);
    }

    /* ── Insights / Latest Posts Section ── */
    .insights-section {
      padding: 8rem 5vw;
      background: linear-gradient(180deg, var(--black) 0%, rgba(17, 17, 17, 0.8) 100%);
      position: relative;
    }

    .section-header {
      margin-bottom: 3rem;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-header .section-eyebrow {
      display: block;
      margin-bottom: 0.75rem;
    }

    .section-header .section-title {
      margin: 0;
    }

    .insights-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
      margin-top: 4rem;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 1024px) {
      .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }
    }

    @media (max-width: 768px) {
      .insights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    .insight-card {
      background: var(--card);
      border: 0.5px solid var(--border-light);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }

    .insight-card:hover {
      border-color: var(--gold);
      background: var(--card-hover);
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(212,175,55,0.25);
    }

    .insight-image {
      width: 100%;
      height: 260px;
      overflow: hidden;
      background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .insight-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    }

    .insight-card:hover .insight-image img {
      transform: scale(1.1);
    }

    .insight-content {
      padding: 2.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .insight-content h3 {
      font-family: var(--serif);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--white);
      margin: 0 0 1rem 0;
      line-height: 1.5;
      letter-spacing: 0.02em;
    }

    .insight-content p {
      font-size: 0.95rem;
      color: var(--text);
      line-height: 1.8;
      margin: 0 0 1.5rem 0;
      flex-grow: 1;
    }

    .insight-date {
      font-size: 0.75rem;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin: 0 !important;
      font-weight: 600;
      display: block;
    }

    /* ── Trust / Platform Presence Section ── */
    .back-pic {
      padding: 8rem 5vw;
      background: radial-gradient(circle at top left, rgba(212,175,55,0.08), transparent 35%),
        linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.92) 100%);
    }

    .back-pic .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .back-pic .content {
      max-width: 640px;
      margin-bottom: 3rem;
    }

    .back-pic .control_all {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .back-pic .counter-container {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.75rem;
      background: rgba(255,255,255,0.03);
      border: 0.5px solid var(--border-light);
      border-radius: 18px;
      min-height: 130px;
    }

    .back-pic .clooted {
      display: flex;
      align-items: flex-end;
      gap: 0.35rem;
      font-family: var(--serif);
      color: var(--gold);
    }

    .back-pic .counter {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
    }

    .back-pic .clooted h2 {
      margin: 0;
      font-size: 1.8rem;
      color: var(--white);
      line-height: 1;
    }

    .back-pic .counter-container span {
      display: block;
      font-size: 0.86rem;
      color: var(--muted);
      line-height: 1.7;
    }

    .back-pic .counter-container span br {
      display: inline;
    }

    /* ── Pricing Section ── */
    .pricing-section {
      padding: 8rem 5vw;
      background: var(--deep);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
    }

    .pricing-card {
      background: var(--card);
      border: 0.5px solid var(--border-light);
      padding: 3rem 2.5rem;
      border-radius: 8px;
      text-align: center;
      transition: all 0.4s;
      position: relative;
    }

    .pricing-card.featured {
      border-color: var(--gold);
      background: linear-gradient(135deg, var(--card) 0%, rgba(212,175,55,0.05) 100%);
    }

    .pricing-card.featured::before {
      content: 'Most Popular';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--black);
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 0.3rem 1.5rem;
      border-radius: 20px;
    }

    .pricing-card h3 {
      font-family: var(--serif);
      font-size: 1.8rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 1rem;
    }

    .pricing-amount {
      font-family: var(--serif);
      font-size: 3.5rem;
      font-weight: 300;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }

    .pricing-period {
      font-size: 0.7rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .pricing-features {
      list-style: none;
      margin: 2.5rem 0;
      text-align: left;
    }

    .pricing-features li {
      padding: 0.75rem 0;
      border-bottom: 0.5px solid rgba(255,255,255,0.05);
      font-size: 0.8rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .pricing-features li::before {
      content: '✓';
      color: var(--gold);
      font-weight: 600;
    }

    /* ── FAQ Section ── */
    .faq-section {
      padding: 8rem 5vw;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
    }

    .faq-item {
      border-bottom: 0.5px solid var(--border-light);
      padding-bottom: 1.5rem;
    }

    .faq-question {
      font-family: var(--serif);
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.75rem;
      cursor: pointer;
    }

    .faq-answer {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.8;
    }

    /* ── CTA / Contact Section ── */
    .cta-section {
      text-align: center;
      position: relative;
      overflow: hidden;
      padding: 8rem 5vw;
      background: var(--deep);
    }

    .cta-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 70% at 50% 50%, 
    rgba(212,175,55,0.08) 0%, transparent 65%);
    }

    .cta-section .section-title { margin: 0 auto 1.5rem; }
    .cta-section .section-body { margin: 0 auto 3rem; text-align: center; }

    .cta-form {
      display: flex; max-width: 480px; margin: 0 auto 1.5rem;
    }

    .cta-form input {
      flex: 1;
      background: var(--card);
      border: 0.5px solid var(--border);
      border-right: none;
      color: var(--text);
      font-family: var(--sans);
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      padding: 1rem 1.5rem;
      outline: none;
      transition: border-color 0.3s;
    }
    .cta-form input::placeholder { color: var(--muted); }
    .cta-form input:focus { border-color: var(--gold); }

    .cta-form button {
      background: var(--gold);
      color: var(--black);
      border: none;
      font-family: var(--sans);
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-weight: 600;
      padding: 1rem 2rem;
      cursor: pointer;
      transition: background 0.3s;
    }
    .cta-form button:hover { background: var(--gold-light); }

    .cta-note {
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      color: var(--muted);
    }

    /* ── Footer ── */
    footer {
      padding: 5rem 5vw 3rem;
      border-top: 0.5px solid var(--border);
      background: var(--black);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand .logo-text {
      font-family: var(--serif);
      font-size: 1.8rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }

    .footer-brand p {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.8;
    }

    .footer-column h4 {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 0.75rem;
    }

    .footer-column ul li a {
      font-size: 0.8rem;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-column ul li a:hover {
      color: var(--gold);
    }

    .footer-column ul li a .location-icon {
      width: 14px;
      height: 14px;
      margin-right: 0.5rem;
      vertical-align: middle;
      fill: currentColor;
      display: inline-block;
    }

    .footer-bottom {
      border-top: 0.5px solid var(--border-light);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.7rem;
      color: var(--muted);
    }

    .social-links {
      display: flex;
      gap: 1.5rem;
    }

    .social-links a {
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s;
    }

    .social-links a:hover {
      color: var(--gold);
    }

    .contact-icon-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      color: var(--muted);
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
    }

    .contact-icon-link svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .contact-icon-link:hover {
      color: var(--gold);
      background: rgba(255, 255, 255, 0.12);
    }

    /* ── Mobile Responsiveness ── */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(18px);
        flex-direction: column;
        padding: 2rem 5vw;
        gap: 1.5rem;
        z-index: 99;
        transform: translateY(-20px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
      }

      .nav-links.open,
      .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
      }

      #hamburger {
        display: flex !important;
      }

      .ham-line {
        width: 24px;
        height: 2px;
        background: var(--text);
        transition: all 0.3s ease;
        transform-origin: center;
      }

      .nav-links.open ~ div .ham-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
      }

      .nav-links.open ~ div .ham-line:nth-child(2) {
        opacity: 0;
      }

      .nav-links.open ~ div .ham-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }

      .logo-caption {
        display: none;
      }

      .hero {
        padding: 9rem 5vw 4rem;
      }

      .hero-inner {
        max-width: 100%;
      }

      .hero-h1 {
        font-size: clamp(2.5rem, 10vw, 3.8rem);
        max-width: 100%;
      }

      .hero-sub {
        margin-bottom: 2rem;
        font-size: 0.95rem;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-primary,
      .btn-ghost {
        width: 100%;
        justify-content: center;
      }

      .hero-stat-row {
        flex-direction: column;
        gap: 1rem;
      }

      .hero-stat {
        min-width: unset;
      }

      .services-grid,
      .pricing-grid,
      .testimonials-grid,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .service-card {
        padding: 1.75rem 1.5rem;
      }

      .results-section {
        grid-template-columns: 1fr;
      }

      .results-left,
      .results-right {
        padding: 5rem 5vw;
      }

      .results-metrics,
      .case-highlights,
      .result-summary-grid {
        grid-template-columns: 1fr;
      }

      .result-impact-row {
        flex-direction: column;
      }

      .result-card,
      .summary-card,
      .highlight-item {
        width: 100%;
      }

      .process-step {
        flex-direction: column;
        gap: 1rem;
      }

      .back-pic {
        padding: 5rem 5vw;
      }

      .back-pic .control_all {
        grid-template-columns: 1fr;
      }

      .back-pic .counter-container {
        flex-direction: column;
        align-items: flex-start;
      }

      .back-pic .clooted {
        width: 100%;
        justify-content: flex-start;
      }

      .back-pic .clooted h2 {
        font-size: 1.6rem;
      }

      .cta-section {
        padding: 5rem 5vw;
      }

      .cta-form {
        flex-direction: column;
        max-width: 100%;
      }

      .cta-form input,
      .cta-form button {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding: 8rem 4vw 3rem;
      }

      .hero-h1 {
        font-size: clamp(2.3rem, 12vw, 3rem);
      }

      .hero-sub {
        font-size: 0.95rem;
        max-width: 100%;
      }

      .hero-actions {
        gap: 0.8rem;
      }

      .hero-stat-row {
        gap: 0.8rem;
      }

      .hero-stat {
        padding: 1.5rem 1.25rem;
      }

      .service-card {
        padding: 1.5rem 1rem;
      }

      .section-title {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
      }

      .footer-grid {
        gap: 1.5rem;
      }
    }
    .wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse-wa 2.5s ease infinite;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
@keyframes pulse-wa {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}
.wa-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}
.scroll-top-button {
    position: fixed;
    bottom: 8rem;
    right: 2rem;
    z-index: 220;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(212, 175, 55, 0.24);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    cursor: pointer;
    outline: none;
    touch-action: manipulation;
}

.scroll-top-button.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.scroll-top-button svg {
    width: 22px;
    height: 22px;
    fill: var(--black);
}

.scroll-top-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(212, 175, 55, 0.32);
}
 /* ── MARQUEE ── */
  .marquee-section {
    padding: 2.5rem 0;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    overflow: hidden;
    background: var(--deep);
  }

  .marquee-track {
    display: flex;
    gap: 4rem;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
    width: max-content;
    will-change: transform;
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  .marquee-item {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex; align-items: center; gap: 1.5rem;
  }

  .marquee-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }