/* ===== HERO SECTION ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--primary-dark);
      padding-top: 76px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.35;
    }

    .hero-gradient-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(135deg, rgba(8, 47, 73, 0.92) 0%, rgba(12, 74, 110, 0.85) 40%, rgba(8, 145, 178, 0.6) 100%),
        linear-gradient(180deg, rgba(8, 47, 73, 0.3) 0%, rgba(8, 47, 73, 0.1) 100%);
    }

    .hero-pattern {
      position: absolute;
      inset: 0;
      z-index: 1;
      opacity: 0.08;
      background-image:
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-particles {
      position: absolute;
      inset: 0;
      z-index: 2;
      overflow: hidden;
      pointer-events: none;
    }

    .particle {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, rgba(6, 182, 212, 0) 70%);
      animation: particleFloat 25s infinite ease-in-out;
    }

    .particle.small {
      width: 4px;
      height: 4px;
      background: rgba(6, 182, 212, 0.6);
      box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
    }

    .particle.medium {
      width: 80px;
      height: 80px;
    }

    .particle.large {
      width: 200px;
      height: 200px;
    }

    @keyframes particleFloat {
      0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
      25% { transform: translate(30px, -40px) scale(1.1); opacity: 0.6; }
      50% { transform: translate(-20px, -80px) scale(0.9); opacity: 0.4; }
      75% { transform: translate(40px, -30px) scale(1.05); opacity: 0.5; }
    }

    .hero-content {
      position: relative;
      z-index: 3;
      text-align: center;
      max-width: 960px;
      padding: 60px 24px;
      color: white;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 24px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 100px;
      font-size: 0.9rem;
      font-weight: 500;
      margin-bottom: 36px;
      animation: heroFadeInUp 0.8s ease forwards;
      opacity: 0;
    }

    .hero-badge .dot {
      width: 8px;
      height: 8px;
      background: var(--accent-light);
      border-radius: 50%;
      animation: pulse 2s infinite;
      box-shadow: 0 0 12px rgba(6, 182, 212, 0.8);
    }

    .hero h1 {
      font-size: 3.8rem;
      font-weight: 700;
      margin-bottom: 28px;
      color: white;
      line-height: 1.15;
      letter-spacing: -0.5px;
      animation: heroFadeInUp 0.8s ease 0.1s forwards;
      opacity: 0;
    }

    .hero h1 .highlight {
      background: linear-gradient(135deg, var(--accent-light) 0%, #67e8f9 50%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
    }

    .hero-subtitle {
      font-size: 1.2rem;
      line-height: 1.9;
      color: rgba(255, 255, 255, 0.82);
      margin-bottom: 48px;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 400;
      animation: heroFadeInUp 0.8s ease 0.2s forwards;
      opacity: 0;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      animation: heroFadeInUp 0.8s ease 0.3s forwards;
      opacity: 0;
    }

    .hero-actions .btn {
      padding: 16px 40px;
      font-size: 1rem;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      margin-top: 72px;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      animation: heroFadeInUp 0.8s ease 0.4s forwards;
      opacity: 0;
    }

    .stat-item {
      text-align: center;
      position: relative;
    }

    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: -16px;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 48px;
      background: rgba(255, 255, 255, 0.1);
    }

    .stat-value {
      font-family: 'Bricolage', sans-serif;
      font-size: 2.6rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--accent-light), #67e8f9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
      min-height: 2.8rem;
      margin-bottom: 8px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .stat-value::before {
      content: attr(data-content);
    }

    .stat-label {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.72);
      letter-spacing: 0.4px;
      font-weight: 500;
      min-height: 1.4em;
      line-height: 1.4;
    }

    @keyframes heroFadeInUp {
      from { opacity: 0; transform: translateY(36px); }
      to { opacity: 1; transform: translateY(0); }
    }

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

    .scroll-indicator {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      animation: scrollBounce 2.5s infinite;
    }

    .scroll-indicator .mouse {
      width: 26px;
      height: 42px;
      border: 2px solid rgba(255, 255, 255, 0.4);
      border-radius: 13px;
      position: relative;
    }

    .scroll-indicator .mouse::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 8px;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 2px;
      animation: scrollWheel 2s infinite;
    }

    @keyframes scrollBounce {
      0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
      40% { transform: translateX(-50%) translateY(-12px); }
      60% { transform: translateX(-50%) translateY(-6px); }
    }

    @keyframes scrollWheel {
      0% { opacity: 1; top: 8px; }
      100% { opacity: 0; top: 24px; }
    }

    /* ===== NAVBAR CTA PHONE ===== */
    .nav-phone-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-phone-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1rem;
      box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
    }

    .nav-phone-text {
      display: flex;
      flex-direction: column;
      line-height: 1.3;
    }

    .nav-phone-label {
      font-size: 0.75rem;
      color: var(--muted);
      font-weight: 400;
    }

    .nav-phone-number {
      font-size: 1rem;
      font-weight: 700;
      color: var(--primary);
      font-family: 'Bricolage', sans-serif;
    }

    /* ===== ADVANTAGES SECTION ===== */
    .advantages {
      background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
      position: relative;
      overflow: hidden;
    }

    .advantages::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 400px;
      background: radial-gradient(ellipse at center top, rgba(8, 145, 178, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .advantages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      position: relative;
      z-index: 1;
    }

    .advantage-card {
      background: var(--bg);
      padding: 44px 36px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--rule);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .advantage-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--primary-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .advantage-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px -12px rgba(12, 74, 110, 0.15);
      border-color: transparent;
    }

    .advantage-card:hover::before {
      transform: scaleX(1);
    }

    .advantage-card .icon-wrap {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, rgba(12, 74, 110, 0.08), rgba(8, 145, 178, 0.08));
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 28px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    .advantage-card:hover .icon-wrap {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      transform: scale(1.08) rotate(-3deg);
      color: white;
    }

    .advantage-card .icon-wrap svg {
      width: 28px;
      height: 28px;
      color: var(--primary);
      transition: color 0.3s ease;
    }

    .advantage-card:hover .icon-wrap svg {
      color: white;
    }

    .advantage-card h3 {
      font-size: 1.25rem;
      margin-bottom: 14px;
      color: var(--ink);
    }

    .advantage-card p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.8;
    }

    .advantage-card .card-number {
      position: absolute;
      top: 24px;
      right: 28px;
      font-family: 'Bricolage', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--bg2);
      line-height: 1;
      transition: color 0.3s ease;
      z-index: 0;
    }

    .advantage-card:hover .card-number {
      color: rgba(8, 145, 178, 0.06);
    }

    .advantage-card > *:not(.card-number) {
      position: relative;
      z-index: 1;
    }

    /* ===== PRODUCTS OVERVIEW SECTION ===== */
    .products-overview {
      background: var(--bg);
    }

    .products-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      margin-bottom: 72px;
    }

    .products-intro-text {
      padding-right: 20px;
    }

    .products-intro-text .section-tag {
      margin-bottom: 20px;
    }

    .products-intro-text h3 {
      font-size: 2.2rem;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .products-intro-text h3 span {
      background: linear-gradient(135deg, var(--accent), var(--primary-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .products-intro-text > p {
      color: var(--muted);
      margin-bottom: 28px;
      line-height: 1.9;
      font-size: 1rem;
    }

    .products-feature-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 36px;
    }

    .products-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.95rem;
      color: var(--ink-light);
    }

    .products-feature-item .check-icon {
      width: 22px;
      height: 22px;
      min-width: 22px;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.75rem;
      margin-top: 2px;
    }

    .products-intro-image {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(12, 74, 110, 0.25);
    }

    .products-intro-image::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(8, 145, 178, 0.2) 0%, transparent 60%);
      z-index: 1;
    }

    .products-intro-image img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .products-intro-image:hover img {
      transform: scale(1.06);
    }

    .products-image-badge {
      position: absolute;
      bottom: 28px;
      left: 28px;
      z-index: 2;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      padding: 18px 24px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .products-image-badge .badge-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.3rem;
    }

    .products-image-badge .badge-text strong {
      display: block;
      font-size: 1.1rem;
      color: var(--ink);
      font-family: 'Bricolage', sans-serif;
    }

    .products-image-badge .badge-text span {
      font-size: 0.85rem;
      color: var(--muted);
    }

    /* ===== PRODUCT CATEGORIES ===== */
    .product-categories {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .product-category {
      background: var(--bg);
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      border: 1px solid var(--rule);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .product-category::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--primary-light));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .product-category:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 32px -8px rgba(12, 74, 110, 0.15);
      border-color: transparent;
    }

    .product-category:hover::after {
      transform: scaleX(1);
    }

    .product-category .cat-image {
      width: 100%;
      height: 180px;
      margin: 0 0 20px;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
    }

    .product-category .cat-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-category:hover .cat-image img {
      transform: scale(1.08);
    }

    .product-category .cat-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, rgba(12, 74, 110, 0.08), rgba(8, 145, 178, 0.08));
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      transition: all 0.4s ease;
    }

    .product-category:hover .cat-icon {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      transform: scale(1.1);
    }

    .product-category h3 {
      font-size: 1.05rem;
      margin-bottom: 10px;
      color: var(--ink);
    }

    .product-category .cat-desc {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .product-category .cat-tag {
      display: inline-block;
      padding: 4px 12px;
      background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(3, 105, 161, 0.1));
      color: var(--accent);
      font-size: 0.75rem;
      font-weight: 600;
      border-radius: 100px;
    }

    .products-cta {
      text-align: center;
      margin-top: 56px;
    }

    /* ===== APPLICATIONS OVERVIEW SECTION ===== */
    .applications-overview {
      background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
      position: relative;
      overflow: hidden;
    }

    .applications-overview::before {
      content: '';
      position: absolute;
      bottom: 0;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(8, 145, 178, 0.04) 0%, transparent 70%);
      pointer-events: none;
    }

    .apps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      position: relative;
      z-index: 1;
    }

    .app-card {
      background: var(--bg);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--rule);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      display: block;
    }

    .app-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px -12px rgba(12, 74, 110, 0.15);
      border-color: transparent;
    }

    .app-card .app-icon {
      height: 200px;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .app-card .app-icon img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .app-card:hover .app-icon img {
      transform: scale(1.08);
    }

    .app-card .app-icon::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(8, 47, 73, 0.3) 0%, rgba(8, 47, 73, 0.6) 100%);
      z-index: 1;
      transition: background 0.4s ease;
    }

    .app-card:hover .app-icon::after {
      background: linear-gradient(180deg, rgba(12, 74, 110, 0.2) 0%, rgba(8, 145, 178, 0.5) 100%);
    }

    .app-card:hover .app-icon {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    }

    .app-card .app-icon::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -30%;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 2;
    }

    .app-card .app-icon span {
      position: relative;
      z-index: 3;
      transition: transform 0.4s ease;
      text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    .app-card:hover .app-icon span {
      transform: scale(1.15);
    }

    .app-card .app-content {
      padding: 28px;
    }

    .app-card h3 {
      font-size: 1.2rem;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .app-card h3::after {
      content: '→';
      font-size: 1rem;
      color: var(--accent);
      transition: transform 0.3s ease;
    }

    .app-card:hover h3::after {
      transform: translateX(6px);
    }

    .app-card p {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.8;
    }

    .app-card .app-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .app-card .app-tag {
      padding: 5px 12px;
      background: var(--bg2);
      border: 1px solid var(--rule);
      border-radius: 100px;
      font-size: 0.78rem;
      color: var(--muted);
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .app-card:hover .app-tag {
      background: linear-gradient(135deg, rgba(8, 145, 178, 0.08), rgba(3, 105, 161, 0.08));
      border-color: rgba(8, 145, 178, 0.2);
      color: var(--accent);
    }

    /* ===== CTA BANNER SECTION ===== */
    .cta-banner {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
      color: white;
      position: relative;
      overflow: hidden;
      padding: 90px 0;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      top: -60%;
      right: -10%;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 65%);
      border-radius: 50%;
      animation: ctaGlow 8s infinite ease-in-out;
    }

    .cta-banner::after {
      content: '';
      position: absolute;
      bottom: -40%;
      left: -5%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 65%);
      border-radius: 50%;
      animation: ctaGlow 8s infinite ease-in-out reverse;
    }

    @keyframes ctaGlow {
      0%, 100% { transform: scale(1); opacity: 0.6; }
      50% { transform: scale(1.2); opacity: 1; }
    }

    .cta-banner .container {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .cta-banner h2 {
      color: white;
      font-size: 2.6rem;
      margin-bottom: 18px;
      letter-spacing: -0.5px;
    }

    .cta-banner h2 span {
      background: linear-gradient(135deg, var(--accent-light), #67e8f9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cta-banner > .container > div > p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.1rem;
      max-width: 640px;
      margin: 0 auto 36px;
      line-height: 1.8;
    }

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

    .cta-phone-box {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 24px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: var(--radius);
      backdrop-filter: blur(10px);
    }

    .cta-phone-box .phone-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .cta-phone-box .phone-text {
      text-align: left;
      line-height: 1.3;
    }

    .cta-phone-box .phone-label {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .cta-phone-box .phone-number {
      font-family: 'Bricolage', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: white;
    }

    /* ===== FOOTER ENHANCEMENT ===== */
    .footer-contact-list li {
      display: flex !important;
      align-items: flex-start !important;
      gap: 12px !important;
      padding: 0 !important;
      color: rgba(255, 255, 255, 0.5) !important;
      font-size: 0.9rem !important;
      line-height: 1.6 !important;
    }

    .footer-contact-list li::before {
      display: none !important;
    }

    .footer-contact-list .contact-icon {
      width: 36px;
      height: 36px;
      min-width: 36px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
    }

    .footer-contact-list .contact-text strong {
      display: block;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
      font-size: 0.85rem;
      margin-bottom: 2px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1200px) {
      .hero h1 {
        font-size: 3rem;
      }

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

      .stat-value {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 1024px) {
      .nav-phone-wrap {
        display: none;
      }

      .hero h1 {
        font-size: 2.6rem;
      }

      .hero-subtitle {
        font-size: 1.05rem;
      }

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

      .products-intro {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .products-intro-text {
        padding-right: 0;
        order: 2;
      }

      .products-intro-image {
        order: 1;
      }

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

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

      .cta-banner h2 {
        font-size: 2rem;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .hero {
        min-height: auto;
        padding: 120px 0 80px;
      }

      .hero h1 {
        font-size: 2.1rem;
      }

      .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 36px;
      }

      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 48px;
        padding-top: 32px;
      }

      .stat-item:not(:last-child)::after {
        display: none;
      }

      .stat-value {
        font-size: 2rem;
      }

      .hero-actions .btn {
        padding: 14px 32px;
      }

      .scroll-indicator {
        display: none;
      }

      .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .advantage-card {
        padding: 32px 28px;
      }

      .products-intro-image img {
        height: 280px;
      }

      .products-intro-text h3 {
        font-size: 1.8rem;
      }

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

      .product-category {
        padding: 24px 18px;
      }

      .apps-grid {
        grid-template-columns: 1fr;
      }

      .cta-banner {
        padding: 64px 0;
      }

      .cta-banner h2 {
        font-size: 1.7rem;
      }

      .cta-banner > .container > div > p {
        font-size: 1rem;
      }

      .cta-actions {
        flex-direction: column;
      }

      .cta-phone-box {
        width: 100%;
        justify-content: center;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 1.8rem;
      }

      .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
      }

      .hero-stats {
        gap: 20px;
      }

      .stat-value {
        font-size: 1.7rem;
      }

      .stat-label {
        font-size: 0.8rem;
      }

      .product-categories {
        grid-template-columns: 1fr;
      }

      .products-image-badge {
        left: 16px;
        bottom: 16px;
        padding: 12px 16px;
        gap: 10px;
      }

      .products-image-badge .badge-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
      }

      .products-image-badge .badge-text strong {
        font-size: 0.95rem;
      }

      .products-image-badge .badge-text span {
        font-size: 0.75rem;
      }
    }
