:root {
      --color-primary: #6A35FF;
      --color-primary-dark: #4800E0;
      --color-accent: #CCFF00;
      --color-accent-hover: #B2E600;
      --bg-hero: radial-gradient(circle at 50% 0%, #2a1b5e 0%, #120a2e 40%, #05030f 100%);
      --bg-dark: #120A2E;
      --bg-darker: #080516;
      --bg-body: #ffffff;
      --bg-light-grey: #F8F9FF;
      --glass-border: 1px solid rgba(255, 255, 255, 0.08);
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-pill: 50px;
      --container-width: 1240px;
      --shadow-card: 0 10px 40px -10px rgba(18, 10, 46, 0.08);
      --shadow-hover: 0 25px 60px -12px rgba(106, 53, 255, 0.25);
      --shadow-neon: 0 0 30px rgba(106, 53, 255, 0.4);
      --ease-smooth: cubic-bezier(0.25, 0.8, 0.25, 1);
      --space-section-desktop: 100px;
      --space-section-mobile: 60px;
    }

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

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg-body);
      color: #333;
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    body.no-scroll { overflow: hidden; }
    a { text-decoration: none; color: inherit; transition: 0.3s var(--ease-smooth); }
    img { max-width: 100%; height: auto; display: block; }
    ul { list-style: none; }

    /* STARFIELD */
    .starfield {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      pointer-events: none; z-index: -1;
      background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.2) 100%, transparent),
        radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.2) 100%, transparent);
      background-size: 100% 100%; opacity: 0.3;
      background-color: var(--bg-dark);
    }

    /* UTILS */
    .text-gradient {
      background: linear-gradient(135deg, var(--color-accent) 0%, #ffffff 80%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 0 20px rgba(204,255,0,0.25));
    }
    .text-gradient-dark {
      background: linear-gradient(135deg, var(--color-primary) 0%, #3b00c9 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .section-header { text-align: center; margin-bottom: 70px; max-width: 800px; margin-left: auto; margin-right: auto; padding: 0 20px; }
    .section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; font-weight: 800; line-height: 1.1; color: var(--bg-dark); letter-spacing: -1px; }
    .section-header p { font-size: 1.1rem; color: #555; max-width: 650px; margin: 0 auto; }

    /* BUTTONS */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 16px 36px; font-weight: 700; border-radius: var(--radius-pill);
      transition: all 0.3s var(--ease-smooth); cursor: pointer; gap: 10px;
      position: relative; overflow: hidden; font-size: 1rem;
    }
    .btn-primary {
      background-color: var(--color-accent); color: var(--color-primary-dark);
      border: 2px solid var(--color-accent); box-shadow: 0 8px 30px rgba(204, 255, 0, 0.25);
    }
    .btn-primary:hover {
      background-color: var(--color-accent-hover); transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(204, 255, 0, 0.4);
    }
    .btn-outline { border: 2px solid rgba(255,255,255,0.2); color: #fff; }
    .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

    /* HEADER */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 10px 5%; display: flex; justify-content: space-between; align-items: center;
      transition: all 0.4s var(--ease-smooth); border-bottom: 1px solid transparent; min-height: 60px;
    }
    header.scrolled {
      background: rgba(18, 10, 46, 0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      padding: 10px 5%; border-bottom: 1px solid rgba(255, 255, 255, 0.08); min-height: 60px;
    }
    header::after {
      content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
      background-size: 200% 100%; opacity: 0; transition: opacity 0.3s;
      animation: gradient-slide 3s linear infinite;
    }
    header.scrolled::after { opacity: 0.6; }
    @keyframes gradient-slide { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

    .logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
    .logo img { width: clamp(40px, 5vw, 54px); height: auto; filter: drop-shadow(0 0 10px rgba(106, 53, 255, 0.5)); }
    .logo-text { display: flex; flex-direction: column; }
    .company-name { font-size: clamp(1rem, 1.5vw, 1.3rem); color: #fff; font-weight: 900; line-height: 1; margin-bottom: 3px; }
    .company-slogan { font-size: clamp(0.5rem, 0.7vw, 0.65rem); color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700; }

    nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 32px); }
    nav a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: clamp(0.85rem, 0.9vw, 0.95rem); position: relative; padding: 5px 0; }
    nav a:not(.btn):not(.nav-btn)::before {
      content: ''; position: absolute; bottom: 0; right: 0; width: 0; height: 2px;
      background: var(--color-accent); transition: width 0.4s;
    }
    nav a:not(.btn):not(.nav-btn):hover::before { width: 100%; left: 0; right: auto; }
    nav a:not(.btn):not(.nav-btn):hover { color: #fff; }
    nav a.active::before { width: 100%; left: 0; right: auto; }
    nav a.active { color: #fff; }
    .nav-btn {
      padding: 9px 22px; background: rgba(106, 53, 255, 0.2); border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-pill); color: #fff; font-weight: 600;
    }
    .nav-btn:hover { background: var(--color-primary); border-color: var(--color-primary); }

    .menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 10px; z-index: 1001; align-items: flex-end; }
    .menu-toggle span { height: 2px; background: var(--color-accent); transition: 0.3s; border-radius: 2px; }
    .menu-toggle span:nth-child(1) { width: 28px; }
    .menu-toggle span:nth-child(2) { width: 18px; opacity: 0.7; }
    .menu-toggle span:nth-child(3) { width: 23px; opacity: 0.9; }

    /* HERO */
    .hero {
      background: var(--bg-hero); min-height: 82vh; padding: 180px 5% 100px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; position: relative; overflow: hidden; color: #fff;
    }
    @keyframes pulse-orb {
      0% { opacity: 0.4; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.1); }
      100% { opacity: 0.4; transform: scale(1); }
    }
    .hero-orb {
      position: absolute; width: 800px; height: 800px;
      background: radial-gradient(circle, var(--color-primary-dark) 0%, transparent 70%);
      top: -20%; left: 50%; transform: translateX(-50%);
      border-radius: 50%; filter: blur(80px); z-index: 0;
      animation: pulse-orb 8s infinite ease-in-out;
    }
    .hero-content { position: relative; z-index: 2; max-width: 1000px; }
    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 4.8rem); margin-bottom: 30px; line-height: 1.05;
      font-weight: 900; letter-spacing: -2px; text-shadow: 0 10px 40px rgba(0,0,0,0.5);
    }
    .hero p {
      font-size: 1.25rem; color: rgba(255,255,255,0.88); margin-bottom: 50px;
      max-width: 780px; margin: 0 auto 50px; line-height: 1.65; font-weight: 300;
    }
    .hero-meta {
      display: flex; align-items: center; justify-content: center; gap: 30px;
      flex-wrap: wrap; margin-top: 40px; font-size: 0.9rem; color: rgba(255,255,255,0.6);
    }
    .hero-meta span { display: flex; align-items: center; gap: 8px; }
    .hero-meta strong { color: rgba(255,255,255,0.9); }

    /* CONTENT SECTIONS */
    .content-section { padding: var(--space-section-desktop) 5%; background: #fff; position: relative; }
    .content-section.grey { background: var(--bg-light-grey); }
    .content-section.dark { background: var(--bg-dark); color: #fff; }
    .content-container { max-width: 960px; margin: 0 auto; }
    .full-container { max-width: var(--container-width); margin: 0 auto; }

    /* BREADCRUMB */
    .breadcrumb {
      background: var(--bg-light-grey); padding: 14px 5%; border-bottom: 1px solid rgba(0,0,0,0.05);
      position: relative; z-index: 2;
    }
    .breadcrumb-inner { max-width: var(--container-width); margin: 0 auto; display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: #888; }
    .breadcrumb-inner a { color: var(--color-primary); }
    .breadcrumb-inner a:hover { text-decoration: underline; }
    .breadcrumb-inner i { font-size: 0.7rem; }

    /* INTRO LEAD */
    .intro-lead {
      font-size: 1.2rem; color: #444; line-height: 1.8; max-width: 820px;
      margin: 0 auto 60px; text-align: center;
    }
    .intro-lead strong { color: var(--bg-dark); }

    /* STATS ROW */
    .stats-row {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
      max-width: var(--container-width); margin: 0 auto 80px;
    }
    .stat-card {
      background: #fff; border-radius: var(--radius-lg); padding: 36px 28px;
      text-align: center; box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,0.04);
      transition: 0.35s var(--ease-smooth);
    }
    .stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .stat-num {
      font-size: 2.4rem; font-weight: 900; color: var(--color-primary);
      letter-spacing: -1px; display: block; margin-bottom: 6px;
    }
    .stat-label { font-size: 0.88rem; color: #888; font-weight: 500; line-height: 1.4; }

    /* PRICING TIERS */
    .tier-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
      max-width: var(--container-width); margin: 0 auto;
    }
    .tier-card {
      background: #fff; border-radius: var(--radius-lg); padding: 44px 36px;
      border: 1.5px solid rgba(0,0,0,0.06); box-shadow: var(--shadow-card);
      transition: 0.4s var(--ease-smooth); position: relative; overflow: hidden;
    }
    .tier-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: var(--color-primary); opacity: 0; transition: 0.3s;
    }
    .tier-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
    .tier-card:hover::before { opacity: 1; }
    .tier-card.featured {
      border-color: var(--color-primary); background: linear-gradient(135deg, #f9f7ff 0%, #fff 100%);
    }
    .tier-card.featured::before { opacity: 1; }
    .tier-tag {
      display: inline-block; padding: 5px 14px; border-radius: 4px;
      font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
      margin-bottom: 18px; background: rgba(106, 53, 255, 0.08); color: var(--color-primary);
    }
    .tier-card.featured .tier-tag { background: var(--color-primary); color: #fff; }
    .tier-price {
      font-size: 2.6rem; font-weight: 900; color: var(--bg-dark); letter-spacing: -1.5px;
      line-height: 1; margin-bottom: 6px;
    }
    .tier-price span { font-size: 1rem; font-weight: 400; color: #888; letter-spacing: 0; }
    .tier-ideal { font-size: 0.9rem; color: #888; margin-bottom: 28px; }
    .tier-divider { height: 1px; background: rgba(0,0,0,0.06); margin: 24px 0; }
    .tier-includes h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 16px; }
    .tier-item {
      display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px;
      font-size: 0.95rem; color: #555; line-height: 1.5;
    }
    .tier-item i { color: var(--color-primary); margin-top: 3px; flex-shrink: 0; font-size: 0.85rem; }
    .tier-item.muted { opacity: 0.45; }
    .tier-item.muted i { color: #aaa; }

    /* IMAGE SLOT */
    .img-slot {
      width: 100%; border-radius: var(--radius-lg); overflow: hidden;
      background: linear-gradient(135deg, #eef0f8 0%, #e2e6f4 100%);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 16px; color: #aaa;
      border: 2px dashed rgba(106, 53, 255, 0.2); position: relative;
    }
    .img-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .img-slot-placeholder {
      padding: 60px 30px; text-align: center;
    }
    .img-slot-placeholder i { font-size: 2.5rem; color: rgba(106, 53, 255, 0.3); margin-bottom: 12px; }
    .img-slot-placeholder p { font-size: 0.85rem; color: #bbb; }

    /* FEATURE ROW */
    .feature-row {
      display: flex; align-items: center; gap: 60px; margin-bottom: 80px;
    }
    .feature-row.reverse { flex-direction: row-reverse; }
    .feature-content { flex: 1; }
    .feature-content h3 { font-size: 1.9rem; font-weight: 800; color: var(--bg-dark); margin-bottom: 18px; letter-spacing: -0.5px; }
    .feature-content p { font-size: 1.05rem; color: #555; margin-bottom: 16px; line-height: 1.75; }
    .feature-visual { flex: 1; min-height: 380px; border-radius: var(--radius-lg); overflow: hidden; }

    /* PRICING MODEL CARDS */
    .model-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
      max-width: var(--container-width); margin: 0 auto;
    }
    .model-card {
      background: #fff; border-radius: var(--radius-lg); padding: 36px 30px;
      border: 1.5px solid rgba(0,0,0,0.06); box-shadow: var(--shadow-card);
      transition: 0.35s; position: relative;
    }
    .model-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .model-icon {
      width: 54px; height: 54px; border-radius: 14px;
      background: linear-gradient(135deg, rgba(106, 53, 255, 0.1), rgba(106, 53, 255, 0.05));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; color: var(--color-primary); margin-bottom: 20px;
    }
    .model-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--bg-dark); margin-bottom: 10px; }
    .model-card p { font-size: 0.95rem; color: #666; line-height: 1.65; margin-bottom: 16px; }
    .model-best { font-size: 0.8rem; font-weight: 700; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.8px; }

    /* RED FLAGS */
    .redflag-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
      max-width: var(--container-width); margin: 0 auto;
    }
    .redflag-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-md); padding: 28px 26px;
      display: flex; gap: 18px; align-items: flex-start; transition: 0.3s;
    }
    .redflag-card:hover { background: rgba(255,255,255,0.07); }
    .redflag-icon {
      width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
      background: rgba(255, 60, 60, 0.15); display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: #ff6b6b;
    }
    .redflag-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
    .redflag-card p { font-size: 0.92rem; color: #aaa; line-height: 1.6; }

    /* TABLE */
    .table-wrapper {
      background: #fff; border: 1px solid #eee;
      border-radius: var(--radius-lg); padding: 44px; margin: 60px 0;
      box-shadow: 0 20px 50px rgba(0,0,0,0.03); overflow-x: auto;
    }
    table { width: 100%; border-collapse: separate; border-spacing: 0 14px; min-width: 640px; }
    th { text-align: left; padding: 18px 22px; color: var(--bg-dark); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; opacity: 0.8; }
    td { padding: 22px; background: var(--bg-light-grey); color: #555; vertical-align: middle; font-size: 0.97rem; }
    td:first-child { border-radius: 10px 0 0 10px; font-weight: 700; color: var(--bg-dark); }
    td:last-child { border-radius: 0 10px 10px 0; }
    .pill { display: inline-block; padding: 5px 14px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; }
    .pill-purple { background: rgba(106, 53, 255, 0.1); color: var(--color-primary); }
    .pill-green { background: rgba(0, 180, 100, 0.1); color: #008c4a; }
    .pill-grey { background: #eee; color: #888; }

    /* CALLOUT BOX */
    .callout {
      border-left: 4px solid var(--color-primary); background: rgba(106, 53, 255, 0.04);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      padding: 28px 32px; margin: 40px 0;
    }
    .callout p { font-size: 1.05rem; color: #444; line-height: 1.75; font-style: italic; }
    .callout strong { color: var(--bg-dark); }

    /* VERDICT */
    .verdict-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
      max-width: var(--container-width); margin: 0 auto;
    }
    .verdict-card {
      background: #fff; border-radius: var(--radius-lg); padding: 36px 28px;
      border: 1.5px solid rgba(0,0,0,0.05); box-shadow: var(--shadow-card);
      text-align: center; transition: 0.35s;
    }
    .verdict-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .verdict-icon { font-size: 2.2rem; margin-bottom: 18px; color: var(--color-primary); }
    .verdict-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--bg-dark); margin-bottom: 12px; }
    .verdict-card p { font-size: 0.92rem; color: #666; line-height: 1.65; }

    /* CTA SECTION */
    .cta-section { padding: 60px 5% 100px; background: #fff; }
    .cta-box {
      background: linear-gradient(120deg, var(--color-primary), #3b00c9);
      border-radius: 40px; padding: 100px 40px; text-align: center; color: #fff;
      max-width: var(--container-width); margin: 0 auto;
      box-shadow: 0 40px 90px rgba(74, 0, 224, 0.35); position: relative; overflow: hidden;
    }
    .cta-bg-pattern {
      position: absolute; inset: 0; opacity: 0.08;
      background-image: radial-gradient(#fff 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .cta-content { position: relative; z-index: 2; }
    .cta-box h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 22px; font-weight: 900; }
    .cta-box p { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

    /* FOOTER */
    footer {
      background: var(--bg-darker); color: #fff; padding: 80px 5% 40px;
      border-top: 1px solid rgba(255,255,255,0.05); font-size: 1rem; position: relative;
    }
    footer::before {
      content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-primary), transparent); opacity: 0.5;
    }
    .footer-container {
      max-width: var(--container-width); margin: 0 auto;
      display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 60px;
      padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-brand h2 {
      margin-bottom: 25px; font-size: 1.8rem;
      background: linear-gradient(135deg, var(--color-accent) 0%, #fff 80%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .footer-desc { color: #aaa; margin-bottom: 35px; line-height: 1.8; max-width: 380px; }
    .footer-social { display: flex; gap: 15px; flex-wrap: wrap; }
    .footer-social a {
      display: flex; align-items: center; justify-content: center;
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.15); color: #fff;
      transition: 0.3s;
    }
    .footer-social a:hover { transform: translateY(-5px); background: var(--color-primary); border-color: var(--color-primary); }
    .footer-col h3 { font-size: 1.2rem; margin-bottom: 28px; color: #fff; position: relative; display: inline-block; }
    .footer-col h3::after {
      content: ''; position: absolute; bottom: -8px; left: 0; width: 36px; height: 2px;
      background: var(--color-accent); border-radius: 2px; opacity: 0.8;
    }
    .footer-col ul li { margin-bottom: 16px; }
    .footer-col a { color: #aaa; transition: 0.3s; }
    .footer-col a:hover { color: var(--color-accent); padding-left: 6px; }
    .footer-bottom { text-align: center; padding-top: 40px; color: #666; font-size: 0.9rem; }

    /* WHATSAPP */
    .whatsapp-chat { position: fixed; bottom: 40px; right: 40px; z-index: 1000; }
    .whatsapp-chat img { width: 70px; height: 70px; border-radius: 50%; box-shadow: 0 10px 30px rgba(0,0,0,0.4); transition: 0.4s; }
    .whatsapp-chat img:hover { transform: scale(1.15) rotate(15deg); }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .stats-row { grid-template-columns: repeat(2, 1fr); }
      .tier-grid { grid-template-columns: 1fr; }
      .model-grid { grid-template-columns: repeat(2, 1fr); }
      .verdict-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-container { grid-template-columns: 1fr 1fr; gap: 50px; }
      .footer-brand { grid-column: span 2; }
    }
    @media (max-width: 768px) {
      .feature-row, .feature-row.reverse { flex-direction: column; gap: 36px; }
      .feature-visual { width: 100%; min-height: 280px; }
      .redflag-grid { grid-template-columns: 1fr; }
      .menu-toggle { display: flex; }
      nav {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(18, 10, 46, 0.98); flex-direction: column;
        justify-content: center; transform: translateX(100%);
        transition: 0.4s var(--ease-smooth); z-index: 1000; padding: 40px; overflow-y: auto;
      }
      nav.active { transform: translateX(0); }
      nav a { font-size: 1.5rem; color: #fff; margin: 10px 0; }
      .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
      .menu-toggle.active span:nth-child(2) { opacity: 0; }
      .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
      .model-grid { grid-template-columns: 1fr; }
      .verdict-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .hero { padding: 150px 5% 70px; min-height: auto; }
      .hero h1 { font-size: 2rem; letter-spacing: -1px; }
      .hero p { font-size: 1rem; }
      .stats-row { grid-template-columns: 1fr 1fr; }
      .stat-num { font-size: 2rem; }
      .table-wrapper { padding: 20px; }
      .cta-box { padding: 60px 24px; border-radius: 24px; }
      .cta-box h2 { font-size: 1.8rem; }
      .footer-container { grid-template-columns: 1fr; gap: 40px; }
      .footer-brand { grid-column: span 1; }
      .footer-social { justify-content: flex-start; }
      .whatsapp-chat { bottom: 20px; right: 20px; }
      .whatsapp-chat img { width: 55px; height: 55px; }
      .company-slogan { font-size: 0.42rem; white-space: nowrap; }
    }

@media (max-width: 1024px) { .aarmax-diff-grid { grid-template-columns: repeat(2, 1fr) !important; } }
    @media (max-width: 600px) { .aarmax-diff-grid { grid-template-columns: 1fr !important; } }