    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --gold: #D4A843; --gold-dark: #B8922E; --gold-light: #F5E6C8; --gold-glow: #E8C56D;
      --dark: #1A1A2E; --dark-2: #16213E; --dark-3: #0F3460;
      --white: #FFFFFF; --gray-50: #F9FAFB; --gray-100: #F3F4F6; --gray-200: #E5E7EB;
      --gray-500: #6B7280; --gray-700: #374151; --gray-900: #111827;
      --green: #059669; --green-light: #D1FAE5; --red: #DC2626;
      --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-display: 'Playfair Display', Georgia, serif;
      --shadow-sm: 0 1px 2px rgba(0,0,0,0.05); --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
      --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
      --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
      --radius: 12px; --radius-lg: 16px; --radius-xl: 24px;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-main); color: var(--gray-900); line-height: 1.7; background: var(--white); -webkit-font-smoothing: antialiased; }
    img { max-width: 100%; display: block; } a { color: inherit; text-decoration: none; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .top-bar { background: var(--dark); color: var(--white); padding: 10px 0; font-size: 14px; }
    .top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
    .top-bar a { color: var(--gold-glow); font-weight: 600; }
    .top-bar-right { display: flex; gap: 20px; align-items: center; }
    .top-bar-badge { background: var(--green); color: white; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
    .navbar { background: var(--white); padding: 16px 0; border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
    .navbar .container { display: flex; justify-content: space-between; align-items: center; }
    .logo { display: flex; align-items: center; gap: 12px; }
    .logo-full { height: 40px; width: auto; flex-shrink: 0; }
    .footer .logo-full { height: 36px; }
    .nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
    .nav-links a { font-size: 15px; font-weight: 500; color: var(--gray-700); transition: color 0.2s; }
    .nav-links a:hover { color: var(--gold-dark); }
    .nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white !important; padding: 10px 24px; border-radius: 8px; font-weight: 600 !important; transition: transform 0.2s, box-shadow 0.2s; }
    .nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
    .mobile-menu-btn { display: none; background: none; border: none; font-size: 28px; cursor: pointer; }
    .breadcrumbs { padding: 14px 0; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); font-size: 13px; color: var(--gray-500); }
    .breadcrumbs a { color: var(--gold-dark); } .breadcrumbs span { margin: 0 6px; }
    .hero { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%); color: var(--white); padding: 80px 0 90px; position: relative; overflow: hidden; }
    .hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 70%); border-radius: 50%; }
    .hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%); border-radius: 50%; }
    .hero .container { position: relative; z-index: 1; }
    .hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
    .hero-illustration { display: flex; align-items: center; justify-content: center; }
    .hero-illustration svg { width: 100%; max-width: 420px; height: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); }
    .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,168,67,0.15); border: 1px solid rgba(212,168,67,0.3); padding: 8px 16px; border-radius: 50px; font-size: 13px; color: var(--gold-glow); font-weight: 500; margin-bottom: 24px; }
    .hero h1 { font-family: var(--font-display); font-size: 46px; line-height: 1.15; margin-bottom: 20px; font-weight: 700; }
    .hero h1 .highlight { color: var(--gold-glow); }
    .hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 520px; line-height: 1.7; }
    .hero-cta-group { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
    .btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); padding: 16px 36px; border-radius: 10px; font-weight: 700; font-size: 16px; display: inline-flex; align-items: center; gap: 10px; transition: transform 0.2s, box-shadow 0.2s; border: none; cursor: pointer; }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,168,67,0.4); }
    .btn-secondary { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: var(--white); padding: 16px 32px; border-radius: 10px; font-weight: 600; font-size: 16px; display: inline-flex; align-items: center; gap: 10px; transition: background 0.2s; cursor: pointer; }
    .btn-secondary:hover { background: rgba(255,255,255,0.15); }
    .hero-stats { display: flex; gap: 40px; } .hero-stat-item { text-align: left; }
    .hero-stat-number { font-size: 28px; font-weight: 800; color: var(--gold-glow); }
    .hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px; }
    .trust-strip { background: var(--gold-light); padding: 20px 0; border-bottom: 2px solid var(--gold); }
    .trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--dark); }
    .trust-icon { width: 36px; height: 36px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: var(--shadow-sm); }
    .section { padding: 80px 0; } .section-alt { background: var(--gray-50); }
    .section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
    .section-label { display: inline-block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-dark); margin-bottom: 12px; }
    .section-header h2 { font-family: var(--font-display); font-size: 36px; line-height: 1.2; color: var(--dark); margin-bottom: 16px; }
    .section-header p { font-size: 17px; color: var(--gray-500); line-height: 1.7; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px 28px; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
    .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--gold); }
    .service-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--gold-light), #FEF3C7); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
    .service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
    .service-card p { font-size: 15px; color: var(--gray-500); line-height: 1.7; }
    .service-tag { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--gold-dark); background: var(--gold-light); padding: 5px 14px; border-radius: 20px; }
    .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
    .process-grid::before { content: ''; position: absolute; top: 44px; left: 15%; right: 15%; height: 3px; background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light)); z-index: 0; }
    .process-step { text-align: center; position: relative; z-index: 1; }
    .step-number { width: 64px; height: 64px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; color: var(--white); margin: 0 auto 20px; box-shadow: 0 4px 15px rgba(212,168,67,0.3); }
    .process-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
    .process-step p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
    .process-time { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--green); background: var(--green-light); padding: 3px 12px; border-radius: 20px; }
    .gold-types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 20px; }
    .gold-type-item { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px 16px; text-align: center; transition: border-color 0.2s, box-shadow 0.2s; }
    .gold-type-item:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
    .gold-type-icon { font-size: 32px; margin-bottom: 10px; }
    .gold-type-item h4 { font-size: 14px; font-weight: 600; color: var(--dark); }
    .gold-type-item p { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
    .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .why-card { display: flex; gap: 20px; padding: 28px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); transition: box-shadow 0.3s; }
    .why-card:hover { box-shadow: var(--shadow-lg); }
    .why-icon { min-width: 48px; height: 48px; background: var(--gold-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
    .why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
    .why-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
    .insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .insight-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px 24px; transition: box-shadow 0.3s, border-color 0.3s; }
    .insight-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); }
    .insight-icon { font-size: 32px; margin-bottom: 16px; }
    .insight-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
    .insight-card p { font-size: 14px; color: var(--gray-500); line-height: 1.8; }
    .local-section { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); color: var(--white); padding: 80px 0; }
    .local-section .section-label { color: var(--gold-glow); }
    .local-section .section-header h2 { color: var(--white); }
    .local-section .section-header p { color: rgba(255,255,255,0.6); }
    .local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
    .local-text h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; color: var(--gold-glow); }
    .local-text p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 16px; }
    .nearby-areas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
    .area-tag { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); padding: 8px 18px; border-radius: 50px; font-size: 13px; color: rgba(255,255,255,0.8); transition: background 0.2s, border-color 0.2s; }
    .area-tag:hover { background: rgba(212,168,67,0.2); border-color: var(--gold); color: var(--gold-glow); }
    .local-landmarks { list-style: none; }
    .local-landmarks li { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,0.75); }
    .landmark-icon { min-width: 28px; height: 28px; background: rgba(212,168,67,0.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; }
    .faq-list { max-width: 800px; margin: 0 auto; }
    .faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.3s; }
    .faq-item:hover { box-shadow: var(--shadow-md); }
    .faq-question { width: 100%; background: var(--white); border: none; padding: 22px 24px; text-align: left; font-size: 16px; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-main); transition: background 0.2s; }
    .faq-question:hover { background: var(--gray-50); }
    .faq-arrow { font-size: 20px; color: var(--gold-dark); transition: transform 0.3s; min-width: 24px; text-align: center; }
    .faq-item.active .faq-arrow { transform: rotate(180deg); }
    .faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
    .faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 22px; }
    .faq-answer p { font-size: 15px; color: var(--gray-500); line-height: 1.7; }
    .cta-banner { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); padding: 60px 0; text-align: center; }
    .cta-banner h2 { font-family: var(--font-display); font-size: 34px; color: var(--dark); margin-bottom: 12px; }
    .cta-banner p { font-size: 17px; color: rgba(0,0,0,0.6); margin-bottom: 28px; }
    .cta-phone { display: inline-flex; align-items: center; gap: 12px; background: var(--dark); color: var(--white); padding: 18px 40px; border-radius: 12px; font-size: 22px; font-weight: 700; transition: transform 0.2s; }
    .cta-phone:hover { transform: scale(1.03); }
    .cta-sub { margin-top: 16px; font-size: 14px; color: rgba(0,0,0,0.5); }
    .internal-links { padding: 60px 0; background: var(--gray-50); border-top: 1px solid var(--gray-200); }
    .internal-links h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
    .internal-links > .container > p { font-size: 15px; color: var(--gray-500); margin-bottom: 28px; }
    .links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
    .internal-link-item { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: white; border: 1px solid var(--gray-200); border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--gray-700); transition: border-color 0.2s, color 0.2s, box-shadow 0.2s; }
    .internal-link-item:hover { border-color: var(--gold); color: var(--gold-dark); box-shadow: var(--shadow-sm); }
    .link-arrow { color: var(--gold-dark); font-weight: 700; }
    .footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .footer h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 20px; }
    .footer p, .footer li { font-size: 14px; line-height: 1.8; }
    .footer ul { list-style: none; } .footer ul li a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
    .footer ul li a:hover { color: var(--gold-glow); }
    .footer-brand-desc { margin-top: 16px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); }
    .footer-bottom { padding: 24px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }
    .whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 300; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
    .whatsapp-float .wa-tooltip { background: var(--white); color: var(--gray-900); font-size: 14px; font-weight: 600; padding: 10px 18px; border-radius: 10px; box-shadow: var(--shadow-lg); white-space: nowrap; opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s; pointer-events: none; }
    .whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateY(0); }
    .whatsapp-float .wa-btn { width: 64px; height: 64px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,0.4); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
    .whatsapp-float .wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
    .whatsapp-float .wa-btn svg { width: 34px; height: 34px; fill: white; }
    .wa-pulse { animation: wa-pulse-ring 2.5s infinite; }
    @keyframes wa-pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
    .floating-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); padding: 10px 16px; z-index: 200; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
    .floating-cta-inner { display: flex; gap: 10px; }
    .floating-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: 10px; font-weight: 700; font-size: 15px; }
    .floating-cta .cta-call { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); }
    .floating-cta .cta-wa { background: #25D366; color: white; }
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-illustration svg { max-width: 340px; }
      .services-grid, .insights-grid { grid-template-columns: repeat(2, 1fr); }
      .process-grid { grid-template-columns: repeat(2, 1fr); } .process-grid::before { display: none; }
      .footer-grid { grid-template-columns: repeat(2, 1fr); } .local-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .hero { padding: 48px 0 56px; } .hero h1 { font-size: 32px; }
      .hero-illustration { display: none; }
      .hero-stats { gap: 24px; } .hero-stat-number { font-size: 22px; }
      .services-grid, .process-grid, .why-grid, .insights-grid { grid-template-columns: 1fr; }
      .section { padding: 56px 0; } .section-header h2 { font-size: 28px; }
      .nav-links { display: none; } .mobile-menu-btn { display: block; }
      .floating-cta { display: block; }
      .whatsapp-float { bottom: 80px; right: 16px; }
      .whatsapp-float .wa-btn { width: 56px; height: 56px; }
      .whatsapp-float .wa-btn svg { width: 30px; height: 30px; }
      .whatsapp-float .wa-tooltip { display: none; }
      .footer-grid { grid-template-columns: 1fr; } .trust-items { gap: 20px; }
      .top-bar-right { display: none; } body { padding-bottom: 70px; }
    }