/* ── DESIGN TOKENS ── */

    /* ── ANIMATIONS CORE ── */
    .reveal {
      opacity: 0;
      transform: translateY(35px) scale(0.98);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
      will-change: opacity, transform;
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* ── WHATSAPP FLOATING ── */
    .wa-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 999;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
      transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
      animation: waPulse 3s ease-in-out infinite;
    }

    .wa-float:hover {
      transform: scale(1.15) rotate(-5deg);
      box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    }

    .wa-float svg {
      width: 28px;
      height: 28px;
      fill: #fff;
    }

    @keyframes waPulse {

      0%,
      100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.3);
      }

      50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0);
      }
    }

    /* ── TOP STRIP ── */

    /* ── NAV ── */

    .logo:hover {
      transform: scale(1.05);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0%;
      height: 2px;
      background: var(--tagz);
      transition: width 0.3s var(--ease);
      border-radius: 2px;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* ── BUTTONS ── */

    /* ── GENERAL TYPOGRAPHY & LAYOUT ── */
    .wrap {
      max-width: 1320px;
      margin: auto;
      padding: 0 20px;
      width: 100%;
    }

    section {
      padding: 80px 0;
    }

    .sec-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--ff-head);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--tagz);
      margin-bottom: 16px;
      text-transform: uppercase;
    }

    .sec-eyebrow::before {
      content: '';
      width: 24px;
      height: 2px;
      background: var(--tagz);
      border-radius: 999px;
    }

    .sec-head {
      font-family: var(--ff-head);
      font-size: clamp(36px, 8vw, 56px);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.1;
      margin-bottom: 18px;
    }

    .sec-head em {
      font-family: var(--ff-serif);
      font-style: italic;
      font-weight: 400;
      color: var(--tagz);
      letter-spacing: -0.02em;
    }

    .sec-desc {
      font-size: 16px;
      line-height: 1.6;
      color: var(--ink-2);
      margin-bottom: 24px;
      font-weight: 400;
    }

    .sec-sub {
      font-size: 16px;
      color: var(--ink-2);
      line-height: 1.6;
      font-weight: 500;
      max-width: 100%;
    }

    /* ── ABOUT HERO ── */
    .about-hero {
      background: var(--cream);
      position: relative;
      overflow: hidden;
      padding: 100px 0 60px;
    }

    .about-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, var(--paper) 1.5px, transparent 1.5px);
      background-size: 32px 32px;
      opacity: 0.7;
      pointer-events: none;
    }

    .corporate-meta {
      margin-top: 48px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      background: var(--warm);
      padding: 32px;
      border-radius: var(--r-xl);
      border: 1px solid var(--paper);
    }

    .meta-box h4 {
      font-family: var(--ff-head);
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--ink-3);
      text-transform: uppercase;
      margin-bottom: 6px;
      font-weight: 700;
    }

    .meta-box p {
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.4;
    }

    .meta-box p.address {
      font-size: 14px;
      font-weight: 500;
      margin-top: 6px;
      color: var(--ink-2);
      line-height: 1.5;
    }

    /* ── TECH & CAPABILITIES SECTION ── */
    .tech-section {
      background: var(--warm);
      border-top: 1px solid var(--paper);
      border-bottom: 1px solid var(--paper);
    }

    .tech-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 48px;
    }

    .tech-card {
      background: #fff;
      border: 1px solid var(--paper);
      border-radius: var(--r-xl);
      padding: 32px;
      transition: all 0.4s var(--ease);
    }

    .tech-card h3 {
      font-family: var(--ff-head);
      font-size: 20px;
      margin-bottom: 12px;
      font-weight: 800;
      letter-spacing: -0.01em;
    }

    .tech-card p {
      font-size: 15px;
      color: var(--ink-2);
      line-height: 1.6;
      font-weight: 500;
    }

    /* ── PRODUCT CATEGORIES SECTION ── */
    .cat-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 48px;
    }

    .cat-card {
      background: #fff;
      border: 1px solid var(--paper);
      border-radius: var(--r-xl);
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.4s var(--ease);
    }

    .cat-card h3 {
      font-family: var(--ff-head);
      font-size: 22px;
      margin-bottom: 12px;
      font-weight: 800;
      letter-spacing: -0.01em;
    }

    .cat-card p {
      font-size: 15px;
      color: var(--ink-2);
      line-height: 1.6;
      margin-bottom: 28px;
      font-weight: 500;
    }

    .cat-link {
      font-family: var(--ff-head);
      font-size: 14px;
      font-weight: 800;
      color: var(--tagz);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* ── VALUE PROP SECTION ── */
    .prop-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 48px;
    }

    .prop-card {
      border-left: 4px solid var(--tagz);
      background: #fff;
      padding: 28px;
      border-radius: 0 var(--r-xl) var(--r-xl) 0;
      border-top: 1px solid var(--paper);
      border-right: 1px solid var(--paper);
      border-bottom: 1px solid var(--paper);
      transition: all 0.4s var(--ease);
    }

    .prop-card h4 {
      font-family: var(--ff-head);
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }

    .prop-card p {
      font-size: 14px;
      color: var(--ink-2);
      line-height: 1.6;
      font-weight: 500;
    }

    /* ── MISSION & VISION ── */
    .mv-section {
      background: var(--ink);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .mv-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .mv-box h3 {
      font-family: var(--ff-head);
      font-size: 32px;
      margin-bottom: 18px;
      color: var(--tagz);
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .mv-box p {
      font-size: 16px;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.7);
      font-weight: 400;
    }

    /* ── TRUST BADGES BAR ── */
    .badges-section {
      background: var(--ink);
      padding: 60px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .badges-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .badge-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--r-xl);
      padding: 24px 16px;
      text-align: center;
      transition: all 0.3s var(--ease);
    }

    .badge-icon {
      font-size: 32px;
      margin-bottom: 12px;
      display: block;
    }

    .badge-title {
      font-family: var(--ff-head);
      font-size: 14px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 4px;
    }

    .badge-sub {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 500;
    }

    /* ── FOOTER STYLES ── */

    .footer-top {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      margin-bottom: 60px;
    }

    .footer-brand p {
      font-size: 14px;
      line-height: 1.6;
      margin-top: 16px;
      font-weight: 400;
      max-width: 100%;
    }

    .footer-address {
      font-size: 12px;
      margin-top: 16px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.5;
    }

    .footer-address strong {
      color: rgba(255, 255, 255, 0.8);
      font-weight: 600;
      display: block;
      margin-bottom: 4px;
    }

    .footer-col h4 {
      font-family: var(--ff-head);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 20px;
    }

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

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

    .footer-col a {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.6);
      transition: color 0.2s, transform 0.2s;
      display: inline-block;
    }

    .footer-col a:hover {
      color: #fff;
      transform: translateX(4px);
    }

    .wa-footer {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(37, 211, 102, 0.1);
      border: 1px solid rgba(37, 211, 102, 0.3);
      border-radius: var(--r);
      padding: 12px 20px;
      margin-top: 24px;
      font-family: var(--ff-head);
      font-size: 14px;
      font-weight: 700;
      color: #25D366;
      transition: all 0.3s var(--ease);
    }

    .wa-footer:hover {
      background: rgba(37, 211, 102, 0.2);
      transform: translateY(-2px);
    }

    .wa-footer svg {
      width: 18px;
      height: 18px;
      fill: #25D366;
    }

    /* =========================================
   DESKTOP OVERRIDES (min-width Responsive) 
   ========================================= */
    @media (min-width: 600px) {
      .corporate-meta {
        grid-template-columns: repeat(2, 1fr);
      }

      .tech-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .prop-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (min-width: 768px) {

      .cat-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .badges-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

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

      .tech-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .cat-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .prop-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .mv-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
      }

      .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px;
      }

      .footer-brand p {
        max-width: 320px;
      }

      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    }

    @media (hover: hover) {
      .cat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.06);
        border-color: rgba(255, 69, 0, 0.25);
      }

      .tech-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
      }

      .prop-card:hover {
        transform: translateX(8px);
        border-color: rgba(255, 69, 0, 0.6);
      }

      .badge-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 69, 0, 0.4);
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
      }
    }
