:root {
    --ink: #0D0D0D;
    --ink-2: #3A3A3A;
    --ink-3: #717171;
    --paper: #F6F4EF;
    --paper-2: #EDEBE4;
    --white: #FFFFFF;
    --accent: #D94F2B;
    --accent-2: #FF6B47;
    --accent-light: #FFF0EB;
    --green: #1A6B4A;
    --green-light: #E3F5ED;
    --border: rgba(13,13,13,0.10);
    --border-strong: rgba(13,13,13,0.18);
    --r: 6px;
    --r-lg: 12px;
    --r-xl: 20px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

    body {
   font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.65em;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4, h5 {
     font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.15;
    color: var(--ink);
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

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

  /* ===== ANNOUNCEMENT ===== */
  .announcement {
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .announcement a { text-decoration: underline; color: white; }

  /* ===== NAV ===== */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(246,244,239,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    height: 64px; gap: 24px;
  }
  .nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.5px; color: var(--ink); }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-2); transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--accent); }
  .nav-cta {
    background: var(--ink); color: var(--white) !important;
    padding: 10px 20px; border-radius: var(--r);
    font-size: 14px; font-weight: 500;
    transition: background 0.2s; white-space: nowrap;
  }
  .nav-cta:hover { background: var(--accent) !important; }

  /* ===== BREADCRUMB ===== */
  .breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--border); background: var(--white); }
  .breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-3); }
  .breadcrumb-inner a { color: var(--ink-3); transition: color 0.2s; }
  .breadcrumb-inner a:hover { color: var(--accent); }
  .breadcrumb-inner .current { color: var(--accent); font-weight: 600; }

  /* ===== HERO ===== */
  .hero {
    padding: 72px 0 60px;
    background: var(--paper);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -120px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(217,79,43,0.08) 0%, transparent 65%);
    pointer-events: none;
  }
  .hero-layout { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: center; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-light); color: var(--accent);
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 6px 14px;
    border-radius: 999px; margin-bottom: 20px;
    border: 1px solid rgba(217,79,43,0.2);
  }
  .hero-tag::before {
    content: ''; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.5; transform:scale(1.4); }
  }
  .hero h1 {
    font-size: clamp(36px, 4.5vw, 62px);
    font-weight: 800; letter-spacing: -2px;
    max-width: 680px; margin-bottom: 20px; color: var(--ink);
  }
  .hero h1 em { font-style: normal; color: var(--accent); }
  .hero-sub {
    font-size: 17px; color: var(--ink-2);
    max-width: 560px; line-height: 1.75;
    margin-bottom: 32px; font-weight: 300;
  }
  .hero-sub strong { color: var(--ink); font-weight: 500; }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

  /* buttons */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 500;
    padding: 14px 28px; border-radius: var(--r);
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
  }
  .btn-primary:hover { background: #C0401E; transform: translateY(-1px); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 500;
    padding: 14px 28px; border-radius: var(--r);
    border: 1.5px solid var(--border-strong);
    cursor: pointer; transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
  }
  .btn-secondary:hover { border-color: var(--ink); background: rgba(13,13,13,0.04); }
  .btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366; color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 500;
    padding: 14px 28px; border-radius: var(--r);
    border: none; cursor: pointer;
    transition: background 0.2s; text-decoration: none;
  }
  .btn-whatsapp:hover { background: #1EBC58; }
  .btn-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* ===== HERO STAT BOX (right side) ===== */
  .hero-stat-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(13,13,13,0.06);
  }
  .stat-box-header {
    background: var(--ink);
    padding: 20px 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .stat-box-header .dot { width: 8px; height: 8px; border-radius: 50%; }
  .stat-box-header .dot-red { background: #FF5F56; }
  .stat-box-header .dot-yellow { background: #FFBD2E; }
  .stat-box-header .dot-green { background: #27C93F; }
  .stat-box-label { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); margin-left: 4px; }
  .stat-box-body { padding: 24px; display: flex; flex-direction: column; gap: 14px; }
  .stat-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px;
    background: var(--paper);
    border-radius: var(--r);
    border: 1px solid var(--border);
    gap: 12px;
  }
  .stat-row-label { font-size: 12px; color: var(--ink-3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
  .stat-row-value { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.5px; }
  .stat-row-value span { color: var(--accent); }
  .stat-row-badge {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; padding: 3px 8px; border-radius: 999px;
    background: var(--green-light); color: var(--green);
  }

  /* ===== TRUST BAR ===== */
  .trust-bar { padding: 28px 0; border-bottom: 1px solid var(--border); background: var(--white); text-align: center; }
  .trust-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); margin-bottom: 18px; font-weight: 500; }
  .trust-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 24px; }
  .trust-badge {
    display: flex; align-items: center; gap: 8px;
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px;
    color: var(--ink-2); padding: 8px 16px;
    border: 1px solid var(--border); border-radius: var(--r);
    background: var(--paper);
  }
  .trust-badge .stars { color: #F5A623; font-size: 11px; letter-spacing: 1px; }

  /* ===== SECTION HELPERS ===== */
  section { padding: 80px 0; }
  .section-tag {
    display: inline-block; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--accent); margin-bottom: 10px;
  }
  .section-h2 { font-size: clamp(26px, 3.2vw, 42px); font-weight: 800; letter-spacing: -1.2px; margin-bottom: 14px; }
  .section-intro { font-size: 16px; color: var(--ink-2); line-height: 1.75; font-weight: 300; }
  .section-header { margin-bottom: 48px; }

  /* ===== WHY US ===== */
  .why-section { background: var(--white); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
  .why-text p { font-size: 15px; color: var(--ink-2); line-height: 1.8; margin-bottom: 20px; }
  .driver-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
  .driver-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 18px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: border-color 0.2s;
  }
  .driver-item:hover { border-color: var(--accent); }
  .driver-icon { font-size: 20px; width: 40px; height: 40px; border-radius: var(--r); background: var(--accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .driver-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; margin-bottom: 4px; }
  .driver-desc { font-size: 13px; color: var(--ink-3); line-height: 1.6; }

  /* ===== SERVICES TABLE ===== */
  .services-section { background: var(--paper-2); }
  .services-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: var(--white);
  }
  table { width: 100%; border-collapse: collapse; }
  thead tr { background: var(--ink); }
  thead th {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7); padding: 16px 20px; text-align: left;
  }
  thead th:first-child { color: white; }
  tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
  tbody tr:last-child { border-bottom: none; }
  tbody tr:hover { background: var(--accent-light); }
  tbody td { padding: 18px 20px; vertical-align: top; font-size: 13px; line-height: 1.65; }
  .td-service {
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
    color: var(--ink); white-space: nowrap;
    display: flex; align-items: flex-start; gap: 10px;
  }
  .td-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
  td:nth-child(2) { color: var(--ink-2); max-width: 340px; }
  td:nth-child(3) { color: var(--green); font-weight: 500; max-width: 220px; }
  td:nth-child(3)::before { content: '✓ '; color: var(--green); font-weight: 700; }

  /* ===== PROCESS ===== */
  .process-section { background: var(--ink); color: var(--white); }
  .process-section .section-tag { color: var(--accent-2); }
  .process-section .section-h2 { color: var(--white); }
  .process-section .section-intro { color: rgba(255,255,255,0.55); }

  .process-flow {
    display: flex; align-items: flex-start; gap: 0;
    position: relative; margin-top: 8px;
  }
  .process-flow::before {
    content: '';
    position: absolute;
    top: 28px; left: 4%;
    width: 92%; height: 1px;
    background: rgba(255,255,255,0.1);
  }
  .process-step { flex: 1; padding: 0 12px; text-align: center; position: relative; }
  .step-circle {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(217,79,43,0.15);
    border: 1px solid rgba(217,79,43,0.3);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px;
    color: var(--accent-2); margin: 0 auto 18px; position: relative; z-index: 2;
  }
  .step-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; color: white; margin-bottom: 8px; }
  .step-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }
  .step-phase {
    display: inline-block;
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--accent-2); background: rgba(217,79,43,0.12);
    border: 1px solid rgba(217,79,43,0.25);
    padding: 3px 10px; border-radius: 999px; margin-bottom: 16px;
  }

  /* ===== DIFFERENTIATORS ===== */
  .diff-section { background: var(--paper); }
  .diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .diff-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 28px 20px;
    text-align: center; transition: border-color 0.2s, transform 0.2s;
  }
  .diff-card:hover { border-color: var(--accent); transform: translateY(-3px); }
  .diff-num { font-family: 'Syne', sans-serif; font-size: 34px; font-weight: 800; color: var(--accent); letter-spacing: -1px; display: block; margin-bottom: 6px; }
  .diff-label { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

  /* ===== WHAT SETS US APART ===== */
  .apart-section { background: var(--white); }
  .apart-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .apart-card {
    border: 1px solid var(--border); border-radius: var(--r-lg);
    padding: 26px 24px; background: var(--paper);
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
    position: relative; overflow: hidden;
  }
  .apart-card::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: var(--accent); transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .apart-card:hover { border-color: var(--border-strong); transform: translateY(-3px); background: var(--white); }
  .apart-card:hover::before { transform: scaleX(1); }
  .apart-icon { font-size: 24px; margin-bottom: 14px; }
  .apart-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 8px; }
  .apart-desc { font-size: 13px; color: var(--ink-2); line-height: 1.65; }

  /* ===== REVIEWS ===== */
  .reviews-section { background: var(--paper-2); }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .review-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 28px 24px;
  }
  .review-platform { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
  .platform-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; color: var(--ink-2); }
  .platform-stars { color: #F5A623; font-size: 13px; letter-spacing: 2px; }
  .review-count { font-size: 11px; color: var(--ink-3); margin-bottom: 16px; }
  .review-text {
    font-size: 14px; color: var(--ink-2); line-height: 1.7;
    font-style: italic; border-left: 3px solid var(--accent);
    padding-left: 16px; margin-bottom: 16px;
  }
  .review-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; color: var(--green); font-weight: 600;
    background: var(--green-light); padding: 4px 10px; border-radius: 999px;
  }
  .review-badge::before { content: '✓'; }

  /* ===== FAQ ===== */
  .faq-section { background: var(--white); }
  .faq-wrapper { max-width: 820px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q {
    width: 100%; background: none; border: none;
    text-align: left; padding: 20px 0;
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
    color: var(--ink); cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--accent); }
  .faq-toggle {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--paper);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
    color: var(--ink-2); font-weight: 300;
  }
  .faq-item.open .faq-toggle { background: var(--accent); color: white; transform: rotate(45deg); }
  .faq-a { font-size: 15px; color: var(--ink-2); line-height: 1.75; padding: 0 0 20px; display: none; }
  .faq-item.open .faq-a { display: block; }

  /* ===== INDUSTRIES ===== */
  .industries-section { background: var(--paper-2); }
  .industry-tags { display: flex; flex-wrap: wrap; gap: 10px; }
  .industry-tag {
    font-size: 13px; font-weight: 500; padding: 8px 16px;
    border-radius: var(--r); border: 1px solid var(--border-strong);
    background: var(--white); color: var(--ink-2);
    transition: border-color 0.2s, color 0.2s; cursor: default;
  }
  .industry-tag:hover { border-color: var(--accent); color: var(--accent); }

  /* ===== CTA BAND ===== */
  .cta-band { background: var(--accent); padding: 80px 0; text-align: center; }
  .cta-band h2 { font-size: clamp(26px, 4vw, 48px); font-weight: 800; color: white; letter-spacing: -1.5px; margin-bottom: 14px; }
  .cta-band p { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 32px; font-weight: 300; }
  .cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
  .btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; color: var(--accent);
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
    padding: 14px 32px; border-radius: var(--r);
    border: none; cursor: pointer; transition: transform 0.15s;
    text-decoration: none;
  }
  .btn-white:hover { transform: translateY(-2px); }
  .btn-outline-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: white;
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
    padding: 14px 32px; border-radius: var(--r);
    border: 1.5px solid rgba(255,255,255,0.5);
    cursor: pointer; transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
  }
  .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

  /* ===== FOOTER ===== */
  footer { background: var(--ink); color: white; padding: 48px 0 32px; }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px;
  }
  .footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px; margin-bottom: 12px; }
  .footer-logo span { color: var(--accent-2); }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 20px; }
  .footer-contact a { display: block; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 6px; transition: color 0.2s; }
  .footer-contact a:hover { color: var(--accent-2); }
  .footer-col h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 12px; color: white; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
  .footer-col ul li a:hover { color: white; }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
  .footer-cert { display: flex; gap: 12px; flex-wrap: wrap; }
  .cert-badge { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 10px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.45); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 960px) {
    .hero-layout { grid-template-columns: 1fr; gap: 40px; }
    .hero-stat-box { max-width: 520px; }
    .why-grid { grid-template-columns: 1fr; gap: 36px; }
    .process-flow { flex-wrap: wrap; }
    .process-flow::before { display: none; }
    .process-step { flex: 0 0 calc(50% - 12px); margin-bottom: 24px; }
    .diff-grid { grid-template-columns: 1fr 1fr; }
    .apart-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .diff-grid { grid-template-columns: 1fr 1fr; }
    .process-step { flex: 0 0 100%; }
    .footer-top { grid-template-columns: 1fr; }
    .hero h1 { font-size: 34px; letter-spacing: -1px; }
    td:nth-child(2), td:nth-child(3) { display: none; }
  }
/* MAIN CONTACT SECTION */
  .contact-section {
    padding: 72px 0 80px;
    background: var(--paper);
  }

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

  /* LEFT COLUMN */
  .contact-left { display: flex; flex-direction: column; gap: 28px; }

  .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 10px;
  }

  .contact-left h2 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
  }

  .contact-left > p {
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 8px;
  }

  /* Contact Info Cards */
  .info-cards { display: flex; flex-direction: column; gap: 12px; }

  .info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .info-card:hover { border-color: var(--accent); transform: translateX(4px); }

  .info-icon {
    width: 44px; height: 44px;
    border-radius: var(--r);
    background: var(--accent-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .info-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    margin-bottom: 2px;
  }

  .info-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
  }

  .info-value a {
    color: var(--accent);
    transition: opacity 0.2s;
  }
  .info-value a:hover { opacity: 0.75; }

  /* Social Row */
  .social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
  }
  .social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--r);
    border: 1px solid var(--border-strong);
    background: var(--white);
    color: var(--ink-2);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }
  .social-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

  /* Why card */
  .why-card {
    background: var(--ink);
    border-radius: var(--r-lg);
    padding: 24px;
    color: white;
  }
  .why-card h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: white;
    margin-bottom: 14px;
  }
  .why-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .why-list li {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
  }
  .why-list li::before {
    content: '→';
    color: var(--accent-2);
    font-weight: 700;
    font-size: 11px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  /* RIGHT COLUMN - FORM */
  .form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 36px 32px;
    position: sticky;
    top: 88px;
  }

  .form-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }

  .form-header h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
  }

  .form-header p {
    font-size: 13px;
    color: var(--ink-3);
    line-height: 1.6;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .form-group { margin-bottom: 14px; }
  .form-group:last-child { margin-bottom: 0; }

  label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
  }

  label span { color: var(--accent); }

  input, select, textarea {
    width: 100%;
    padding: 11px 14px;
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    background: var(--paper);
    border: 1.5px solid var(--border-strong);
    border-radius: var(--r);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    appearance: none;
    -webkit-appearance: none;
  }

  input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    background: var(--white);
  }

  input::placeholder, textarea::placeholder { color: var(--ink-3); font-weight: 300; }

  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23717171' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
  }

  textarea { resize: vertical; min-height: 96px; }

  .btn-submit {
    width: 100%;
    padding: 14px 28px;
    background: var(--accent);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: var(--r);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .btn-submit:hover { background: #C0401E; transform: translateY(-1px); }
  .btn-submit:active { transform: translateY(0); }
  .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

  .form-note {
    font-size: 11px;
    color: var(--ink-3);
    text-align: center;
    margin-top: 12px;
    line-height: 1.6;
  }

  .form-status {
    padding: 10px 14px;
    border-radius: var(--r);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    margin-top: 12px;
    display: none;
  }
  .form-status.success { background: var(--green-light); color: var(--green); display: block; }
  .form-status.error { background: #FDEAEA; color: #B91C1C; display: block; }

  /* Whatsapp alt */
  .wa-alt {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F0FBF5;
    border: 1px solid rgba(37,211,102,0.25);
    border-radius: var(--r);
    padding: 12px 16px;
    margin-top: 14px;
    color: #1A7A3C;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
    text-decoration: none;
    justify-content: center;
  }
  .wa-alt:hover { background: #E0F7EA; color: #1A7A3C; }
  .wa-alt svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* TRUST STRIP */
  .trust-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
  }
  .trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
  }
  .trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--ink-2);
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: var(--paper);
  }
  .trust-badge .stars { color: #F5A623; font-size: 11px; letter-spacing: 1px; }

  /* STATS SECTION */
  .stats-section { padding: 60px 0; background: var(--paper-2); }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 20px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
  }
  .stat-card:hover { border-color: var(--accent); transform: translateY(-2px); }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
    display: block;
  }
  .stat-num span { color: var(--accent); }
  .stat-label {
    font-size: 12px;
    color: var(--ink-3);
    display: block;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* FAQ MINI */
  .faq-mini { padding: 72px 0; background: var(--white); }
  .faq-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }
  .faq-mini-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px 22px;
  }
  .faq-mini-card h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
  }
  .faq-mini-card p { font-size: 13px; color: var(--ink-2); line-height: 1.65; }

  /* CTA BAND */
  .cta-band {
    background: var(--accent);
    padding: 72px 0;
    text-align: center;
  }
  .cta-band h2 {
    font-size: clamp(26px, 3.5vw, 44px);
    font-weight: 800;
    color: white;
    letter-spacing: -1.2px;
    margin-bottom: 12px;
  }
  .cta-band p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    font-weight: 300;
  }
  .cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
  .btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; color: var(--accent);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 600;
    padding: 14px 32px; border-radius: var(--r);
    border: none; cursor: pointer;
    transition: transform 0.15s;
  }
  .btn-white:hover { transform: translateY(-2px); }
  .btn-outline-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 500;
    padding: 14px 32px; border-radius: var(--r);
    border: 1.5px solid rgba(255,255,255,0.5);
    cursor: pointer; transition: border-color 0.2s, background 0.2s;
  }
  .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

  /* FOOTER */
  footer {
    background: var(--ink);
    color: white;
    padding: 48px 0 32px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
  }
  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 12px;
  }
  .footer-logo span { color: var(--accent-2); }
  .footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .footer-contact a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
    transition: color 0.2s;
  }
  .footer-contact a:hover { color: var(--accent-2); }
  .footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: white; }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
  .footer-cert { display: flex; gap: 12px; flex-wrap: wrap; }
  .cert-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.45);
  }

  /* Section header utility */
  .section-header { margin-bottom: 40px; }
  .section-h2 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
  }
  .section-intro {
    font-size: 16px;
    color: var(--ink-2);
    line-height: 1.7;
    font-weight: 300;
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .form-card { position: static; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .faq-mini-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 32px; letter-spacing: -1px; }
  }

/* ===== HERO ===== */
  .hero {
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217,79,43,0.08) 0%, transparent 65%);
    pointer-events: none;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
    border: 1px solid rgba(217,79,43,0.2);
  }

  .hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }

  .hero h1 {
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    letter-spacing: -2px;
    max-width: 820px;
    margin-bottom: 24px;
    color: var(--ink);
  }

  .hero h1 em {
    font-style: normal;
    color: var(--accent);
    position: relative;
  }

  .hero-sub {
    font-size: 18px;
    color: var(--ink-2);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
  }

  .hero-sub strong {
    color: var(--ink);
    font-weight: 500;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
  }

  .btn-primary:hover { background: #C0401E; transform: translateY(-1px); }
  .btn-primary:active { transform: translateY(0); }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--r);
    border: 1.5px solid var(--border-strong);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
  }

  .btn-secondary:hover { border-color: var(--ink); background: rgba(13,13,13,0.04); }

  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
  }

  .btn-whatsapp:hover { background: #1EBC58; }

  .btn-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* ===== STATS BAR ===== */
  .stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
  }

  .stat-item {
    background: var(--white);
    padding: 24px 20px;
    text-align: center;
  }

  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--ink);
    display: block;
    letter-spacing: -1px;
  }

  .stat-num span { color: var(--accent); }

  .stat-label {
    font-size: 12px;
    color: var(--ink-3);
    font-weight: 400;
    display: block;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* ===== TRUST LOGOS ===== */
  .trust-bar {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
  }

  .trust-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-3);
    margin-bottom: 20px;
    font-weight: 500;
  }

  .trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
  }

  .trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--ink-2);
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: var(--white);
  }

  .trust-badge .stars {
    color: #F5A623;
    font-size: 11px;
    letter-spacing: 1px;
  }

  /* ===== SECTION HEADERS ===== */
  section { padding: 80px 0; }

  .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 12px;
  }

  .section-h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
  }

  .section-intro {
    font-size: 17px;
    color: var(--ink-2);
    max-width: 600px;
    line-height: 1.7;
    font-weight: 300;
  }

  .section-header { margin-bottom: 48px; }

  /* ===== WHY US ===== */
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .why-text p {
    font-size: 16px;
    color: var(--ink-2);
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .why-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
  }

  .pill {
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: var(--white);
    color: var(--ink-2);
  }

  .why-proof {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .proof-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.2s, transform 0.2s;
  }

  .proof-card:hover { border-color: var(--accent); transform: translateY(-2px); }

  .proof-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
  }

  .proof-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
  }

  .proof-desc {
    font-size: 13px;
    color: var(--ink-3);
    line-height: 1.6;
  }

  /* ===== SERVICES ===== */
  .services-section { background: var(--white); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .service-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .service-card:hover { border-color: var(--border-strong); transform: translateY(-3px); background: var(--white); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r);
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
  }

  .service-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 10px;
  }

  .service-desc {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .service-outcomes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .service-outcomes li {
    font-size: 12px;
    color: var(--ink-3);
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .service-outcomes li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
  }

  /* ===== PROCESS ===== */
  .process-section { background: var(--ink); color: var(--white); }
  .process-section .section-tag { color: var(--accent-2); }
  .process-section .section-h2 { color: var(--white); }
  .process-section .section-intro { color: rgba(255,255,255,0.6); }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(255,255,255,0.12);
  }

  .process-step {
    padding: 0 16px;
    text-align: center;
    position: relative;
  }

  .step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(217,79,43,0.15);
    border: 1px solid rgba(217,79,43,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--accent-2);
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
  }

  .step-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: white;
    margin-bottom: 8px;
  }

  .step-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
  }

  /* ===== REVIEWS ===== */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
  }

  .review-platform {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }

  .platform-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--ink-2);
  }

  .platform-stars {
    color: #F5A623;
    font-size: 13px;
    letter-spacing: 2px;
  }

  .review-count {
    font-size: 11px;
    color: var(--ink-3);
    margin-bottom: 16px;
  }

  .review-text {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.7;
    font-style: italic;
    border-left: 3px solid var(--accent);
    padding-left: 16px;
    margin-bottom: 16px;
  }

  .review-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--green);
    font-weight: 600;
    background: var(--green-light);
    padding: 4px 10px;
    border-radius: 999px;
  }

  .review-badge::before { content: '✓'; }

  /* ===== DIFFERENTIATORS ===== */
  .diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .diff-card {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 20px;
    background: var(--white);
    text-align: center;
  }

  .diff-num {
    font-family: 'Syne', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
    display: block;
    margin-bottom: 8px;
  }

  .diff-label {
    font-size: 14px;
    color: var(--ink-2);
    font-weight: 400;
  }

  /* ===== FAQ ===== */
  .faq-section { background: var(--white); }
  .faq-wrapper { max-width: 780px; margin: 0 auto; }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s;
  }

  .faq-q:hover { color: var(--accent); }

  .faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
    color: var(--ink-2);
    font-weight: 300;
  }

  .faq-item.open .faq-toggle { background: var(--accent); color: white; transform: rotate(45deg); }

  .faq-a {
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.75;
    padding: 0 0 20px;
    display: none;
  }

  .faq-item.open .faq-a { display: block; }

  /* ===== INDUSTRIES ===== */
  .industries-section { background: var(--paper-2); }

  .industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .industry-tag {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--r);
    border: 1px solid var(--border-strong);
    background: var(--white);
    color: var(--ink-2);
    transition: border-color 0.2s, color 0.2s;
    cursor: default;
  }

  .industry-tag:hover { border-color: var(--accent); color: var(--accent); }

  /* ===== CTA BAND ===== */
  .cta-band {
    background: var(--accent);
    padding: 80px 0;
    text-align: center;
  }

  .cta-band h2 {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
  }

  .cta-band p {
    font-size: 18px;
    color: rgba(255,255,255,0.82);
    margin-bottom: 36px;
    font-weight: 300;
  }

  .cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--accent);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
  }

  .btn-white:hover { transform: translateY(-2px); }

  .btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: var(--r);
    border: 1.5px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

  /* ===== FOOTER ===== */
  footer {
    background: var(--ink);
    color: white;
    padding: 48px 0 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
  }

  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 12px;
  }

  .footer-logo span { color: var(--accent-2); }

  .footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .footer-contact a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
    transition: color 0.2s;
  }

  .footer-contact a:hover { color: var(--accent-2); }

  .footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .footer-col ul { list-style: none; }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
  }

  .footer-col ul li a:hover { color: white; }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
  }

  .footer-cert {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .cert-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
  }

  /* ===== ANNOUNCEMENT BAR ===== */
  .announcement {
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .announcement a {
    text-decoration: underline;
    color: white;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
    .process-steps::before { display: none; }
    .reviews-grid { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 600px) {
    .nav-links { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero h1 { font-size: 36px; letter-spacing: -1px; }
  }
/* buttons */
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent); color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 500;
    padding: 14px 28px; border-radius: var(--r);
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
  }
  .btn-primary:hover { background: #C0401E; transform: translateY(-1px); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 500;
    padding: 14px 28px; border-radius: var(--r);
    border: 1.5px solid var(--border-strong);
    cursor: pointer; transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
  }
  .btn-secondary:hover { border-color: var(--ink); background: rgba(13,13,13,0.04); }
  .btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25D366; color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 500;
    padding: 14px 28px; border-radius: var(--r);
    border: none; cursor: pointer;
    transition: background 0.2s; text-decoration: none;
  }
  .btn-whatsapp:hover { background: #1EBC58; }
  .btn-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* ===== HERO STAT BOX (right side) ===== */
  .hero-stat-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(13,13,13,0.06);
  }
  .stat-box-header {
    background: var(--ink);
    padding: 20px 24px;
    display: flex; align-items: center; gap: 12px;
  }
  .stat-box-header .dot { width: 8px; height: 8px; border-radius: 50%; }
  .stat-box-header .dot-red { background: #FF5F56; }
  .stat-box-header .dot-yellow { background: #FFBD2E; }
  .stat-box-header .dot-green { background: #27C93F; }
  .stat-box-label { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); margin-left: 4px; }
  .stat-box-body { padding: 24px; display: flex; flex-direction: column; gap: 14px; }
  .stat-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px;
    background: var(--paper);
    border-radius: var(--r);
    border: 1px solid var(--border);
    gap: 12px;
  }
  .stat-row-label { font-size: 12px; color: var(--ink-3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
  .stat-row-value { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.5px; }
  .stat-row-value span { color: var(--accent); }
  .stat-row-badge {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; padding: 3px 8px; border-radius: 999px;
    background: var(--green-light); color: var(--green);
  }

  /* ===== TRUST BAR ===== */
  .trust-bar { padding: 28px 0; border-bottom: 1px solid var(--border); background: var(--white); text-align: center; }
  .trust-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3); margin-bottom: 18px; font-weight: 500; }
  .trust-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 24px; }
  .trust-badge {
    display: flex; align-items: center; gap: 8px;
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px;
    color: var(--ink-2); padding: 8px 16px;
    border: 1px solid var(--border); border-radius: var(--r);
    background: var(--paper);
  }
  .trust-badge .stars { color: #F5A623; font-size: 11px; letter-spacing: 1px; }

  /* ===== SECTION HELPERS ===== */
  section { padding: 80px 0; }
  .section-tag {
    display: inline-block; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--accent); margin-bottom: 10px;
  }
  .section-h2 { font-size: clamp(26px, 3.2vw, 42px); font-weight: 800; letter-spacing: -1.2px; margin-bottom: 14px; }
  .section-intro { font-size: 16px; color: var(--ink-2); line-height: 1.75; font-weight: 300; }
  .section-header { margin-bottom: 48px; }

  /* ===== WHY US ===== */
  .why-section { background: var(--white); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
  .why-text p { font-size: 15px; color: var(--ink-2); line-height: 1.8; margin-bottom: 20px; }
  .driver-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
  .driver-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 18px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: border-color 0.2s;
  }
  .driver-item:hover { border-color: var(--accent); }
  .driver-icon { font-size: 20px; width: 40px; height: 40px; border-radius: var(--r); background: var(--accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .driver-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; margin-bottom: 4px; }
  .driver-desc { font-size: 13px; color: var(--ink-3); line-height: 1.6; }

  /* ===== SERVICES TABLE ===== */
  .services-section { background: var(--paper-2); }
  .services-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: var(--white);
  }
  table { width: 100%; border-collapse: collapse; }
  thead tr { background: var(--ink); }
  thead th {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7); padding: 16px 20px; text-align: left;
  }
  thead th:first-child { color: white; }
  tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
  tbody tr:last-child { border-bottom: none; }
  tbody tr:hover { background: var(--accent-light); }
  tbody td { padding: 18px 20px; vertical-align: top; font-size: 13px; line-height: 1.65; }
  .td-service {
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
    color: var(--ink); white-space: nowrap;
    display: flex; align-items: flex-start; gap: 10px;
  }
  .td-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
  td:nth-child(2) { color: var(--ink-2); max-width: 340px; }
  td:nth-child(3) { color: var(--green); font-weight: 500; max-width: 220px; }
  td:nth-child(3)::before { content: '✓ '; color: var(--green); font-weight: 700; }

  /* ===== PROCESS ===== */
  .process-section { background: var(--ink); color: var(--white); }
  .process-section .section-tag { color: var(--accent-2); }
  .process-section .section-h2 { color: var(--white); }
  .process-section .section-intro { color: rgba(255,255,255,0.55); }

  .process-flow {
    display: flex; align-items: flex-start; gap: 0;
    position: relative; margin-top: 8px;
  }
  .process-flow::before {
    content: '';
    position: absolute;
    top: 28px; left: 4%;
    width: 92%; height: 1px;
    background: rgba(255,255,255,0.1);
  }
  .process-step { flex: 1; padding: 0 12px; text-align: center; position: relative; }
  .step-circle {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(217,79,43,0.15);
    border: 1px solid rgba(217,79,43,0.3);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px;
    color: var(--accent-2); margin: 0 auto 18px; position: relative; z-index: 2;
  }
  .step-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; color: white; margin-bottom: 8px; }
  .step-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }
  .step-phase {
    display: inline-block;
    font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--accent-2); background: rgba(217,79,43,0.12);
    border: 1px solid rgba(217,79,43,0.25);
    padding: 3px 10px; border-radius: 999px; margin-bottom: 16px;
  }

  /* ===== DIFFERENTIATORS ===== */
  .diff-section { background: var(--paper); }
  .diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .diff-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 28px 20px;
    text-align: center; transition: border-color 0.2s, transform 0.2s;
  }
  .diff-card:hover { border-color: var(--accent); transform: translateY(-3px); }
  .diff-num { font-family: 'Syne', sans-serif; font-size: 34px; font-weight: 800; color: var(--accent); letter-spacing: -1px; display: block; margin-bottom: 6px; }
  .diff-label { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

  /* ===== WHAT SETS US APART ===== */
  .apart-section { background: var(--white); }
  .apart-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .apart-card {
    border: 1px solid var(--border); border-radius: var(--r-lg);
    padding: 26px 24px; background: var(--paper);
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
    position: relative; overflow: hidden;
  }
  .apart-card::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: var(--accent); transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s;
  }
  .apart-card:hover { border-color: var(--border-strong); transform: translateY(-3px); background: var(--white); }
  .apart-card:hover::before { transform: scaleX(1); }
  .apart-icon { font-size: 24px; margin-bottom: 14px; }
  .apart-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 8px; }
  .apart-desc { font-size: 13px; color: var(--ink-2); line-height: 1.65; }

  /* ===== REVIEWS ===== */
  .reviews-section { background: var(--paper-2); }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .review-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 28px 24px;
  }
  .review-platform { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
  .platform-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; color: var(--ink-2); }
  .platform-stars { color: #F5A623; font-size: 13px; letter-spacing: 2px; }
  .review-count { font-size: 11px; color: var(--ink-3); margin-bottom: 16px; }
  .review-text {
    font-size: 14px; color: var(--ink-2); line-height: 1.7;
    font-style: italic; border-left: 3px solid var(--accent);
    padding-left: 16px; margin-bottom: 16px;
  }
  .review-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; color: var(--green); font-weight: 600;
    background: var(--green-light); padding: 4px 10px; border-radius: 999px;
  }
  .review-badge::before { content: '✓'; }

  /* ===== FAQ ===== */
  .faq-section { background: var(--white); }
  .faq-wrapper { max-width: 820px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q {
    width: 100%; background: none; border: none;
    text-align: left; padding: 20px 0;
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
    color: var(--ink); cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--accent); }
  .faq-toggle {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--paper);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
    color: var(--ink-2); font-weight: 300;
  }
  .faq-item.open .faq-toggle { background: var(--accent); color: white; transform: rotate(45deg); }
  .faq-a { font-size: 15px; color: var(--ink-2); line-height: 1.75; padding: 0 0 20px; display: none; }
  .faq-item.open .faq-a { display: block; }

  /* ===== INDUSTRIES ===== */
  .industries-section { background: var(--paper-2); }
  .industry-tags { display: flex; flex-wrap: wrap; gap: 10px; }
  .industry-tag {
    font-size: 13px; font-weight: 500; padding: 8px 16px;
    border-radius: var(--r); border: 1px solid var(--border-strong);
    background: var(--white); color: var(--ink-2);
    transition: border-color 0.2s, color 0.2s; cursor: default;
  }
  .industry-tag:hover { border-color: var(--accent); color: var(--accent); }

  /* ===== CTA BAND ===== */
  .cta-band { background: var(--accent); padding: 80px 0; text-align: center; }
  .cta-band h2 { font-size: clamp(26px, 4vw, 48px); font-weight: 800; color: white; letter-spacing: -1.5px; margin-bottom: 14px; }
  .cta-band p { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 32px; font-weight: 300; }
  .cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
  .btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; color: var(--accent);
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
    padding: 14px 32px; border-radius: var(--r);
    border: none; cursor: pointer; transition: transform 0.15s;
    text-decoration: none;
  }
  .btn-white:hover { transform: translateY(-2px); }
  .btn-outline-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: white;
    font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
    padding: 14px 32px; border-radius: var(--r);
    border: 1.5px solid rgba(255,255,255,0.5);
    cursor: pointer; transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
  }
  .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

  /* ===== FOOTER ===== */
  footer { background: var(--ink); color: white; padding: 48px 0 32px; }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px;
  }
  .footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px; margin-bottom: 12px; }
  .footer-logo span { color: var(--accent-2); }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 20px; }
  .footer-contact a { display: block; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 6px; transition: color 0.2s; }
  .footer-contact a:hover { color: var(--accent-2); }
  .footer-col h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 12px; color: white; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
  .footer-col ul li a:hover { color: white; }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
  .footer-cert { display: flex; gap: 12px; flex-wrap: wrap; }
  .cert-badge { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 10px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.45); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 960px) {
    .hero-layout { grid-template-columns: 1fr; gap: 40px; }
    .hero-stat-box { max-width: 520px; }
    .why-grid { grid-template-columns: 1fr; gap: 36px; }
    .process-flow { flex-wrap: wrap; }
    .process-flow::before { display: none; }
    .process-step { flex: 0 0 calc(50% - 12px); margin-bottom: 24px; }
    .diff-grid { grid-template-columns: 1fr 1fr; }
    .apart-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .diff-grid { grid-template-columns: 1fr 1fr; }
    .process-step { flex: 0 0 100%; }
    .footer-top { grid-template-columns: 1fr; }
    .hero h1 { font-size: 34px; letter-spacing: -1px; }
    td:nth-child(2), td:nth-child(3) { display: none; }
  }