:root {
    --red: #C8102E; --red-dark: #9a0c22; --red-glow: rgba(200,16,46,0.25);
    --gold: #D4AF37; --gold-light: #f0cc5a; --gold-dim: rgba(212,175,55,0.15);
    --black: #0A0A0A; --black-2: #111111; --black-3: #1a1a1a; --black-4: #222222;
    --white: #F5F3EE; --white-dim: rgba(245,243,238,0.6); --white-faint: rgba(245,243,238,0.08);
  }
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; cursor: none; }
  .cursor { width: 10px; height: 10px; background: var(--gold); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform 0.1s; }
  .cursor-ring { width: 36px; height: 36px; border: 1.5px solid var(--gold); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); opacity: 0.7; }
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 4rem; background: rgba(10,10,10,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(212,175,55,0.12); }
  .nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem; letter-spacing: 0.05em; color: var(--white); cursor: pointer; flex-shrink: 0; }
  .nav-logo span { color: var(--gold); }
  .nav-right { display: flex; align-items: center; gap: 1.5rem; }
  .nav-links { display: flex; gap: 1.8rem; list-style: none; }
  .nav-links a { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: var(--white-dim); text-decoration: none; transition: color 0.2s; cursor: pointer; white-space: nowrap; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { background: var(--red) !important; color: var(--white) !important; padding: 0.45rem 1rem !important; border-radius: 3px; }
  .nav-cta:hover { background: var(--red-dark) !important; }
  .lang-switcher { display: flex; gap: 0.3rem; flex-shrink: 0; }
  .lang-btn { background: var(--black-4); border: 1px solid rgba(255,255,255,0.12); color: var(--white-dim); padding: 0.3rem 0.65rem; border-radius: 3px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; cursor: pointer; transition: all 0.2s; }
  .lang-btn.active, .lang-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
  .page { display: none; min-height: 100vh; }
  .page.active { display: block; }
  .hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 8rem 4rem 4rem; position: relative; overflow: hidden; }
  .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(200,16,46,0.12) 0%, transparent 70%), radial-gradient(ellipse 40% 40% at 30% 80%, rgba(212,175,55,0.07) 0%, transparent 60%); }
  .hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%); }
  .hero-left { position: relative; z-index: 2; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.8rem; }
  .hero-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
  .hero-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(2.4rem, 4.5vw, 3.8rem); line-height: 1.06; letter-spacing: -0.02em; margin-bottom: 1.6rem; }
  .hero-title .gold { color: var(--gold); }
  .hero-title .red { color: var(--red); }
  .hero-sub { font-size: 1rem; line-height: 1.75; color: var(--white-dim); max-width: 460px; margin-bottom: 2.5rem; }
  .hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
  .badge { display: flex; align-items: center; gap: 0.5rem; background: var(--white-faint); border: 1px solid rgba(212,175,55,0.2); padding: 0.4rem 0.9rem; border-radius: 100px; font-size: 0.78rem; color: var(--white-dim); }
  .badge .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary { background: var(--red); color: var(--white); padding: 0.9rem 2rem; border: none; border-radius: 4px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.05em; cursor: pointer; transition: background 0.2s, box-shadow 0.2s, transform 0.15s; text-transform: uppercase; }
  .btn-primary:hover { background: var(--red-dark); box-shadow: 0 8px 30px var(--red-glow); transform: translateY(-2px); }
  .btn-secondary { background: transparent; color: var(--gold); padding: 0.9rem 2rem; border: 1px solid var(--gold); border-radius: 4px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.88rem; letter-spacing: 0.05em; cursor: pointer; transition: all 0.2s; text-transform: uppercase; }
  .btn-secondary:hover { background: var(--gold-dim); transform: translateY(-2px); }
  .hero-right { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
  .hero-visual { width: 420px; height: 420px; position: relative; }
  .hero-ring { position: absolute; border-radius: 50%; border: 1px solid; animation: spin linear infinite; }
  .ring-1 { width: 100%; height: 100%; top: 0; left: 0; border-color: rgba(200,16,46,0.3); animation-duration: 20s; }
  .ring-2 { width: 78%; height: 78%; top: 11%; left: 11%; border-color: rgba(212,175,55,0.25); animation-duration: 15s; animation-direction: reverse; }
  .ring-3 { width: 55%; height: 55%; top: 22.5%; left: 22.5%; border-color: rgba(200,16,46,0.2); animation-duration: 10s; }
  @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  .hero-center-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 120px; height: 120px; background: var(--black-3); border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 60px rgba(212,175,55,0.2); }
  .hero-center-icon span { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem; color: var(--gold); text-align: center; line-height: 1.2; }
  .hero-orbit-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
  .orbit-1 { top: 0; left: 50%; transform: translate(-50%,-50%); }
  .orbit-2 { top: 50%; right: 0; transform: translate(50%,-50%); background: var(--red); box-shadow: 0 0 10px var(--red); }
  .orbit-3 { bottom: 0; left: 50%; transform: translate(-50%,50%); }
  .stats-bar { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(212,175,55,0.1); border-top: 1px solid rgba(212,175,55,0.1); border-bottom: 1px solid rgba(212,175,55,0.1); }
  .stat-item { background: var(--black-2); padding: 2.5rem 2rem; text-align: center; }
  .stat-num { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--gold); display: block; }
  .stat-label { font-size: 0.75rem; color: var(--white-dim); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.3rem; display: block; }
  .section { padding: 6rem 4rem; }
  .section-tag { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
  .section-tag::before { content: ''; width: 20px; height: 1px; background: var(--red); }
  .section-title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem; }
  .section-title .gold { color: var(--gold); }
  .section-sub { font-size: 1rem; color: var(--white-dim); line-height: 1.75; max-width: 600px; margin-bottom: 3.5rem; }
  .why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .why-card { background: var(--black-3); border: 1px solid rgba(212,175,55,0.1); border-radius: 8px; padding: 2rem; transition: all 0.3s; position: relative; overflow: hidden; }
  .why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--red), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
  .why-card:hover::before { transform: scaleX(1); }
  .why-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
  .why-icon { width: 48px; height: 48px; background: var(--gold-dim); border: 1px solid rgba(212,175,55,0.3); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; font-size: 1.4rem; }
  .why-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.6rem; }
  .why-card p { font-size: 0.88rem; color: var(--white-dim); line-height: 1.65; }
  .services-preview { background: var(--black-2); padding: 6rem 4rem; }
  .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
  .service-card { background: var(--black-3); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 2.5rem 2rem; transition: all 0.3s; cursor: pointer; }
  .service-card:hover { border-color: rgba(200,16,46,0.4); box-shadow: 0 20px 50px rgba(200,16,46,0.1); transform: translateY(-6px); }
  .service-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
  .service-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.7rem; }
  .service-card p { font-size: 0.87rem; color: var(--white-dim); line-height: 1.65; margin-bottom: 1.5rem; }
  .service-link { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
  .lang-bar { background: var(--black-4); padding: 3rem 4rem; text-align: center; border-top: 1px solid rgba(212,175,55,0.08); border-bottom: 1px solid rgba(212,175,55,0.08); }
  .lang-bar p { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
  .lang-bar small { color: var(--white-dim); font-size: 0.85rem; }
  .cta-banner { background: linear-gradient(135deg, var(--red-dark) 0%, #6a0000 50%, #1a0000 100%); padding: 6rem 4rem; text-align: center; position: relative; overflow: hidden; }
  .cta-banner::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(212,175,55,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,0.06) 1px, transparent 1px); background-size: 40px 40px; }
  .cta-banner h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem,4vw,3rem); font-weight: 800; position: relative; z-index: 1; margin-bottom: 1rem; }
  .cta-banner p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 2.5rem; position: relative; z-index: 1; }
  .cta-banner .btn-primary { background: var(--gold); color: var(--black); position: relative; z-index: 1; }
  .cta-banner .btn-primary:hover { background: var(--gold-light); }
  .page-hero { padding: 10rem 4rem 5rem; background: var(--black-2); position: relative; overflow: hidden; }
  .page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
  .page-hero-inner { max-width: 700px; }
  .full-services { padding: 6rem 4rem; }
  .services-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 4rem; }
  .service-col-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid rgba(212,175,55,0.15); }
  .col-icon { width: 52px; height: 52px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
  .col-icon.red { background: rgba(200,16,46,0.15); border: 1px solid rgba(200,16,46,0.3); }
  .col-icon.gold { background: var(--gold-dim); border: 1px solid rgba(212,175,55,0.3); }
  .service-col-header h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.2rem; }
  .service-list { list-style: none; }
  .service-list li { display: flex; align-items: flex-start; gap: 0.8rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: var(--white-dim); line-height: 1.5; }
  .service-list li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
  .pricing-section { background: var(--black-2); padding: 6rem 4rem; }
  .pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
  .pricing-card { background: var(--black-3); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 2.5rem 2rem; position: relative; transition: all 0.3s; }
  .pricing-card.featured { border-color: var(--gold); box-shadow: 0 0 40px rgba(212,175,55,0.1); }
  .pricing-card:hover { transform: translateY(-4px); }
  .pricing-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--black); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 100px; white-space: nowrap; }
  .pricing-card h3 { font-family: 'Syne', sans-serif; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white-dim); margin-bottom: 0.8rem; }
  .price { font-family: 'Syne', sans-serif; font-size: 2.3rem; font-weight: 800; color: var(--white); margin-bottom: 0.3rem; }
  .price span { font-size: 1rem; color: var(--white-dim); font-weight: 400; }
  .pricing-desc { font-size: 0.85rem; color: var(--white-dim); margin-bottom: 2rem; line-height: 1.5; }
  .pricing-features { list-style: none; margin-bottom: 2rem; }
  .pricing-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.84rem; color: var(--white-dim); padding: 0.4rem 0; }
  .pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }
  .topics-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
  .topic-card { background: var(--black-3); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 2rem; transition: all 0.3s; }
  .topic-card:hover { border-color: rgba(200,16,46,0.35); transform: translateY(-4px); }
  .topic-num { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: rgba(200,16,46,0.2); margin-bottom: 1rem; display: block; }
  .topic-card h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.6rem; }
  .topic-card p { font-size: 0.85rem; color: var(--white-dim); line-height: 1.65; }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 6rem 4rem; }
  .about-box { background: var(--black-3); border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; padding: 3rem; position: relative; overflow: hidden; }
  .about-box::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: linear-gradient(to bottom, var(--red), var(--gold)); }
  .about-box-title { font-family: 'Syne', sans-serif; font-size: 5rem; font-weight: 800; color: rgba(212,175,55,0.08); line-height: 1; margin-bottom: 2rem; }
  .mission-text { font-size: 1rem; line-height: 1.8; color: var(--white-dim); }
  .values-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
  .value-item { display: flex; align-items: flex-start; gap: 1rem; }
  .value-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
  .value-item h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.2rem; }
  .value-item p { font-size: 0.85rem; color: var(--white-dim); line-height: 1.55; }
  .booking-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; padding: 3rem 4rem 6rem; align-items: start; }
  .booking-info h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 1rem; color: var(--gold); }
  .booking-info p { font-size: 0.9rem; color: var(--white-dim); line-height: 1.7; margin-bottom: 2rem; }
  .booking-features { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
  .booking-features li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.88rem; color: var(--white-dim); }
  .booking-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }
  .booking-form { background: var(--black-3); border: 1px solid rgba(212,175,55,0.15); border-radius: 12px; padding: 2.5rem; }
  .booking-form h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem; margin-bottom: 2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white-dim); margin-bottom: 0.5rem; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--black-2); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 0.8rem 1rem; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; transition: border-color 0.2s, box-shadow 0.2s; outline: none; -webkit-appearance: none; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.1); }
  .form-group select option { background: var(--black-2); }
  .form-group textarea { height: 110px; resize: vertical; }
  .form-submit { width: 100%; background: var(--red); color: var(--white); padding: 1rem; border: none; border-radius: 6px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, box-shadow 0.2s; margin-top: 0.5rem; }
  .form-submit:hover { background: var(--red-dark); box-shadow: 0 8px 30px var(--red-glow); }
  .success-msg { display: none; background: rgba(212,175,55,0.1); border: 1px solid var(--gold); border-radius: 6px; padding: 1rem 1.2rem; font-size: 0.9rem; color: var(--gold); text-align: center; margin-top: 1rem; }
  .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: 3rem 4rem 6rem; align-items: start; }
  .contact-card { background: var(--black-3); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 1.8rem; display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; transition: border-color 0.3s; }
  .contact-card:hover { border-color: rgba(212,175,55,0.3); }
  .contact-card-icon { width: 46px; height: 46px; background: var(--gold-dim); border: 1px solid rgba(212,175,55,0.25); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
  .contact-card h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.92rem; margin-bottom: 0.3rem; }
  .contact-card p { font-size: 0.87rem; color: var(--white-dim); }
  .contact-card a { color: var(--gold); text-decoration: none; }
  .contact-form { background: var(--black-3); border: 1px solid rgba(212,175,55,0.15); border-radius: 12px; padding: 2.5rem; }
  .contact-form h3 { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.25rem; margin-bottom: 2rem; }
  footer { background: var(--black-2); border-top: 1px solid rgba(212,175,55,0.1); padding: 4rem; }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; margin-bottom: 1rem; }
  .footer-brand-logo span { color: var(--gold); }
  .footer-desc { font-size: 0.84rem; color: var(--white-dim); line-height: 1.7; margin-bottom: 1.5rem; }
  .footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-col ul li { font-size: 0.84rem; color: var(--white-dim); cursor: pointer; transition: color 0.2s; }
  .footer-col ul li:hover { color: var(--white); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 0.78rem; color: rgba(245,243,238,0.3); }
  .divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent); }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  .fade-up { animation: fadeUp 0.7s ease forwards; }
  .delay-1 { animation-delay: 0.1s; opacity: 0; }
  .delay-2 { animation-delay: 0.2s; opacity: 0; }
  .delay-3 { animation-delay: 0.35s; opacity: 0; }
  .delay-4 { animation-delay: 0.5s; opacity: 0; }
  /* ===================== RESPONSIVE — ALL DEVICES ===================== */

  /* Tablet landscape (1024px and below) */
  @media (max-width: 1024px) {
    nav { padding: 1rem 2rem; }
    .nav-links { gap: 1.2rem; }
    .nav-links a { font-size: 0.75rem; }
    .hero { padding: 7rem 2.5rem 3.5rem; gap: 2rem; }
    .hero-visual { width: 340px; height: 340px; }
    .hero-center-icon { width: 100px; height: 100px; }
    .section { padding: 5rem 2.5rem; }
    .services-preview { padding: 5rem 2.5rem; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .full-services, .pricing-section { padding: 5rem 2.5rem; }
    .about-grid { padding: 5rem 2.5rem; gap: 3rem; }
    .booking-layout, .contact-layout { padding: 3rem 2.5rem 5rem; gap: 2.5rem; }
    footer { padding: 3.5rem 2.5rem; }
    .footer-top { gap: 2rem; }
    .lang-bar, .cta-banner { padding: 5rem 2.5rem; }
    .page-hero { padding: 9rem 2.5rem 4rem; }
  }

  /* Tablet portrait (768px and below) */
  @media (max-width: 768px) {
    /* Disable custom cursor on touch */
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }

    /* Nav */
    nav { padding: 0.9rem 1.25rem; }
    .hamburger { display: flex; }
    .nav-links {
      display: none;
      position: absolute; top: 100%; left: 0; right: 0;
      background: rgba(17,17,17,0.98);
      backdrop-filter: blur(20px);
      flex-direction: column; gap: 0;
      border-bottom: 1px solid rgba(212,175,55,0.15);
      z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-links a { display: block; padding: 1rem 1.5rem; font-size: 0.9rem; letter-spacing: 0.05em; }
    .nav-links .nav-cta { margin: 0.75rem 1.5rem 1rem; padding: 0.75rem 1.5rem !important; border-radius: 4px; text-align: center; display: block; }
    .nav-right { gap: 0.75rem; }
    .nav-logo { font-size: 1.1rem; }
    .lang-btn { padding: 0.3rem 0.55rem; font-size: 0.68rem; }

    /* Hero */
    .hero { grid-template-columns: 1fr; padding: 6.5rem 1.25rem 3rem; text-align: center; min-height: auto; }
    .hero-right { display: none; }
    .hero-eyebrow { margin: 0 auto 1.2rem; font-size: 0.68rem; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 1.2rem; }
    .hero-sub { margin: 0 auto 2rem; font-size: 0.95rem; max-width: 100%; }
    .hero-badges { justify-content: center; gap: 0.5rem; }
    .badge { font-size: 0.75rem; padding: 0.35rem 0.75rem; }
    .hero-btns { justify-content: center; flex-direction: column; align-items: center; gap: 0.75rem; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 320px; padding: 1rem 1.5rem; font-size: 0.9rem; }

    /* Stats */
    .stats-bar { grid-template-columns: repeat(2,1fr); }
    .stat-item { padding: 1.75rem 1rem; }
    .stat-num { font-size: 2rem; }
    .stat-label { font-size: 0.7rem; }

    /* Sections */
    .section { padding: 3.5rem 1.25rem; }
    .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .section-sub { font-size: 0.93rem; margin-bottom: 2.5rem; }

    /* Why grid */
    .why-grid { grid-template-columns: 1fr; gap: 1rem; }
    .why-card { padding: 1.5rem; }
    .why-icon { width: 42px; height: 42px; font-size: 1.2rem; }

    /* Services preview */
    .services-preview { padding: 3.5rem 1.25rem; }
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-card { padding: 2rem 1.5rem; }

    /* Lang bar */
    .lang-bar { padding: 2.5rem 1.25rem; }
    .lang-bar p { font-size: 1rem; }

    /* CTA banner */
    .cta-banner { padding: 3.5rem 1.25rem; }
    .cta-banner h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }
    .cta-banner .btn-primary { width: 100%; max-width: 320px; }

    /* Page hero */
    .page-hero { padding: 7rem 1.25rem 3rem; }
    .page-hero-inner { max-width: 100%; }

    /* Services page */
    .full-services { padding: 3.5rem 1.25rem; }
    .services-columns { grid-template-columns: 1fr; gap: 2rem; margin-top: 2.5rem; }
    .service-col-header h3 { font-size: 1.05rem; }
    .service-list li { font-size: 0.88rem; padding: 0.8rem 0; }

    /* Pricing */
    .pricing-section { padding: 3.5rem 1.25rem; }
    .pricing-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .pricing-card { padding: 2rem 1.5rem; }
    .pricing-card.featured { margin-top: 0.5rem; }

    /* Financial literacy */
    .topics-grid { grid-template-columns: 1fr; gap: 1rem; }
    .topic-card { padding: 1.5rem; }
    .topic-num { font-size: 2rem; }

    /* About */
    .about-grid { grid-template-columns: 1fr; padding: 3.5rem 1.25rem; gap: 2rem; }
    .about-box { padding: 2rem 1.5rem; }
    .about-box-title { font-size: 3.5rem; margin-bottom: 1.2rem; }
    .mission-text { font-size: 0.93rem; }
    .values-list { margin-top: 1.5rem; gap: 0.8rem; }
    .value-item h4 { font-size: 0.9rem; }
    .value-item p { font-size: 0.83rem; }

    /* Booking */
    .booking-layout { grid-template-columns: 1fr; padding: 2.5rem 1.25rem 4rem; gap: 2rem; }
    .booking-info h3 { font-size: 1rem; }
    .booking-info p { font-size: 0.88rem; }
    .booking-features li { font-size: 0.85rem; }
    .booking-form { padding: 1.75rem 1.25rem; }
    .booking-form h3 { font-size: 1.1rem; margin-bottom: 1.5rem; }

    /* Contact */
    .contact-layout { grid-template-columns: 1fr; padding: 2.5rem 1.25rem 4rem; gap: 2rem; }
    .contact-card { padding: 1.25rem; }
    .contact-form { padding: 1.75rem 1.25rem; }
    .contact-form h3 { font-size: 1.1rem; margin-bottom: 1.5rem; }

    /* Forms */
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .form-group { margin-bottom: 1rem; }
    .form-group label { font-size: 0.72rem; }
    .form-group input, .form-group select, .form-group textarea { font-size: 16px; /* prevents iOS zoom */ padding: 0.85rem 1rem; }
    .form-submit { font-size: 0.9rem; padding: 1rem; }

    /* Footer */
    footer { padding: 3rem 1.25rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
    .footer-brand-logo { font-size: 1.2rem; }
    .footer-desc { font-size: 0.82rem; }
    .footer-col h4 { font-size: 0.75rem; margin-bottom: 0.9rem; }
    .footer-col ul li { font-size: 0.82rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; padding-top: 1.5rem; }
    .footer-bottom p { font-size: 0.75rem; }
  }

  /* Mobile (480px and below) */
  @media (max-width: 480px) {
    nav { padding: 0.85rem 1rem; }
    .nav-logo { font-size: 1rem; }
    .lang-btn { padding: 0.25rem 0.5rem; font-size: 0.65rem; }

    .hero { padding: 6rem 1rem 2.5rem; }
    .hero-title { font-size: clamp(1.75rem, 9vw, 2.5rem); }
    .hero-sub { font-size: 0.9rem; }
    .hero-badges { gap: 0.4rem; }
    .badge { font-size: 0.72rem; padding: 0.3rem 0.65rem; }

    .stats-bar { grid-template-columns: repeat(2,1fr); }
    .stat-item { padding: 1.25rem 0.75rem; }
    .stat-num { font-size: 1.7rem; }
    .stat-label { font-size: 0.65rem; letter-spacing: 0.04em; }

    .section { padding: 3rem 1rem; }
    .section-title { font-size: clamp(1.4rem, 7vw, 1.9rem); }
    .section-tag { font-size: 0.65rem; letter-spacing: 0.12em; }
    .section-sub { font-size: 0.9rem; margin-bottom: 2rem; }

    .why-card { padding: 1.25rem; }
    .service-card { padding: 1.5rem 1.25rem; }
    .services-preview { padding: 3rem 1rem; }

    .lang-bar { padding: 2rem 1rem; }
    .lang-bar p { font-size: 0.88rem; }
    .lang-bar small { font-size: 0.75rem; }

    .cta-banner { padding: 3rem 1rem; }
    .cta-banner h2 { font-size: clamp(1.3rem, 6vw, 1.8rem); }
    .cta-banner p { font-size: 0.9rem; }

    .page-hero { padding: 6.5rem 1rem 2.5rem; }
    .full-services { padding: 3rem 1rem; }
    .pricing-section { padding: 3rem 1rem; }
    .pricing-card { padding: 1.75rem 1.25rem; }
    .price { font-size: 2rem; }

    .topics-grid { grid-template-columns: 1fr; }
    .topic-card { padding: 1.25rem; }

    .about-grid { padding: 3rem 1rem; }
    .about-box { padding: 1.5rem 1.25rem; }
    .about-box-title { font-size: 3rem; }

    .booking-layout { padding: 2rem 1rem 3.5rem; }
    .booking-form { padding: 1.5rem 1rem; }
    .contact-layout { padding: 2rem 1rem 3.5rem; }
    .contact-form { padding: 1.5rem 1rem; }
    .contact-card { padding: 1rem; }

    footer { padding: 2.5rem 1rem; }
    .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
  }

  /* Very small phones (360px and below) */
  @media (max-width: 360px) {
    .hero-title { font-size: 1.65rem; }
    .btn-primary, .btn-secondary { font-size: 0.82rem; padding: 0.9rem 1.2rem; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
    .stat-num { font-size: 1.5rem; }
    .section-title { font-size: 1.35rem; }
    .booking-form, .contact-form { padding: 1.25rem 0.9rem; }
  }