    :root {
      --navy: #0F1E2E;
      --navy-dark: #0A1520;
      --navy-light: #1a2d3d;
      --gold: #C9A96E;
      --gold-dark: #B08D55;
      --rich-gold: #D4B87A;
      --ink: #1A1A1A;
      --ink-light: #2a2a2a;
      --paper: #fafafa;
      --paper-dark: #f0f0f0;
      --text: #5A5A5A;
      --text-light: #5A5A5A;
      --white: #fff;
      --border: #e5e5e5;
      --success: #2d7d46;
      --rust: #B85C3D;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      background: var(--paper);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', Georgia, serif;
      color: var(--ink);
      line-height: 1.2;
      font-weight: 700;
      text-wrap: balance;
    }

    a { color: inherit; text-decoration: none; }

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

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 36px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.02em;
      transition: all 0.2s ease;
      cursor: pointer;
      border: 2px solid transparent;
      min-height: 48px;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      border-color: var(--gold);
    }
    .btn-primary:hover {
      background: var(--rich-gold);
      border-color: var(--rich-gold);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(201,169,110,0.35);
    }

    .btn-secondary {
      background: transparent;
      color: var(--gold);
      border-color: var(--gold);
    }
    .btn-secondary:hover {
      background: var(--gold);
      color: var(--navy);
    }

    .btn-light {
      background: var(--white);
      color: var(--ink);
      border-color: var(--white);
    }
    .btn-light:hover {
      background: var(--paper);
    }

    /* Sticky Header */
    .header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: var(--navy);
      border-bottom: 1px solid rgba(201,169,110,0.15);
      transition: transform 0.3s ease;
    }

    .header.hidden { transform: translateY(-100%); }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--gold);
      letter-spacing: -0.02em;
    }
    .logo span { color: var(--rich-gold); }

    .header-cta {
      display: none;
    }

    .header-cta .btn {
      padding: 12px 24px;
      font-size: 0.9rem;
    }

    /* Mobile hamburger */
    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gold);
      transition: all 0.3s ease;
    }
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--navy);
      border-bottom: 1px solid rgba(201,169,110,0.15);
      padding: 24px;
      z-index: 999;
    }
    .mobile-menu.open {
      display: block;
    }
    .mobile-menu a {
      display: block;
      color: rgba(255,255,255,0.9);
      font-size: 1.05rem;
      font-weight: 500;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-menu a:last-child {
      border-bottom: none;
    }
    .mobile-menu .btn {
      display: block;
      text-align: center;
      margin-top: 16px;
      font-size: 1rem;
      padding: 16px;
    }

    /* Hero */
    .hero {
      padding: 150px 0 110px;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 720px;
    }

    .hero-with-photo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 48px;
    }

    .hero-photo {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 3px solid var(--gold);
      object-fit: cover;
      box-shadow: 0 8px 32px rgba(201,169,110,0.3);
      flex-shrink: 0;
    }

    @media (min-width: 768px) {
      .hero-with-photo {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 56px;
      }
      .hero-photo {
        width: 220px;
        height: 220px;
      }
    }

    .hero-name {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.9rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }

    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--rich-gold);
      margin-bottom: 28px;
    }
    .hero-label::before {
      content: '';
      width: 24px;
      height: 2px;
      background: var(--gold);
    }

    .hero h1 {
      font-size: clamp(2.4rem, 6vw, 4rem);
      margin-bottom: 28px;
      color: var(--white);
    }
    .hero h1 em {
      font-style: italic;
      color: var(--rich-gold);
    }

    .hero-sub {
      font-size: clamp(1.15rem, 2.2vw, 1.4rem);
      color: rgba(255,255,255,0.8);
      margin-bottom: 44px;
      max-width: 580px;
      line-height: 1.7;
    }

    .hero-ctas {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .hero-note {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.65);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-note svg {
      width: 18px;
      height: 18px;
      color: var(--success);
      flex-shrink: 0;
    }

    /* Trust Bar */
    .trust {
      background: var(--navy-dark);
      color: var(--white);
      padding: 52px 0;
      border-top: 1px solid rgba(201,169,110,0.1);
      border-bottom: 1px solid rgba(201,169,110,0.1);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      text-align: center;
    }

    .trust-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .trust-item .num {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .trust-item p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.75);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 500;
    }

    /* Sections */
    .section {
      padding: 110px 0;
    }

    .about { background: var(--paper); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 52px;
      align-items: center;
    }
    .about-photo img {
      width: 100%;
      max-width: 380px;
      border-radius: 12px;
      border: 3px solid var(--gold);
      box-shadow: 0 12px 40px rgba(201,169,110,0.25);
      margin: 0 auto;
      display: block;
    }
    .about-content h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      margin-bottom: 24px;
    }
    .about-content p {
      font-size: 1.1rem;
      color: var(--text);
      margin-bottom: 18px;
      line-height: 1.7;
    }
    .about-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 36px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
    }
    .about-stats div {
      text-align: center;
    }
    .about-stats strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      color: var(--navy);
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .about-stats span {
      font-size: 0.875rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-light);
      font-weight: 500;
    }
    @media (min-width: 768px) {
      .about-grid { grid-template-columns: 340px 1fr; gap: 64px; }
      .about-photo img { margin: 0; }
    }

    .process { background: var(--white); }

    .section-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 72px;
    }

    .section-label {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gold);
      margin-bottom: 18px;
    }

    .section-header h2 {
      font-size: clamp(2rem, 4.5vw, 3rem);
      margin-bottom: 18px;
    }

    .section-header p {
      color: var(--text-light);
      font-size: 1.15rem;
      line-height: 1.7;
    }

    /* Problem */
    .problem { background: var(--white); }

    .problem-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: start;
    }

    .problem-content h2 {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      margin-bottom: 28px;
    }

    .problem-content p {
      color: var(--text-light);
      margin-bottom: 22px;
      font-size: 1.125rem;
      line-height: 1.7;
    }

    .pain-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .pain-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 1.125rem;
      line-height: 1.6;
    }

    .pain-list li::before {
      content: '—';
      color: var(--gold);
      font-weight: 700;
      flex-shrink: 0;
    }

    .problem-visual {
      background: var(--navy);
      border-radius: 12px;
      padding: 48px;
      color: var(--white);
    }

    .problem-visual h3 {
      color: var(--gold);
      font-size: 1.4rem;
      margin-bottom: 24px;
    }

    .problem-visual ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .problem-visual li {
      font-size: 1.05rem;
      opacity: 0.95;
      padding-left: 28px;
      position: relative;
      line-height: 1.7;
    }

    .problem-visual li::before {
      content: '✕';
      position: absolute;
      left: 0;
      color: #e74c3c;
      font-weight: 700;
    }

    /* Vertical Cards */
    .verticals { background: var(--paper); }

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

    .card {
      background: var(--white);
      border-radius: 12px;
      padding: 48px 36px;
      border: 1px solid var(--border);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 48px rgba(0,0,0,0.08);
      border-color: var(--gold);
    }

    .card-icon {
      width: 52px;
      height: 52px;
      background: rgba(201,169,110,0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }
    .card-icon svg {
      width: 26px;
      height: 26px;
      color: var(--gold-dark);
    }

    .card h3 {
      font-size: 1.4rem;
      margin-bottom: 14px;
    }

    .card p {
      color: var(--text-light);
      font-size: 1.05rem;
      margin-bottom: 22px;
      line-height: 1.7;
    }

    .card-deliverables {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .card-deliverables li {
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 10px;
      line-height: 1.5;
    }

    .card-deliverables li::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .card-tag {
      position: absolute;
      top: 24px;
      right: 24px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--gold-dark);
      background: rgba(201,169,110,0.1);
      padding: 5px 12px;
      border-radius: 4px;
    }

    /* Process */
    .process { background: var(--white); }

    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      left: 23px;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, var(--gold), rgba(201,169,110,0.2));
    }

    .step {
      display: flex;
      gap: 24px;
      padding: 28px 0;
      position: relative;
    }

    .step-num {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--gold);
      color: var(--gold-dark);
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      z-index: 1;
    }

    .step-body h3 {
      font-size: 1.25rem;
      margin-bottom: 8px;
    }

    .step-body p {
      color: var(--text-light);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .step-body .step-time {
      display: inline-block;
      margin-top: 10px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--gold-dark);
      background: rgba(201,169,110,0.08);
      padding: 4px 10px;
      border-radius: 4px;
    }

    /* Social Proof */
    .social { background: var(--navy); color: var(--white); }
    .social .section-header h2 { color: var(--white); }
    .social .section-header p { color: rgba(255,255,255,0.7); }

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

    .testimonial {
      background: var(--navy-light);
      border-radius: 12px;
      padding: 40px;
      border: 1px solid rgba(201,169,110,0.1);
    }

    .testimonial-stars {
      color: var(--gold);
      font-size: 1.25rem;
      margin-bottom: 18px;
      letter-spacing: 2px;
    }

    .testimonial p {
      font-family: 'Lora', Georgia, serif;
      font-size: 1.2rem;
      line-height: 1.8;
      margin-bottom: 24px;
      color: rgba(255,255,255,0.92);
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--ink);
      font-weight: 700;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .testimonial-author div strong {
      font-size: 1rem;
      color: var(--white);
      font-weight: 600;
    }
    .testimonial-author div span {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.55);
    }

    /* Pricing */
    .pricing { background: var(--navy); }
    .pricing .section-header h2 { color: var(--white); }
    .pricing .section-header p { color: rgba(255,255,255,0.75); }

    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
      align-items: stretch;
    }

    .pricing-card {
      background: var(--white);
      border-radius: 12px;
      padding: 48px 36px;
      border: 1px solid var(--border);
      position: relative;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .pricing-card:hover {
      box-shadow: 0 16px 40px rgba(0,0,0,0.06);
    }

    .pricing-card.popular {
      border-color: var(--gold);
      box-shadow: 0 12px 36px rgba(201,169,110,0.2);
      border-top-width: 4px;
    }

    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--navy);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 7px 18px;
      border-radius: 20px;
    }

    .pricing-card h3 {
      font-size: 1.35rem;
      margin-bottom: 10px;
    }

    .pricing-card .desc {
      font-size: 1rem;
      color: var(--text);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .pricing-card .price {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
      line-height: 1.1;
    }

    .pricing-card .price span {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 400;
      color: var(--text-light);
    }

    .pricing-card .price-note {
      font-size: 0.9rem;
      color: var(--text-light);
      margin-bottom: 28px;
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 36px;
      flex: 1;
    }

    .pricing-features li {
      font-size: 1rem;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      line-height: 1.5;
    }

    .pricing-features li::before {
      content: '✓';
      color: var(--gold);
      font-weight: 700;
      flex-shrink: 0;
    }

    .pricing-card .btn { width: 100%; }

    /* FAQ */
    .faq { background: var(--white); }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      background: var(--white);
    }

    .faq-question {
      width: 100%;
      padding: 24px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: none;
      border: none;
      font-family: 'Inter', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--ink);
      cursor: pointer;
      text-align: left;
      transition: background 0.2s;
      line-height: 1.4;
    }

    .faq-question:hover { background: var(--paper-dark); }

    .faq-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .faq-item.open .faq-icon { transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 500px;
      padding: 0 28px 24px;
    }

    .faq-answer p {
      color: var(--text-light);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    /* CTA Footer */
    .cta-footer {
      background: var(--navy-dark);
      color: var(--white);
      padding: 110px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-footer::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .cta-footer h2 {
      color: var(--white);
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      margin-bottom: 18px;
      position: relative;
    }

    .cta-footer p {
      color: rgba(255,255,255,0.7);
      font-size: 1.15rem;
      max-width: 560px;
      margin: 0 auto 44px;
      position: relative;
      line-height: 1.7;
    }

    .cta-footer .btn-primary {
      font-size: 1.1rem;
      padding: 18px 44px;
      position: relative;
    }

    .urgency-bar {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(184,92,61,0.15);
      color: var(--rust);
      font-size: 0.9rem;
      font-weight: 600;
      padding: 10px 18px;
      border-radius: 6px;
      margin-bottom: 28px;
      position: relative;
    }

    .urgency-dot {
      width: 8px;
      height: 8px;
      background: var(--rust);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    /* Footer */
    .site-footer {
      background: var(--navy);
      color: rgba(255,255,255,0.55);
      padding: 48px 0;
      font-size: 0.9rem;
      border-top: 1px solid rgba(201,169,110,0.1);
    }

    .site-footer-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
      text-align: center;
    }

    .site-footer .logo { color: var(--gold); font-size: 1.3rem; }

    .footer-links {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .footer-links a { color: rgba(255,255,255,0.65); transition: color 0.2s; font-weight: 500; }
    .footer-links a:hover { color: var(--rich-gold); }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (min-width: 640px) {
      .header-cta { display: block; }
      .hamburger { display: none; }
      .trust-grid { grid-template-columns: repeat(4, 1fr); }
      .hero-ctas { flex-wrap: nowrap; }
    }

    @media (min-width: 768px) {
      .problem-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; }
      .cards-grid { grid-template-columns: repeat(3, 1fr); }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid { grid-template-columns: repeat(3, 1fr); }
      .pricing-card.popular { transform: translateY(-12px); }
      .process-steps::before { left: 27px; }
      .step { gap: 36px; padding: 32px 0; }
      .step-num { width: 56px; height: 56px; font-size: 1.35rem; }
    }

    @media (min-width: 1024px) {
      .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal { transition: none; }
      * { animation: none !important; }
    }

    @media (max-width: 767px) {
      .section { padding: 64px 0; }
      .hero { padding: 120px 0 64px; }
      .trust { padding: 40px 0; }
      .cta-footer { padding: 72px 0; }
      .hero h1 { font-size: clamp(2.1rem, 7vw, 2.8rem); }
      .section-header h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
      .hero-ctas { flex-direction: column; width: 100%; }
      .hero-ctas .btn { width: 100%; }
      .about-grid { gap: 36px; }
      .about-photo img { max-width: 100%; border-radius: 10px; }
      .cards-grid { gap: 20px; }
      .card { padding: 36px 24px; }
      .pricing-card { padding: 36px 24px; }
      .testimonial { padding: 32px 24px; }
      .problem-visual { padding: 32px 24px; }
      .step { gap: 18px; padding: 20px 0; }
      .step-num { width: 42px; height: 42px; font-size: 1.1rem; }
      .process-steps::before { left: 20px; }
      .faq-question { padding: 20px 20px; font-size: 1rem; }
      .faq-item.open .faq-answer { padding: 0 20px 20px; }
      .cta-footer h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
    }

    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .hero-photo { width: 150px; height: 150px; }
      .trust-item .num { font-size: 2.2rem; }
      .pricing-card .price { font-size: 2.4rem; }
      .about-stats strong { font-size: 1.8rem; }
    }

  /* Language toggle switch */
  .lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
  }
  .lang-switch-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
  }
  .lang-switch[data-active="en"] .lang-switch-label:nth-child(1),
  .lang-switch[data-active="es"] .lang-switch-label:nth-child(3) {
    color: var(--gold);
  }
  .lang-switch-track {
    position: relative;
    width: 48px;
    height: 26px;
    background: var(--navy-light);
    border-radius: 13px;
    border: 1px solid rgba(201,169,110,0.3);
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .lang-switch:hover .lang-switch-track {
    border-color: rgba(201,169,110,0.5);
  }
  .lang-switch-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .lang-switch[data-active="en"] .lang-switch-knob {
    transform: translateX(0);
  }
  .lang-switch[data-active="es"] .lang-switch-knob {
    transform: translateX(22px);
  }
