
    :root {
      /* Base Theme Colors */
      --bg-dark: #0f172a;
      --bg-card: rgba(30, 41, 59, 0.7);
      --primary: #6366f1;
      /* Indigo */
      --primary-hover: #4f46e5;
      --accent: #f59e0b;
      /* Amber */
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --border-light: rgba(255, 255, 255, 0.1);

      /* Social Brand Colors */
      --brand-insta: #E1306C;
      --brand-fb: #1877F2;
      --brand-tiktok: #FE2C55;
      --brand-yt: #FF0000;
      --brand-wa: #25D366;
      --brand-x: #ffffff;
      --brand-snap: #FFFC00;
        --glass-bg: rgba(255, 255, 255, 0.05);
      --glass-border: rgba(255, 255, 255, 0.1);
    }

    /* --- Reset & Base --- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      text-decoration: none;
      list-style: none;
    }

    html {
      scroll-behavior: smooth;
    }

     body {
      font-family: var(--font-main);
      background-color: var(--bg-dark);
      color: var(--text-main);
      overflow-x: hidden;
      background-image:
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 25%);
    }

    a {
      text-decoration: none;
      transition: all 0.3s ease;
    }

    ul {
      list-style: none;
    }

     .glass {
      background: var(--glass-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* --- Hero Section --- */
    .hero {
      position: relative;
      padding: 80px 0 100px;
      text-align: center;
      overflow: hidden;
    }

    .hero-bg-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: -1;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 20px;
      background: linear-gradient(to right, #fff, #94a3b8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero p {
      font-size: 1.25rem;
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto 40px;
    }

    /* Quick Select Bar (New Feature) */
    .quick-select-label {
      display: block;
      margin-bottom: 15px;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--accent);
      font-weight: 700;
    }

    .quick-select-container {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      background: rgba(255, 255, 255, 0.03);
      padding: 15px;
      border-radius: 100px;
      border: 1px solid var(--border-light);
      backdrop-filter: blur(5px);
    }

    .platform-chip {
      background: rgba(255, 255, 255, 0.05);
      color: white;
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
      border: 1px solid transparent;
    }

    .platform-chip:hover {
      transform: translateY(-3px);
      background: rgba(255, 255, 255, 0.1);
    }

    /* Specific Hover Colors for Chips */
    .chip-ig:hover {
      border-color: var(--brand-insta);
      box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
    }

    .chip-fb:hover {
      border-color: var(--brand-fb);
      box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
    }

    .chip-tk:hover {
      border-color: var(--brand-tiktok);
      box-shadow: 0 5px 15px rgba(254, 44, 85, 0.3);
    }

    /* --- Process Section --- */
    .process-section {
      padding: 80px 0;
      background: rgba(15, 23, 42, 0.5);
    }

    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .section-tag {
      color: var(--primary);
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 1.5px;
      margin-bottom: 10px;
      display: block;
    }

    .section-title {
      font-size: 2.5rem;
      margin-bottom: 25px;
      line-height: 1.2;
    }

    .step-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin: 30px 0;
    }

    .step-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background: rgba(255, 255, 255, 0.03);
      padding: 20px;
      border-radius: 12px;
      border: 1px solid var(--border-light);
    }

    .step-icon {
      min-width: 40px;
      height: 40px;
      background: rgba(99, 102, 241, 0.2);
      color: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .step-content h4 {
      color: white;
      margin-bottom: 5px;
    }

    .step-content p {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .styled-img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      border: 1px solid var(--border-light);
    }

    /* --- Platform Cards Section --- */
    .issues-section {
      padding: 100px 0;
    }

    .text-center {
      text-align: center;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }

    .issue-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      padding: 35px;
      border-radius: 16px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    /* Card Top Border Effect */
    .issue-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--text-muted);
      /* Default */
      transition: height 0.3s;
    }

    .issue-card:hover {
      transform: translateY(-10px);
      background: #1e293b;
    }

    .issue-card:hover::before {
      height: 6px;
    }

    /* Brand Specific Styling */
    .card-insta:hover {
      box-shadow: 0 20px 40px -10px rgba(225, 48, 108, 0.2);
      border-color: rgba(225, 48, 108, 0.3);
    }

    .card-insta::before {
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    .card-insta i {
      color: #E1306C;
    }

    .card-fb:hover {
      box-shadow: 0 20px 40px -10px rgba(24, 119, 242, 0.2);
      border-color: rgba(24, 119, 242, 0.3);
    }

    .card-fb::before {
      background: var(--brand-fb);
    }

    .card-fb i {
      color: var(--brand-fb);
    }

    .card-tiktok:hover {
      box-shadow: 0 20px 40px -10px rgba(254, 44, 85, 0.2);
      border-color: rgba(254, 44, 85, 0.3);
    }

    .card-tiktok::before {
      background: var(--brand-tiktok);
    }

    .card-tiktok i {
      color: var(--brand-tiktok);
    }

    .card-yt:hover {
      box-shadow: 0 20px 40px -10px rgba(255, 0, 0, 0.2);
      border-color: rgba(255, 0, 0, 0.3);
    }

    .card-yt::before {
      background: var(--brand-yt);
    }

    .card-yt i {
      color: var(--brand-yt);
    }

    .card-wa:hover {
      box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.2);
      border-color: rgba(37, 211, 102, 0.3);
    }

    .card-wa::before {
      background: var(--brand-wa);
    }

    .card-wa i {
      color: var(--brand-wa);
    }

    .card-snap:hover {
      box-shadow: 0 20px 40px -10px rgba(255, 252, 0, 0.2);
      border-color: rgba(255, 252, 0, 0.3);
    }

    .card-snap::before {
      background: var(--brand-snap);
    }

    .card-snap i {
      color: var(--brand-snap);
      text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    }

    .card-icon {
      font-size: 3rem;
      margin-bottom: 20px;
      display: block;
    }

    .issue-card h3 {
      font-size: 1.4rem;
      margin-bottom: 15px;
      color: white;
    }

    .issue-list li {
      padding: 8px 0;
      border-bottom: 1px dashed var(--border-light);
      color: var(--text-muted);
      font-size: 0.95rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .issue-list li i {
      color: #4ade80;
      font-size: 0.8rem;
    }

    .issue-list li:last-child {
      border: none;
    }

     /* --- THE GLASS BUTTON --- */
.card-link {
    /* 1. Layout & Text */
    display: inline-flex;
    margin-top:5px;
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    color: #ffffffff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;

    /* 2. Glass Base */
    background: rgba(255, 255, 255, 0.03); /* Very transparent */
    backdrop-filter: blur(10px); /* The Frosted Effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */

    /* 3. The 3D Glass Edges (Highlights top/left, shadows bottom/right) */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    
    /* 4. Shadow for depth */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Hover State: The Glass "Lights Up" */
.card-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px); /* Lifts up */
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.4), /* Deeper drop shadow */
        0 0 15px rgba(255, 255, 255, 0.2); /* Outer Glow */
    border-color: rgba(255, 255, 255, 0.5);
}

/* Arrow Icon Animation */
.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(5px); /* Arrow slides right */
}

/* Optional: Shine Effect sweeping across */
.card-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transform: skewX(-20deg);
    transition: 0.5s;
}

.card-link:hover::after {
    left: 150%;
    transition: 0.7s;
}

/* --- Responsive Media Queries --- */

/* Tablet & Large Mobile (up to 992px) */
@media (max-width: 992px) {
    /* 1. Stack the Process Section */
    .grid-2 {
        grid-template-columns: 1fr; /* Switch from 2 columns to 1 */
        gap: 40px;
        text-align: center;
    }

    .process-section .container .grid-2 div:last-child {
        order: -1; /* Puts the image on top for better mobile flow */
    }

    /* 2. Adjust Step Items for Tablet */
    .step-item {
        text-align: left;
    }

    /* 3. Hero Adjustments */
    .hero h1 {
        font-size: 2.8rem;
    }
    
    /* 4. Navigation: Hide menu initially */
    .nav-center {
        display: none; /* You'll need JS to toggle this class */
    }
}

/* Mobile Devices (up to 768px) */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    /* 5. Process Section Steps - Centered for small screens */
    .step-item {
        flex-direction: column; /* Stack Icon on top of text */
        align-items: center;
        text-align: center;
        padding: 25px;
    }

    .step-icon {
        margin-bottom: 10px;
    }

    /* 6. Quick Select Chips wrapping */
    .quick-select-container {
        border-radius: 20px;
        padding: 10px;
        width: 100%;
    }

    .platform-chip {
        width: 100%; /* Chips take full width on mobile */
        justify-content: center;
    }

    /* 7. Footer Columns */
    .footer-container {
        grid-template-columns: 1fr; /* Single column footer */
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Very Small Screens (up to 480px) */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .cards-grid {
        grid-template-columns: 1fr; /* Ensure cards are full width */
    }

    .issue-card {
        padding: 25px;
    }

    .card-link {
        width: 100%;
        justify-content: center;
    }
}
     