  /* ─── Color Variables ─── */
  :root {
    --primary: #fa4d09 !important;
    --primary-hover: #e04000 !important;
    --navy: #223a66 !important;
    --accent: #f39800 !important;
    --bg-alt: #f4f9fc !important;
    --text: #000 !important;
    --text-muted: #000 !important;
    --border: #94acc4 !important;
    --white: #fff !important;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    color: var(--text);
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.6;
  }

  h1, .h1, h2, .h2, h3, .h3, h5, .h5, h6, .h6 {
    font-family: "Alegreya", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    color: #222;
  }

  /* ─── STICKY TOP BAR ─── */
  .topbar {
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .topbar a { color: var(--accent); text-decoration: underline; }

  /* ─── HERO ─── */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2f58 60%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 100px 7%;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(250,77,9,0.10) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(250,77,9,0.12);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: "Exo", sans-serif;
    animation: fadeInUp 0.6s ease both;
  }
  .hero h1 {
    font-family: "Alegreya", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 22px;
    animation: fadeInUp 0.7s 0.1s ease both;
  }
  .hero h1 span { color: var(--accent); }
  .hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
    animation: fadeInUp 0.7s 0.2s ease both;
  }
  .hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s 0.3s ease both;
  }
  .btn-primary {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 15px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background .2s, transform .15s;
    display: inline-block;
    border: 2px solid var(--primary) !important;
  }
  .btn-primary:hover { background: var(--primary-hover) !important; border-color: var(--primary-hover) !important; transform: translateY(-2px); color: #fff !important; text-decoration: none; }
  .btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 13px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all .2s;
    display: inline-block;
  }
  .btn-outline:hover { background: rgba(243,152,0,0.1); transform: translateY(-2px); color: var(--accent); text-decoration: none; }
  .hero-trust {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    animation: fadeInUp 0.7s 0.4s ease both;
    flex-wrap: wrap;
  }
  .hero-trust-item { text-align: center; }
  .hero-trust-item strong { display: block; font-family: "Alegreya", serif; font-size: 1.8rem; color: var(--accent); }
  .hero-trust-item span { font-size: 0.8125rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; text-transform: uppercase; font-family: "Exo", sans-serif; }

  /* Hero right – medal showcase */
  .hero-visual { position: relative; animation: fadeInUp 0.9s 0.2s ease both; }
  .medal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .medal-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: transform .3s, border-color .3s;
  }
  .medal-card:hover { transform: translateY(-4px); border-color: var(--primary); }
  .medal-card:first-child { grid-column: span 2; }
  .medal-img-placeholder {
    background: linear-gradient(135deg, rgba(250,77,9,0.08), rgba(34,58,102,0.15));
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--accent);
    position: relative;
    overflow: hidden;
  }
  .medal-card:first-child .medal-img-placeholder { height: 220px; font-size: 5rem; }
  .medal-label {
    padding: 10px 14px;
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: "Exo", sans-serif;
  }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 7%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }
  .trust-item { display: flex; align-items: center; gap: 12px; }
  .trust-icon { font-size: 1.4rem; color: var(--primary); width: 28px; text-align: center; }
  .trust-text strong { display: block; font-size: 0.9375rem; color: var(--navy); }
  .trust-text span { font-size: 0.875rem; color: var(--text-muted); }

  /* ─── SECTIONS ─── */
  section { padding: 80px 7%; }
  .section-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: "Exo", sans-serif;
  }
  h2 {
    font-family: "Alegreya", serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  h2 span { color: var(--primary); }
  .section-intro { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; margin-bottom: 48px; line-height: 1.7; }

  /* ─── PRODUCT TYPES ─── */
  .products-section { background: var(--bg-alt); }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
  .product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 22px;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    cursor: default;
  }
  .product-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(34,58,102,0.08); }
  .product-icon { font-size: 1.8rem; margin-bottom: 14px; color: var(--primary); }
  .product-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; font-weight: 700; font-family: "Alegreya", serif; }
  .product-card p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; }

  /* ─── WHY US ─── */
  .why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
  .why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    padding: 28px 24px;
    border-radius: 0 8px 8px 0;
    transition: box-shadow .2s, transform .2s;
  }
  .why-card:hover { box-shadow: 0 4px 16px rgba(34,58,102,0.06); transform: translateX(4px); }
  .why-number { font-family: "Alegreya", serif; font-size: 2.5rem; color: rgba(250,77,9,0.12); line-height: 1; margin-bottom: 10px; font-weight: 700; }
  .why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; font-family: "Alegreya", serif; }
  .why-card p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; }

  /* ─── PROCESS ─── */
  .process-section { background: var(--bg-alt); }
  .process-steps {
    display: flex;
    gap: 0;
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 0;
  }
  .step {
    flex: 1;
    min-width: 140px;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
  }
  .step-num {
    width: 70px; height: 70px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Alegreya", serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 auto 16px;
  }
  .step h4 { font-size: 0.9375rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; font-family: "Alegreya", serif; }
  .step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

  /* ─── TESTIMONIALS ─── */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
  }
  .testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
    position: relative;
    transition: box-shadow .2s;
  }
  .testimonial:hover { box-shadow: 0 4px 20px rgba(34,58,102,0.06); }
  .testimonial:before { content: none !important; }
  .testimonial p { font-size: 0.9375rem; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
  .testimonial-author strong { font-size: 0.9375rem; color: var(--navy); }
  .testimonial-author span { display: block; font-size: 0.875rem; color: var(--text-muted); }
  .stars { color: var(--accent); font-size: 0.9375rem; margin-bottom: 6px; }

  /* ─── FAQ ─── */
  .faq-section { background: var(--bg-alt); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px 24px;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
  }
  .faq-item:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(34,58,102,0.06); }
  .faq-item h4 { font-size: 0.9375rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; font-family: "Alegreya", serif; }
  .faq-item p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; }

  /* ─── LEAD FORM CTA ─── */
  .cta-section {
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(250,77,9,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-section h2 { color: #fff; margin-bottom: 12px; }
  .cta-section .section-intro { color: rgba(255,255,255,0.7); margin: 0 auto 40px; }

  .quote-form {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 40px;
    text-align: left;
    position: relative;
    z-index: 1;
  }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .iti { width: 100%; }
  .form-group label { font-size: 0.875rem; font-weight: 700; color: var(--navy); letter-spacing: 0.05em; text-transform: uppercase; }
  .form-group input, .form-group select, .form-group textarea {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 14px 18px;
    color: var(--text);
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    transition: border-color .2s;
    width: 100%;
    height: auto;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-group select option { background: #fff; }
  .btn-submit {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-family: "Exo", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background .2s, transform .15s;
    margin-top: 8px;
  }
  .btn-submit:hover { background: var(--primary-hover); transform: translateY(-2px); }
  .form-disclaimer { text-align: center; font-size: 0.8125rem; color: var(--text-muted); margin-top: 12px; }

  /* ─── CONTACT STRIP ─── */
  .contact-strip {
    background: var(--navy);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 28px 7%;
    flex-wrap: wrap;
  }
  .contact-item { display: flex; align-items: center; gap: 10px; }
  .contact-item-icon { font-size: 1.3rem; color: var(--accent); width: 28px; text-align: center; }
  .contact-item strong { display: block; font-size: 0.875rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
  .contact-item a { color: #fff; text-decoration: none; font-weight: 700; font-size: 1rem; }
  .contact-item a:hover { color: var(--accent); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 48px 7% 28px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-brand p { font-size: 0.9375rem; color: rgba(255,255,255,0.6); margin: 14px 0; max-width: 260px; line-height: 1.7; }
  .footer-logo { font-family: "Alegreya", serif; font-size: 1.4rem; color: #fff; font-weight: 700; }
  .footer-col h4 { font-size: 0.8125rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; font-family: "Exo", sans-serif; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9375rem; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--accent); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: 0.875rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 8px; }

  /* ─── FLOATING WHATSAPP ─── */
  .wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: #25D366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform .2s;
    animation: pulse-wa 3s infinite;
  }
  .wa-float:hover { transform: scale(1.1); color: #fff; text-decoration: none; }
  @keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
  }

  /* ─── BREADCRUMB ─── */
  .breadcrumb {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 14px 7%;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
  }
  .breadcrumb a { color: var(--text-muted); text-decoration: none; }
  .breadcrumb a:hover { color: var(--primary); }
  .breadcrumb span { color: var(--navy); font-weight: 600; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; padding: 60px 5%; }
    .hero-visual { order: -1; }
    .medal-card:first-child { grid-column: span 1; }
    .process-steps::before { display: none; }
    .step { min-width: 120px; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .topbar { font-size: 0.75rem; }
    .contact-strip { gap: 24px; }
    .hero-trust { gap: 20px; }
    .quote-form { padding: 24px 18px; }
    .process-steps { gap: 24px; }
  }
