/* MODERN DARK THEME VARIABLES */
:root {
    /* Backgrounds */
    --bg-body: #030014;       /* Very deep indigo/black */
    --bg-surface: #0f172a;    /* Lighter slate for cards */
    --bg-surface-hover: #1e293b;
    
    /* Text */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    /* Accents - The "Colorful" part */
    --primary: #6366f1;       /* Indigo */
    --secondary: #a855f7;     /* Purple */
    --accent: #ec4899;        /* Pink */
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.5) 0%, rgba(168, 85, 247, 0.5) 100%);
    
    /* UI Elements */
    --radius: 12px;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from glowing orbs */
}

/* --- TYPOGRAPHY & UTILITIES --- */
h1, h2, h3 {
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

/* The Magic Gradient Text Class */
.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* --- BUTTONS --- */
/* --- BUTTONS (High Visibility Update) --- */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 32px;
    border-radius: 50px; /* Pill shape */
    font-weight: 700; /* Bolder text for better readability */
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Primary Button (Gradient + White Text) */
.btn-primary {
    background: var(--gradient-main);
    color: #ffffff !important; /* !important forces white text over navbar styles */
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.5); /* Stronger glow */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Subtle shadow makes text readable */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.7);
    color: #ffffff !important;
}

/* Secondary Button (Glass/Dark + White Text) */
.btn-secondary {
    background: rgba(255, 255, 255, 0.05); /* Very subtle glass */
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3); /* brighter border */
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15); /* Brighter on hover */
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Specific fix for the Contact button in Navbar to ensure it doesn't get squashed */
.nav-menu .btn {
    padding: 10px 24px; /* Slightly smaller for navbar */
    margin-left: 10px;
}

/* --- NAVBAR (Glassmorphism) --- */
.navbar {
    height: var(--nav-height);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 0, 20, 0.7); /* See-through dark */
    backdrop-filter: blur(12px);      /* The blur effect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.menu-toggle { display: none; }

/* --- HERO SECTION --- */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
}

/* Background Glow Orb behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: var(--primary);
    filter: blur(150px); /* Massive blur for glow */
    opacity: 0.2;
    z-index: 0;
    border-radius: 50%;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* --- SERVICES --- */
.services { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(30, 41, 59, 0.4); /* Semi-transparent */
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--primary);
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.3);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text; /* Vendor prefix for Chrome/Safari */
    -webkit-text-fill-color: transparent;
    background-clip: text;         /* Standard property (Add this line) */
}

/* --- ABOUT --- */
.about {
    padding: 100px 0;
    background: #020617; /* Slightly darker band */
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.check {
    color: var(--secondary);
    font-weight: bold;
}

.visual-box {
    height: 400px;
    background: linear-gradient(45deg, #1e1b4b, #312e81);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Animated glow border for visual box */
.visual-box::after {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: var(--gradient-main);
    border-radius: 14px;
    opacity: 0.5;
    filter: blur(10px);
}

/* --- CONTACT --- */
.contact { padding: 100px 0; }

.contact-wrapper {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    backdrop-filter: blur(10px);
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

/* --- FOOTER --- */
footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* --- STRICT MOBILE FIXES --- */
/* --- UNIVERSAL MOBILE FIX (Fits iPhone 12, Pixel, SE, etc.) --- */
@media (max-width: 768px) {
    /* 1. Force the page to never exceed screen width */
    html, body {
        max-width: 100%;
        overflow-x: hidden !important;
        position: relative;
    }

    /* 2. Fluid Container Padding */
    .container {
        /* Adapts padding based on screen width (min 15px, max 5%) */
        padding-left: max(15px, 5%) !important;
        padding-right: max(15px, 5%) !important;
        width: 100%;
        box-sizing: border-box; /* Includes padding in width calculation */
    }

    /* 3. Fluid Typography (The Magic Part) */
    /* Text automatically scales: minimum 1.5rem, preferred 8% of screen width, max 2.2rem */
    h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
        line-height: 1.15;
        margin-top: 1rem;
        word-wrap: break-word; /* Prevents long words breaking layout */
        hyphens: auto; /* Adds hyphens if a word is too long */
    }
    
    .hero p {
        font-size: 1rem !important;
        max-width: 100%;
    }

    /* 4. Navbar Auto-Adjustment */
    .nav-container {
        height: 70px;
        padding: 0 max(15px, 5%) !important; /* Matches container padding */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        /* Logo scales down slightly on very small screens */
        font-size: clamp(1rem, 4vw, 1.25rem) !important;
        flex-shrink: 0; /* Prevents logo from getting squashed */
    }

    .menu-toggle {
        display: block !important;
        flex-shrink: 0;
        transform: scale(0.9); /* Slight visual adjustment */
    }

    /* 5. Buttons that adapt to width */
    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch; /* Forces buttons to fill available width */
        gap: 12px;
    }

    .btn {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box; /* Ensures padding doesn't add to width */
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px 0 !important;
    }

    /* 6. Navigation Drawer */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #030014;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    /* 7. Stack everything vertically */
    .bento-grid, 
    .about-container, 
    .contact-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px;
    }

    /* Reset specific grid sizes */
    .web-dev-card, 
    .social-card {
        width: 100% !important;
    }

    /* Fix for the Blue "Management" Box on Mobile */
    .about-visual {
        width: 100%;
        margin-top: 1rem;
    }

    .visual-box {
        height: auto !important; /* Stop it from being 400px tall */
        min-height: 180px;      /* Give it a comfortable height */
        width: 100% !important; /* Force full screen width */
        padding: 2rem 1rem;     /* Add padding so text can breathe */
        background: linear-gradient(135deg, #1e1b4b, #312e81); /* Ensure bg stays */
    }

    /* Make the text inside the box smaller on phone so it doesn't break */
    .visual-box h3 {
        font-size: 1.75rem !important; 
        line-height: 1.3;
    }

    /* --- FIXED NAVBAR FOR MOBILE --- */
    .navbar {
        position: fixed !important; /* Forces it to stay at the top */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 2000; /* Ensures it sits above everything else */
        background: rgba(3, 0, 20, 0.95); /* High opacity to hide scrolling text */
        backdrop-filter: blur(15px); /* Strong glass effect */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Adjust content spacing so it doesn't hide behind the fixed bar */
    .hero {
        padding-top: 140px !important; /* Extra space at the top */
    }
    
    /* Ensure the menu drawer opens exactly below the fixed bar */
    .nav-menu {
        position: fixed;
        top: 70px; /* Matches the navbar height */
        height: calc(100vh - 70px);
    }

    .nav-menu .btn {
        margin-left: 0 !important;  /* Remove the desktop offset */
        margin-right: 0 !important; /* Ensure no right margin */
        margin-top: 15px;           /* Add space above it */
        width: auto !important;     /* Keep it pill-shaped, don't stretch */
        display: inline-flex;       /* Ensure it responds to text-align: center */
    }
}

/* --- BENTO GRID SECTION --- */
.build-section {
    padding: 100px 0;
    background-color: var(--bg-body); /* Matches body background */
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 column */
    gap: 1.5rem;
}

/* Tablet & Desktop Grid Layout */
@media (min-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 Columns */
        grid-template-rows: repeat(2, auto);   /* 2 Rows */
    }
    
    /* The Wide Card (Web Dev) takes up 2 slots */
    .web-dev-card {
        grid-column: span 2;
    }
    
    .social-card, .logo-card {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Card Styling */
.bento-card {
    background: rgba(30, 41, 59, 0.4); /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.7);
    border-color: var(--primary);
}

/* Icons inside cards */
.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Specific Icon Colors from your image */
.icon-blue {
    background: rgba(59, 130, 246, 0.15); /* Light Blue bg */
    color: #60a5fa; /* Blue icon */
}

.icon-orange {
    background: rgba(249, 115, 22, 0.15); /* Light Orange bg */
    color: #fb923c; /* Orange icon */
}

/* 1. New Pink Icon Style */
.icon-pink {
    background: rgba(236, 72, 153, 0.15); /* Soft Pink bg */
    color: #f472b6; /* Bright Pink icon */
}

/* 2. Update the Desktop Layout Rule */
@media (min-width: 900px) {
    /* (Your existing grid rules are here...) */

    /* ADD THIS: Forces the logo card to take full width at the bottom */
    .logo-card {
        grid-column: span 3; 
    }
}

/* 3. Mobile Reset (Add this inside your existing @media max-width: 768px block) */
.logo-card {
    grid-column: auto !important; /* On phone, it just stacks normally */
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Pill Tags (Digital Menus, PG Galleries, etc.) */
.tags {
    margin-top: auto; /* Pushes tags to bottom of card */
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

/* --- PRICING SECTION --- */
.pricing-section {
    padding: 100px 0;
    background-color: #020617; /* Matches body dark bg */
}

.category-title {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

/* Common Card Styles */
.pricing-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-5px);
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    color: white;
}

.period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Feature Lists in Pricing */
.pricing-card .feature-list li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

/* --- WEBSITE CARD (Wide) --- */
.featured-wide {
    padding: 2.5rem;
    border: 1px solid rgba(99, 102, 241, 0.3); /* Subtle blue border */
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.pricing-header h4 { font-size: 1.8rem; margin-bottom: 0.5rem; color: white; }
.price-box .amount { font-size: 2.5rem; font-weight: 800; color: white; }
.price-box .currency { font-size: 1.5rem; vertical-align: top; color: var(--primary); }

.divider { border: 0; height: 1px; background: rgba(255,255,255,0.1); margin: 1.5rem 0; }

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.addons-container {
    background: rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.addon-label { font-weight: 600; color: white; margin-right: 10px; }
.addon-tag {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.small-note { font-size: 0.85rem; margin-top: 1rem; opacity: 0.6; font-style: italic; }

/* --- SMM GRID --- */
.smm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: start; /* Aligns cards to top */
}

/* Most Popular Highlight */
.popular {
    border: 1px solid var(--secondary);
    background: rgba(168, 85, 247, 0.05);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.1);
    transform: scale(1.02); /* Slightly larger */
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* --- LOGO GRID --- */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 700px; /* Don't stretch too wide */
}

.small-detail { font-size: 0.9rem; color: #94a3b8; }

/* --- MOBILE RESPONSIVE PRICING --- */
@media (max-width: 768px) {
    .pricing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .features-grid { grid-template-columns: 1fr; gap: 0; }
    
    .smm-grid, .logo-grid { grid-template-columns: 1fr; }
    
    .popular { transform: scale(1); margin: 10px 0; } /* Reset scale on mobile */
}

/* --- HAMBURGER TO CROSS ANIMATION --- */

/* 1. Make the lines move smoothly */
.menu-toggle svg path {
    transition: all 0.3s ease-in-out;
    transform-box: fill-box;
    transform-origin: center;
}

/* 2. Top Line: Move down and rotate 45 degrees */
.menu-toggle.active svg path:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

/* 3. Middle Line: Fade out completely */
.menu-toggle.active svg path:nth-child(2) {
    opacity: 0;
}

/* 4. Bottom Line: Move up and rotate -45 degrees */
.menu-toggle.active svg path:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* --- CONTACT BUTTONS --- */

/* WhatsApp Green Button */
.btn-whatsapp {
    background: #25D366; /* Official WhatsApp Green */
    color: white !important;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Call Button (Outline Style) */
.btn-call {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
}

.btn-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* --- NEW PRICING LAYOUTS --- */

/* 1. Website Tier Grid (Desktop: 2 Columns) */
/* --- UPDATED WEBSITE GRID LAYOUT --- */

/* 1. Make Franchise Card WIDER (60% vs 40%) */
.web-tier-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Franchise gets 1.5x the space */
    gap: 2rem;
    align-items: start; /* Prevents stretching; lets cards have natural height */
}

/* 2. Franchise Card: Big, Bold, Premium */
.franchise-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 1) 100%);
    border: 1px solid var(--primary);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.2); /* Stronger glow */
    padding: 3rem; /* More internal space */
    transform: scale(1.02);
    position: relative;
    z-index: 2;
}

/* Make the text inside Franchise card slightly bigger */
.franchise-card h4 { font-size: 2rem; }
.franchise-card .feature-list li { font-size: 1.05rem; margin-bottom: 12px; }

/* 3. Basic Card: Compact, Simple */
.basic-card {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem; /* Less padding */
    margin-top: 1rem; /* Push it down slightly to emphasize the other one */
}

/* Make Basic card text standard size */
.basic-card h4 { font-size: 1.5rem; }
.basic-card .price-box .amount { font-size: 2rem; } 

/* Mobile Adjustment remains the same */
@media (max-width: 768px) {
    .web-tier-grid {
        grid-template-columns: 1fr;
    }
    .franchise-card {
        padding: 2rem;
        transform: scale(1);
    }
}

/* 2. Logo Grid Enhancements */
.logo-grid {
    grid-template-columns: 1fr 1fr; /* Force 2 columns on desktop */
}

.premium-logo {
    border-color: var(--secondary);
    background: rgba(168, 85, 247, 0.05);
}

/* 3. Utility Classes */
.tier-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    margin-bottom: 15px;
}

.full-width {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

.small-list li {
    margin-bottom: 5px !important;
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* 4. Location Restriction Note */
.location-note {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #fbcfe8;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
    /* Stack Website Cards */
    .web-tier-grid {
        grid-template-columns: 1fr;
    }
    
    /* Reset Franchise Card Scale on Mobile so it fits */
    .franchise-card {
        transform: scale(1);
        margin-bottom: 1rem;
    }

    /* Stack Logo Cards */
    .logo-grid {
        grid-template-columns: 1fr;
    }
}