 /* ===== CSS VARIABLES ===== */
    :root {
      --gold: #C9A84C;
      --gold-light: #E8C97A;
      --gold-dark: #9A7A2E;
      --navy: #0D1B2A;
      --navy-mid: #152236;
      --navy-light: #1E3350;
      --charcoal: #1A1A1A;
      --off-white: #F5F0E8;
      --cream: #FAF7F2;
      --text-light: #D4C9B0;
      --text-muted: #8A8070;
      --white: #FFFFFF;
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-sans: 'Montserrat', sans-serif;
      --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.25);
      --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: var(--font-sans);
      background-color: var(--charcoal);
      color: var(--off-white);
      overflow-x: hidden;
      line-height: 1.6;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* ===== UTILITY ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
    .gold-text { color: var(--gold); }
    .serif { font-family: var(--font-serif); }
    .section-label {
      font-family: var(--font-sans);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .section-label::before {
      content: '';
      display: inline-block;
      width: 40px;
      height: 1px;
      background: var(--gold);
    }
    .section-title {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 600;
      line-height: 1.2;
      color: var(--white);
    }
    .section-title span { color: var(--gold); font-style: italic; }
    .divider-gold {
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin: 1.5rem 0;
    }

    /* ===== BUTTONS ===== */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: linear-gradient(135deg, var(--gold), var(--gold-dark));
      color: var(--navy);
      font-family: var(--font-sans);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 1rem 2.5rem;
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
      transition: var(--transition);
    }
    .btn-primary:hover::before { left: 100%; }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-gold);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: transparent;
      color: var(--gold);
      font-family: var(--font-sans);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.9rem 2rem;
      border: 1px solid var(--gold);
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-outline:hover {
      background: rgba(201, 168, 76, 0.1);
      transform: translateY(-2px);
    }

    /* ===== NAVBAR ===== */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1.5rem 0;
      transition: var(--transition);
    }
    #navbar.scrolled {
      background: rgba(13, 27, 42, 0.97);
      backdrop-filter: blur(20px);
      padding: 1rem 0;
      border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.05em;
    }
    .nav-logo span { color: var(--gold); }
    .nav-logo small {
      display: block;
      font-family: var(--font-sans);
      font-size: 0.55rem;
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: -2px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
    }
    .nav-links a {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-light);
      transition: var(--transition);
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: var(--transition);
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      font-size: 0.7rem !important;
      font-weight: 700 !important;
      color: var(--gold) !important;
      border: 1px solid var(--gold);
      padding: 0.6rem 1.4rem;
      transition: var(--transition) !important;
    }
    .nav-cta:hover {
      background: var(--gold) !important;
      color: var(--navy) !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 5px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--gold);
      transition: var(--transition);
    }

    /* ===== HERO SECTION ===== */
    #hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--navy);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('law_office_bg.png');
      background-size: cover;
      background-position: center;
      opacity: 0.15;
      transform: scale(1.05);
      animation: slowZoom 20s ease-in-out infinite alternate;
    }
    @keyframes slowZoom {
      from { transform: scale(1.05); }
      to { transform: scale(1.12); }
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(13, 27, 42, 0.98) 0%,
        rgba(13, 27, 42, 0.85) 50%,
        rgba(13, 27, 42, 0.6) 100%
      );
    }
    .hero-particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0;
      animation: floatParticle var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
    }
    @keyframes floatParticle {
      0% { opacity: 0; transform: translateY(100vh) translateX(0); }
      10% { opacity: 0.6; }
      90% { opacity: 0.3; }
      100% { opacity: 0; transform: translateY(-10vh) translateX(var(--drift, 20px)); }
    }
    .hero-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      min-height: 100vh;
      padding: 8rem 0 4rem;
    }
    .hero-text { max-width: 580px; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(201, 168, 76, 0.1);
      border: 1px solid rgba(201, 168, 76, 0.3);
      padding: 0.5rem 1.2rem;
      margin-bottom: 2rem;
    }
    .hero-badge span {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .hero-badge i { color: var(--gold); font-size: 0.7rem; }
    .hero-title {
      font-family: var(--font-serif);
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      font-weight: 600;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 1.5rem;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
      display: block;
    }
    .hero-subtitle {
      font-size: 1rem;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 2.5rem;
      max-width: 480px;
    }
    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }
    .hero-stats {
      display: flex;
      gap: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(201, 168, 76, 0.2);
    }
    .stat-item { text-align: left; }
    .stat-number {
      font-family: var(--font-serif);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      display: block;
    }
    .stat-label {
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 0.3rem;
    }
    .hero-image-wrap {
      position: relative;
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
    }
    .hero-img-frame {
      position: relative;
      width: 100%;
      max-width: 480px;
    }
    .hero-img-frame::before {
      content: '';
      position: absolute;
      top: -20px; right: -20px;
      width: 100%; height: 100%;
      border: 1px solid rgba(201, 168, 76, 0.3);
      z-index: 0;
      transition: var(--transition);
    }
    .hero-img-frame:hover::before {
      top: -12px; right: -12px;
    }
    .hero-img-frame img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 600px;
      object-fit: cover;
      object-position: top center;
      filter: brightness(0.95) contrast(1.05);
    }
    .hero-img-badge {
      position: absolute;
      bottom: 2rem;
      left: -2rem;
      z-index: 3;
      background: var(--navy);
      border: 1px solid var(--gold);
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .hero-img-badge i { color: var(--gold); font-size: 1.5rem; }
    .hero-img-badge-text strong {
      display: block;
      font-family: var(--font-serif);
      font-size: 1.1rem;
      color: var(--white);
    }
    .hero-img-badge-text span {
      font-size: 0.65rem;
      color: var(--text-muted);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .hero-scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0.6;
      animation: bounce 2s ease-in-out infinite;
    }
    .hero-scroll-indicator span {
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .hero-scroll-indicator i { color: var(--gold); font-size: 0.8rem; }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ===== TRUST BAR ===== */
    #trust-bar {
      background: rgba(201, 168, 76, 0.08);
      border-top: 1px solid rgba(201, 168, 76, 0.2);
      border-bottom: 1px solid rgba(201, 168, 76, 0.2);
      padding: 1.5rem 0;
    }
    .trust-items {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .trust-item i { color: var(--gold); font-size: 1rem; }
    .trust-item span {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-light);
    }
    .trust-divider {
      width: 1px;
      height: 20px;
      background: rgba(201, 168, 76, 0.3);
    }

    /* ===== ABOUT SECTION ===== */
    #about {
      padding: 7rem 0;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    #about::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 40%;
      height: 100%;
      background: url('marble_bg.png') center/cover;
      opacity: 0.04;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-main {
      width: 100%;
      height: 500px;
      object-fit: cover;
      object-position: center top;
    }
    .about-img-accent {
      position: absolute;
      bottom: -2rem;
      right: -2rem;
      width: 200px;
      height: 200px;
      object-fit: cover;
      border: 4px solid var(--navy);
    }
    .about-gold-line {
      position: absolute;
      top: 2rem; left: -1rem;
      width: 4px;
      height: 60%;
      background: linear-gradient(180deg, var(--gold), transparent);
    }
    .about-text p {
      font-size: 0.95rem;
      font-weight: 300;
      color: var(--text-light);
      line-height: 1.9;
      margin-bottom: 1.2rem;
    }
    .about-text p strong { color: var(--gold); font-weight: 600; }
    .about-credentials {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin: 2rem 0;
    }
    .credential-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.75rem 1rem;
      background: rgba(201, 168, 76, 0.05);
      border-left: 2px solid var(--gold);
    }
    .credential-item i { color: var(--gold); font-size: 0.9rem; width: 16px; }
    .credential-item span {
      font-size: 0.82rem;
      color: var(--text-light);
    }

    /* ===== SERVICES SECTION ===== */
    #services {
      padding: 7rem 0;
      background: var(--charcoal);
      position: relative;
    }
    .services-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 4rem;
    }
    .services-header .section-label { justify-content: center; }
    .services-header .section-label::before { display: none; }
    .services-header .section-label::after {
      content: '';
      display: inline-block;
      width: 40px;
      height: 1px;
      background: var(--gold);
    }
    .services-header p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-top: 1rem;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .service-card {
      background: var(--navy-mid);
      padding: 3rem 2.5rem;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
      cursor: default;
    }
    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 3px;
      background: linear-gradient(90deg, var(--gold), transparent);
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--transition);
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover { background: var(--navy-light); transform: translateY(-4px); }
    .service-card-icon {
      width: 60px;
      height: 60px;
      background: rgba(201, 168, 76, 0.1);
      border: 1px solid rgba(201, 168, 76, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: var(--transition);
    }
    .service-card:hover .service-card-icon {
      background: rgba(201, 168, 76, 0.2);
      border-color: var(--gold);
    }
    .service-card-icon i { color: var(--gold); font-size: 1.4rem; }
    .service-card-number {
      position: absolute;
      top: 1.5rem; right: 2rem;
      font-family: var(--font-serif);
      font-size: 4rem;
      font-weight: 700;
      color: rgba(201, 168, 76, 0.06);
      line-height: 1;
    }
    .service-card h3 {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 1rem;
    }
    .service-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    .service-tag {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(201, 168, 76, 0.08);
      border: 1px solid rgba(201, 168, 76, 0.2);
      padding: 0.3rem 0.8rem;
    }
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      transition: var(--transition);
    }
    .service-link i { transition: var(--transition); }
    .service-link:hover i { transform: translateX(4px); }

    /* ===== PROCESS SECTION ===== */
    #process {
      padding: 7rem 0;
      background: var(--navy);
      position: relative;
    }
    .process-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 5rem;
    }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: calc(12.5% + 20px);
      right: calc(12.5% + 20px);
      height: 1px;
      background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.3), var(--gold));
    }
    .process-step {
      text-align: center;
      padding: 0 1.5rem;
      position: relative;
    }
    .step-number-wrap {
      width: 80px;
      height: 80px;
      background: var(--navy-mid);
      border: 1px solid rgba(201, 168, 76, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      position: relative;
      z-index: 1;
      transition: var(--transition);
    }
    .process-step:hover .step-number-wrap {
      background: rgba(201, 168, 76, 0.1);
      border-color: var(--gold);
    }
    .step-number {
      font-family: var(--font-serif);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold);
    }
    .process-step h4 {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
    .process-step p {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ===== TESTIMONIALS ===== */
    #testimonials {
      padding: 7rem 0;
      background: var(--charcoal);
      position: relative;
      overflow: hidden;
    }
    #testimonials::before {
      content: '"';
      position: absolute;
      top: -2rem;
      left: 5%;
      font-family: var(--font-serif);
      font-size: 25rem;
      color: rgba(201, 168, 76, 0.03);
      line-height: 1;
      pointer-events: none;
    }
    .testimonials-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 4rem;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .testimonial-card {
      background: var(--navy-mid);
      padding: 2.5rem;
      position: relative;
      border-top: 2px solid transparent;
      transition: var(--transition);
    }
    .testimonial-card:hover { border-top-color: var(--gold); transform: translateY(-4px); }
    .testimonial-stars {
      display: flex;
      gap: 0.25rem;
      margin-bottom: 1.5rem;
    }
    .testimonial-stars i { color: var(--gold); font-size: 0.85rem; }
    .testimonial-text {
      font-family: var(--font-serif);
      font-size: 1.05rem;
      font-style: italic;
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 2rem;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-serif);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      flex-shrink: 0;
    }
    .testimonial-name {
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--white);
    }
    .testimonial-role {
      font-size: 0.72rem;
      color: var(--text-muted);
      margin-top: 0.2rem;
    }

    /* ===== CONTENT / BLOG ===== */
    #content {
      padding: 7rem 0;
      background: var(--navy);
    }
    .content-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 3rem;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .content-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .content-card {
      background: var(--navy-mid);
      overflow: hidden;
      transition: var(--transition);
      cursor: pointer;
    }
    .content-card:hover { transform: translateY(-4px); }
    .content-card-img {
      height: 200px;
      background: var(--navy-light);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .content-card-img i {
      font-size: 3rem;
      color: rgba(201, 168, 76, 0.3);
      transition: var(--transition);
    }
    .content-card:hover .content-card-img i { color: var(--gold); transform: scale(1.1); }
    .content-card-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(13,27,42,0.8) 100%);
    }
    .content-card-category {
      position: absolute;
      top: 1rem; left: 1rem;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--navy);
      background: var(--gold);
      padding: 0.3rem 0.8rem;
    }
    .content-card-body { padding: 1.75rem; }
    .content-card-date {
      font-size: 0.65rem;
      color: var(--text-muted);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    .content-card h4 {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.4;
      margin-bottom: 0.75rem;
      transition: var(--transition);
    }
    .content-card:hover h4 { color: var(--gold); }
    .content-card p {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ===== CTA SECTION ===== */
    #cta {
      padding: 7rem 0;
      background: var(--charcoal);
      position: relative;
      overflow: hidden;
    }
    .cta-bg {
      position: absolute;
      inset: 0;
      background-image: url('marble_bg.png');
      background-size: cover;
      background-position: center;
      opacity: 0.08;
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }
    .cta-inner .section-label { justify-content: center; }
    .cta-inner .section-label::before { display: none; }
    .cta-inner .section-label::after {
      content: '';
      display: inline-block;
      width: 40px;
      height: 1px;
      background: var(--gold);
    }
    .cta-title {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 600;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    .cta-title em { font-style: italic; color: var(--gold); }
    .cta-text {
      font-size: 1rem;
      color: var(--text-light);
      line-height: 1.8;
      margin-bottom: 3rem;
    }
    .cta-form {
      display: flex;
      gap: 0;
      max-width: 500px;
      margin: 0 auto 2rem;
    }
    .cta-form input {
      flex: 1;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(201, 168, 76, 0.3);
      border-right: none;
      padding: 1rem 1.5rem;
      font-family: var(--font-sans);
      font-size: 0.85rem;
      color: var(--white);
      outline: none;
      transition: var(--transition);
    }
    .cta-form input::placeholder { color: var(--text-muted); }
    .cta-form input:focus { border-color: var(--gold); background: rgba(201, 168, 76, 0.05); }
    .cta-form button {
      background: var(--gold);
      border: none;
      padding: 1rem 1.75rem;
      color: var(--navy);
      font-family: var(--font-sans);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      transition: var(--transition);
      white-space: nowrap;
    }
    .cta-form button:hover { background: var(--gold-light); }
    .cta-guarantee {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-size: 0.72rem;
      color: var(--text-muted);
    }
    .cta-guarantee i { color: var(--gold); }
    .cta-channels {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }
    .cta-channel {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.78rem;
      color: var(--text-light);
      transition: var(--transition);
    }
    .cta-channel:hover { color: var(--gold); }
    .cta-channel i { color: var(--gold); font-size: 1rem; }

    /* ===== FAQ SECTION ===== */
    #faq {
      padding: 7rem 0;
      background: var(--navy);
    }
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .faq-list { display: flex; flex-direction: column; gap: 1px; }
    .faq-item {
      background: var(--navy-mid);
      overflow: hidden;
    }
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 2rem;
      cursor: pointer;
      transition: var(--transition);
      gap: 1rem;
    }
    .faq-question:hover { background: var(--navy-light); }
    .faq-question.active { background: rgba(201, 168, 76, 0.08); }
    .faq-question h4 {
      font-family: var(--font-serif);
      font-size: 1rem;
      font-weight: 500;
      color: var(--white);
      line-height: 1.4;
    }
    .faq-icon {
      width: 28px;
      height: 28px;
      border: 1px solid rgba(201, 168, 76, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: var(--transition);
    }
    .faq-question.active .faq-icon {
      background: var(--gold);
      border-color: var(--gold);
    }
    .faq-icon i {
      color: var(--gold);
      font-size: 0.7rem;
      transition: var(--transition);
    }
    .faq-question.active .faq-icon i { color: var(--navy); transform: rotate(45deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }
    .faq-answer.open { max-height: 300px; }
    .faq-answer p {
      padding: 0 2rem 1.5rem;
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.8;
    }
    .faq-cta-box {
      background: rgba(201, 168, 76, 0.06);
      border: 1px solid rgba(201, 168, 76, 0.2);
      padding: 3rem;
    }
    .faq-cta-box h3 {
      font-family: var(--font-serif);
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 1rem;
    }
    .faq-cta-box h3 em { font-style: italic; color: var(--gold); }
    .faq-cta-box p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 2rem;
    }
    .faq-contact-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
    .faq-contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.85rem;
      color: var(--text-light);
    }
    .faq-contact-item i { color: var(--gold); width: 16px; }

    /* ===== FOOTER ===== */
    footer {
      background: var(--navy);
      border-top: 1px solid rgba(201, 168, 76, 0.15);
      padding: 4rem 0 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    .footer-brand .nav-logo { margin-bottom: 1rem; }
    .footer-brand p {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    .footer-social {
      display: flex;
      gap: 0.75rem;
    }
    .social-link {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(201, 168, 76, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 0.85rem;
      transition: var(--transition);
    }
    .social-link:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(201, 168, 76, 0.1);
    }
    .footer-col h5 {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }
    .footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
    .footer-links a {
      font-size: 0.82rem;
      color: var(--text-muted);
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-links a:hover { color: var(--gold); padding-left: 4px; }
    .footer-links a::before {
      content: '—';
      font-size: 0.6rem;
      color: var(--gold);
      opacity: 0.5;
    }
    .footer-bottom {
      border-top: 1px solid rgba(201, 168, 76, 0.1);
      padding-top: 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-bottom p {
      font-size: 0.72rem;
      color: var(--text-muted);
    }
    .footer-bottom a { color: var(--gold); }
    .footer-oab {
      font-size: 0.72rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-oab i { color: var(--gold); }

    /* ===== WHATSAPP FLOAT ===== */
    .whatsapp-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 999;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: #25D366;
      color: white;
      padding: 0.9rem 1.5rem 0.9rem 1rem;
      border-radius: 50px;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      font-size: 0.78rem;
      font-weight: 600;
      transition: var(--transition);
      animation: pulse-wa 3s ease-in-out infinite;
    }
    .whatsapp-float:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    }
    .whatsapp-float i { font-size: 1.3rem; }
    @keyframes pulse-wa {
      0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
      50% { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7); }
    }

    /* ===== MOBILE NAV ===== */
    .mobile-nav {
      position: fixed;
      top: 0; right: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background: var(--navy);
      border-left: 1px solid rgba(201, 168, 76, 0.2);
      z-index: 1001;
      padding: 5rem 2rem 2rem;
      transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .mobile-nav.open { right: 0; }
    .mobile-nav a {
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-light);
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(201, 168, 76, 0.1);
      transition: var(--transition);
    }
    .mobile-nav a:hover { color: var(--gold); padding-left: 8px; }
    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .mobile-overlay.open { opacity: 1; pointer-events: all; }
    .mobile-close {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      background: none;
      border: none;
      color: var(--gold);
      font-size: 1.2rem;
      cursor: pointer;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .hero-content { grid-template-columns: 1fr; gap: 3rem; padding-top: 7rem; }
      .hero-image-wrap { justify-content: center; }
      .hero-img-frame { max-width: 380px; }
      .hero-img-frame img { height: 480px; }
      .about-grid { grid-template-columns: 1fr; gap: 3rem; }
      .about-img-wrap { max-width: 500px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
      .process-steps::before { display: none; }
      .testimonials-grid { grid-template-columns: 1fr 1fr; }
      .content-grid { grid-template-columns: 1fr 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .hero-title { font-size: 2.4rem; }
      .hero-stats { gap: 1.5rem; }
      .services-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .content-grid { grid-template-columns: 1fr; }
      .trust-items { gap: 1.5rem; }
      .trust-divider { display: none; }
      .cta-form { flex-direction: column; }
      .cta-form input { border-right: 1px solid rgba(201, 168, 76, 0.3); border-bottom: none; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .hero-img-badge { left: 0; bottom: 1rem; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 1.25rem; }
      .hero-ctas { flex-direction: column; align-items: flex-start; }
      .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
      .process-steps { grid-template-columns: 1fr; }
    }

    /* ===== ANIMATIONS ===== */
    .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-in { opacity: 0; transition: opacity 0.8s ease; }
    .fade-in.visible { opacity: 1; }
    .slide-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .slide-left.visible { opacity: 1; transform: translateX(0); }
    .slide-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .slide-right.visible { opacity: 1; transform: translateX(0); }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }