    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      color: #1a1a1a;
      background: #fff;
      line-height: 1.6;
      overflow-x: hidden;
    }
 
    /* ===== VARIABLES ===== */
    :root {
      --orange: #E85D04;
      --orange-dark: #C44D00;
      --orange-light: #FF7722;
      --dark: #1A1A1A;
      --dark2: #2D2D2D;
      --grey: #4A4A4A;
      --grey-light: #F5F5F5;
      --white: #FFFFFF;
      --border: #E0E0E0;
    }
 
    /* ===== UTILITIES ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-tag {
      display: inline-block;
      background: rgba(232, 93, 4, 0.1);
      color: var(--orange);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 16px;
      border: 1px solid rgba(232, 93, 4, 0.2);
    }
    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-title span { color: var(--orange); }
    .section-subtitle {
      font-size: 16px;
      color: var(--grey);
      max-width: 580px;
      line-height: 1.7;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange);
      color: #fff;
      padding: 14px 28px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      border: none;
      cursor: pointer;
    }
    .btn-primary:hover {
      background: var(--orange-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(232, 93, 4, 0.3);
    }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--dark);
      padding: 14px 28px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: all 0.2s;
      border: 2px solid var(--dark);
      cursor: pointer;
    }
    .btn-secondary:hover {
      background: var(--dark);
      color: var(--white);
      transform: translateY(-2px);
    }
    .btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #25D366;
      color: #fff;
      padding: 14px 28px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: all 0.2s;
      border: none;
      cursor: pointer;
    }
    .btn-wa:hover {
      background: #1ebe5a;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    }
 
    /* ===== NAVBAR ===== */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(26, 26, 26, 0.97);
      backdrop-filter: blur(12px);
      transition: box-shadow 0.3s;
    }
    #navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .nav-logo-icon {
      width: 40px; height: 40px;
      background: var(--orange);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-weight: 900;
      font-size: 18px;
      color: #fff;
    }
    .nav-logo-text { line-height: 1.1; }
    .nav-logo-text strong {
      display: block;
      color: #fff;
      font-size: 16px;
      font-weight: 800;
    }
    .nav-logo-text span {
      color: var(--orange);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 0;
      height: 2px;
      background: var(--orange);
      transform: scaleX(0);
      transition: transform 0.2s;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all 0.3s;
    }
    .mobile-menu {
      display: none;
      background: var(--dark2);
      padding: 24px;
      flex-direction: column;
      gap: 16px;
    }
    .mobile-menu a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-menu.active { display: flex; }
 
    /* ===== HERO ===== */
    #hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding-top: 72px;
    padding-left: 20px;
    padding-right: 20px;

    background-image:
        linear-gradient(
            rgba(26,26,26,0.88),
            rgba(26,26,26,0.75)
        ),
        url("https://rubbercoreindo.com/wp-content/themes/Rubberconindo/images/gym-floor.jpg");

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    isolation: isolate;
    }@media (max-width: 768px) {
    #hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 80px;

        background-attachment: scroll;
        background-size: cover;
    }
    }
    #hero::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 120px;
      background: linear-gradient(to top, #fff, transparent);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      padding: 80px 0;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(232, 93, 4, 0.15);
      border: 1px solid rgba(232, 93, 4, 0.4);
      color: #FF9B5E;
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .hero-badge i { font-size: 10px; }
    .hero-title {
      font-size: clamp(36px, 5.5vw, 62px);
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .hero-title span { color: var(--orange); }
    .hero-subtitle {
      font-size: 17px;
      color: rgba(255,255,255,0.72);
      line-height: 1.75;
      margin-bottom: 36px;
      max-width: 560px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 56px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .hero-stat-num {
      font-size: 32px;
      font-weight: 900;
      color: var(--orange);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      margin-top: 4px;
    }
 
    /* ===== TICKER ===== */
    .ticker-bar {
      background: var(--orange);
      padding: 12px 0;
      overflow: hidden;
    }
    .ticker-track {
      display: flex;
      gap: 0;
      white-space: nowrap;
      animation: ticker 30s linear infinite;
    }
    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      padding: 0 32px;
    }
    .ticker-dot {
      width: 6px; height: 6px;
      background: rgba(255,255,255,0.5);
      border-radius: 50%;
      flex-shrink: 0;
    }
    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
 
    /* ===== ABOUT ===== */
    #about { padding: 100px 0; background: #fff; }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img-main {
      width: 100%;
      border-radius: 12px;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
    }
    .about-img-badge {
      position: absolute;
      bottom: -24px; right: -24px;
      background: var(--orange);
      color: #fff;
      padding: 24px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 16px 40px rgba(232,93,4,0.3);
    }
    .about-img-badge strong {
      display: block;
      font-size: 36px;
      font-weight: 900;
      line-height: 1;
    }
    .about-img-badge span {
      font-size: 12px;
      font-weight: 500;
      opacity: 0.85;
    }
    .about-list {
      margin: 24px 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .about-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--grey);
      line-height: 1.6;
    }
    .about-list li i {
      color: var(--orange);
      margin-top: 2px;
      font-size: 14px;
      flex-shrink: 0;
    }
    .about-kpi {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 32px;
    }
    .kpi-card {
      background: var(--grey-light);
      border-radius: 10px;
      padding: 20px;
      border-left: 3px solid var(--orange);
    }
    .kpi-card strong {
      display: block;
      font-size: 26px;
      font-weight: 900;
      color: var(--orange);
    }
    .kpi-card span {
      font-size: 13px;
      color: var(--grey);
    }
 
    /* ===== WHY US ===== */
    #why { padding: 100px 0; background: var(--grey-light); }
    .why-header { text-align: center; margin-bottom: 60px; }
    .why-header .section-subtitle { margin: 0 auto; }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .why-card {
      background: #fff;
      border-radius: 12px;
      padding: 36px 28px;
      border: 1px solid var(--border);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--orange);
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    .why-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.1);
      border-color: transparent;
    }
    .why-card:hover::before { transform: scaleX(1); }
    .why-icon {
      width: 56px; height: 56px;
      background: rgba(232, 93, 4, 0.1);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      font-size: 24px;
      color: var(--orange);
    }
    .why-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }
    .why-card p {
      font-size: 14px;
      color: var(--grey);
      line-height: 1.7;
    }
 
    /* ===== PRODUCTS ===== */
    #products { padding: 100px 0; background: #fff; }
    .products-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 56px;
      flex-wrap: wrap;
      gap: 24px;
    }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .product-card {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      transition: all 0.3s;
      background: #fff;
    }
    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.12);
      border-color: transparent;
    }
    .product-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
      background: var(--grey-light);
      position: relative;
      overflow: hidden;
    }
    .product-img-placeholder {
      width: 100%;
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }
    .product-img-placeholder i {
      font-size: 48px;
      color: var(--orange);
      opacity: 0.8;
    }
    .product-img-placeholder span {
      font-size: 12px;
      color: rgba(255,255,255,0.3);
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .product-body { padding: 24px; }
    .product-tag {
      display: inline-block;
      background: rgba(232, 93, 4, 0.1);
      color: var(--orange);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
      margin-bottom: 10px;
    }
    .product-body h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .product-body p {
      font-size: 14px;
      color: var(--grey);
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .product-specs {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 20px;
    }
    .product-specs li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--grey);
    }
    .product-specs li i {
      color: var(--orange);
      font-size: 10px;
      flex-shrink: 0;
    }
    .product-card-footer {
      padding: 16px 24px;
      border-top: 1px solid var(--border);
      background: var(--grey-light);
    }
    .product-card-footer a {
      font-size: 13px;
      font-weight: 600;
      color: var(--orange);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }
    .product-card-footer a:hover { gap: 10px; }
 
    /* ===== APPLICATIONS ===== */
    #applications { padding: 100px 0; background: var(--dark); }
    .applications-header { text-align: center; margin-bottom: 60px; }
    .applications-header .section-title { color: #fff; }
    .applications-header .section-subtitle { color: rgba(255,255,255,0.55); margin: 0 auto; }
    .applications-header .section-tag {
      background: rgba(232, 93, 4, 0.2);
      border-color: rgba(232, 93, 4, 0.3);
    }
    .apps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .app-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s;
      cursor: default;
    }
    .app-card:hover {
      background: rgba(232, 93, 4, 0.12);
      border-color: rgba(232, 93, 4, 0.3);
      transform: translateY(-4px);
    }
    .app-icon {
      font-size: 40px;
      color: var(--orange);
      margin-bottom: 16px;
      display: block;
    }
    .app-card h3 {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .app-card p {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      line-height: 1.6;
    }
 
    /* ===== PROCESS ===== */
    #process { padding: 100px 0; background: #fff; }
    .process-header { text-align: center; margin-bottom: 60px; }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, var(--orange), var(--orange-light));
      z-index: 0;
    }
    .process-step {
      text-align: center;
      position: relative;
      z-index: 1;
      padding: 0 12px;
    }
    .step-num {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      font-size: 22px;
      font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 8px 24px rgba(232,93,4,0.3);
      position: relative;
    }
    .step-num::before {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      background: rgba(232,93,4,0.15);
    }
    .process-step h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .process-step p {
      font-size: 12px;
      color: var(--grey);
      line-height: 1.6;
    }
 
    /* ===== TESTIMONIALS ===== */
    #testimonials { padding: 100px 0; background: var(--grey-light); }
    .testimonials-header { text-align: center; margin-bottom: 60px; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .testi-card {
      background: #fff;
      border-radius: 12px;
      padding: 32px;
      border: 1px solid var(--border);
      transition: all 0.3s;
      position: relative;
    }
    .testi-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }
    .testi-quote {
      font-size: 48px;
      color: var(--orange);
      opacity: 0.15;
      line-height: 1;
      font-family: Georgia, serif;
      position: absolute;
      top: 20px; right: 28px;
    }
    .testi-stars {
      color: #F59E0B;
      font-size: 14px;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }
    .testi-text {
      font-size: 15px;
      color: var(--grey);
      line-height: 1.75;
      margin-bottom: 24px;
      font-style: italic;
    }
    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testi-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--orange);
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 16px;
      flex-shrink: 0;
    }
    .testi-author-info strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
    }
    .testi-author-info span {
      font-size: 12px;
      color: var(--grey);
    }
 
    /* ===== CTA BANNER ===== */
    #cta-banner {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, #3a1500 100%);
      position: relative;
      overflow: hidden;
    }
    #cta-banner::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(232,93,4,0.12);
    }
    #cta-banner::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -80px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(232,93,4,0.08);
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    .cta-text h2 {
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 900;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .cta-text h2 span { color: var(--orange); }
    .cta-text p {
      font-size: 16px;
      color: rgba(255,255,255,0.6);
      max-width: 520px;
    }
    .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
 
    /* ===== CONTACT / FOOTER ===== */
    #contact { padding: 100px 0 0; background: var(--dark); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 80px;
      padding-bottom: 80px;
    }
    .contact-brand { }
    .contact-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }
    .contact-logo-icon {
      width: 44px; height: 44px;
      background: var(--orange);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-weight: 900;
      font-size: 20px;
      color: #fff;
    }
    .contact-logo-text strong {
      display: block;
      color: #fff;
      font-size: 17px;
      font-weight: 800;
    }
    .contact-logo-text span {
      color: rgba(255,255,255,0.4);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .contact-desc {
      font-size: 15px;
      color: rgba(255,255,255,0.5);
      line-height: 1.75;
      margin-bottom: 32px;
      max-width: 400px;
    }
    .contact-info-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .contact-info-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .ci-icon {
      width: 40px; height: 40px;
      background: rgba(232, 93, 4, 0.12);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--orange);
      font-size: 16px;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .ci-label {
      font-size: 11px;
      color: rgba(255,255,255,0.35);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 2px;
    }
    .ci-value {
      font-size: 15px;
      color: rgba(255,255,255,0.85);
      font-weight: 500;
    }
    .ci-value a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      transition: color 0.2s;
    }
    .ci-value a:hover { color: var(--orange); }
    .contact-form-side h3 {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }
    .contact-form-side p {
      font-size: 14px;
      color: rgba(255,255,255,0.45);
      margin-bottom: 28px;
    }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 12px 16px;
      color: rgba(255,255,255,0.85);
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      transition: border-color 0.2s, background 0.2s;
      outline: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--orange);
      background: rgba(232,93,4,0.06);
    }
    .form-group select option { background: var(--dark2); color: #fff; }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
 
    /* ===== FOOTER BAR ===== */
    .footer-bar {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 24px 0;
    }
    .footer-bar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy {
      font-size: 13px;
      color: rgba(255,255,255,0.3);
    }
    .footer-copy strong { color: rgba(255,255,255,0.5); }
    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }
    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.3);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--orange); }
 
    /* ===== WHATSAPP FLOAT ===== */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 8px;
    }
    .wa-float-btn {
      width: 60px; height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(37,211,102,0.4);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .wa-float-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 12px 32px rgba(37,211,102,0.5);
    }
    .wa-float-tooltip {
      background: var(--dark);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 6px;
      white-space: nowrap;
      opacity: 0;
      transform: translateX(8px);
      transition: all 0.2s;
    }
    .wa-float:hover .wa-float-tooltip {
      opacity: 1;
      transform: translateX(0);
    }
 
    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .apps-grid { grid-template-columns: repeat(2, 1fr); }
      .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
      .process-steps::before { display: none; }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    }
 
    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .about-grid { grid-template-columns: 1fr; gap: 60px; }
      .about-img-badge { bottom: -16px; right: -8px; }
      .why-grid { grid-template-columns: 1fr; }
      .products-grid { grid-template-columns: 1fr; }
      .apps-grid { grid-template-columns: repeat(2, 1fr); }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }
      .cta-inner { flex-direction: column; text-align: center; }
      .cta-actions { justify-content: center; }
      .contact-grid { grid-template-columns: 1fr; gap: 60px; }
      .form-row { grid-template-columns: 1fr; }
      .hero-stats { flex-wrap: wrap; gap: 24px; }
      .footer-bar-inner { flex-direction: column; text-align: center; }
    }
 
    @media (max-width: 480px) {
      .apps-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; }
    }