:root {
    /* Color Palette */
    --bg-void: #0F0F1A;
    --bg-navy: #1A1A2E;
    --bg-card: rgba(26, 26, 46, 0.7);
    --text-white: #F5F5F7;
    --text-muted: #A0A0B0;

    /* Brand Gradients */
    --brand-gradient: linear-gradient(135deg, #F09433 0%, #DC2743 50%, #BC1888 100%);
    --brand-glow: rgba(220, 39, 67, 0.5);

    /* Functional */
    --border-glass: rgba(255, 255, 255, 0.1);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --success-green: #27C93F;
}

/* ... existing code ... */

/* Enhanced Benefit List */
.benefit-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.check-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(39, 201, 63, 0.15);
    border: 1px solid rgba(39, 201, 63, 0.3);
    color: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(39, 201, 63, 0.2);
}

.benefit-list strong {
    display: block;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.benefit-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-void);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 4px 15px var(--brand-glow);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--brand-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.btn-outline:hover {
    border-color: #DC2743;
    background: rgba(220, 39, 67, 0.1);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.full-width {
    display: block;
    text-align: center;
    width: 100%;
}

/* Glassmorphism */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--bg-navy);
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-glass);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(20px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:not(.btn):hover {
    color: var(--text-white);
}

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

.hero-bg-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(220, 39, 67, 0.15) 0%, rgba(15, 15, 26, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.badge-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

.scarcity-text {
    font-size: 0.9rem;
    color: #F09433;
    font-weight: 500;
}


.w-full {
    width: 100%;
    height: 120px;
}

.half {
    width: 50%;
    height: 100px;
}

.floating-badge {
    position: absolute;
    background: var(--bg-navy);
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: float 6s ease-in-out infinite;
}

.badge-1 {
    top: 20%;
    right: -30px;
}

.badge-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 2s;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--bg-navy);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.text-highlight {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(220, 39, 67, 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: white;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(25, 25, 40, 0.8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #DC2743;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.problem-card:nth-child(2) .icon-box {
    color: #F09433;
}

.problem-card:nth-child(3) .icon-box {
    color: #BC1888;
}

/* Solution Animation */
.solution-section {
    padding: 100px 0;
    overflow: hidden;
}

.solution-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.solution-text {
    flex: 1;
}

.solution-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Orbit Refactored for 8 Items */
.orbit-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-core {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    /* Stack logo and text */
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Ensure text centers */
    gap: 5px;
    z-index: 2;
    box-shadow: 0 0 60px rgba(220, 39, 67, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    animation: pulseCore 3s infinite ease-in-out;
}

.core-logo {
    width: 130px;
    /* Fixed width to fit circle */
    height: auto;
    display: block;
    object-fit: contain;
}

.core-partner-tag {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: white;
    background: linear-gradient(90deg, #DC2743, #F09433);
    padding: 3px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    margin-top: 4px;
}

@keyframes pulseCore {
    0% {
        transform: scale(1);
        box-shadow: 0 0 60px rgba(220, 39, 67, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(220, 39, 67, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 60px rgba(220, 39, 67, 0.2);
    }
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Initial center */
    padding: 10px 20px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    /* Animation definition */
    animation: orbit 24s linear infinite;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.orbit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-glow);
    box-shadow: 0 0 20px rgba(220, 39, 67, 0.4);
    transform: translate(-50%, -50%) scale(1.1);
    z-index: 10;
}

.orbit-icon {
    font-size: 1.1em;
}

/* 8 Items distributed over 24s = 3s delay interval */
.item-1 {
    animation-delay: 0s;
}

/* ... */

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(210px) rotate(0deg) translate(-50%, -50%);
    }

    100% {
        transform: rotate(360deg) translateX(210px) rotate(-360deg) translate(-50%, -50%);
    }
}

.item-2 {
    animation-delay: -3s;
}

.item-3 {
    animation-delay: -6s;
}

.item-4 {
    animation-delay: -9s;
}

.item-5 {
    animation-delay: -12s;
}

.item-6 {
    animation-delay: -15s;
}

.item-7 {
    animation-delay: -18s;
}

.item-8 {
    animation-delay: -21s;
}

/* Enhanced Problem Icons */
.problem-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--brand-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-card:hover .icon-box {
    background: var(--brand-gradient);
    color: white;
    border-color: transparent;
}

/* Pricing Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    align-items: center;
    /* Align cards vertically */
}

/* Base Pricing Card Style */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Enhanced Pricing Panel */
.premium-card {
    position: relative;
    background: linear-gradient(145deg, rgba(22, 22, 45, 0.9), rgba(15, 15, 35, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.premium-card::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 21px;
    padding: 1.5px;
    background: var(--brand-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(220, 39, 67, 0.1);
}

.best-value-badge {
    position: absolute;
    top: -12px;
    /* Lifted slightly to sit on border */
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-gradient);
    padding: 4px 14px;
    /* Slightly tighter padding */
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(220, 38, 65, 0.4);
    white-space: nowrap;
    z-index: 5;
}

.card-header {
    margin-bottom: 30px;
}

.card-header h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 8px;
}

.card-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price-box {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-box .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
}

.price-box .amount {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.price-box .period {
    color: var(--text-muted);
    font-size: 1rem;
}

.price-note {
    font-size: 0.85rem;
    color: var(--brand-orange);
    margin-top: -20px;
    margin-bottom: 30px;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.feature-list li span {
    font-size: 1.1rem;
    line-height: 1;
}

.feature-list li strong {
    color: var(--text-white);
}

/* App Mockup CSS (Glassy Mobile Interface) */
.dashboard-mockup {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    border: 4px solid #334155;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-brand {
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-card-icon {
    width: 30px;
    height: 30px;
    background: rgba(56, 189, 248, 0.2);
    border-radius: 8px;
}

.app-card-lines {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.line {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.line.w-80 {
    width: 80%;
}

.line.w-50 {
    width: 50%;
}

.app-graph {
    height: 80px;
    margin-top: auto;
    background: linear-gradient(0deg, rgba(99, 102, 241, 0.2) 0%, transparent 100%);
    border-radius: 0 0 10px 10px;
    border-top: 1px solid rgba(99, 102, 241, 0.3);
    position: relative;
}

.graph-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgNDAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzYzNjZmMSIgc3Ryb2tlLXdpZHRoPSIyIj48cGF0aCBkPSJNMCAzMCBDMjAgMzAgMzAgMTAgNTAgMjAgQzcwIDMwIDgwIDUgMTAwIDEwIiAvPjwvc3ZnPg==');
    background-size: cover;
}

/* Enhanced Footer */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--brand-glow);
    transform: translateX(5px);
}

/* Enhanced Partner Tag (Official Badge Look) */
.partner-tag {
    background: var(--brand-gradient);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    /* Pill shape */
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
    /* Glow */
    margin-left: 10px;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
    transform: translateY(-1px);
    position: relative;
    overflow: hidden;
}

.partner-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 102;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Dropdown (Full Screen Overlay) */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 101;
    /* Behind toggle (102) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
    max-height: 100vh;
    padding: 0;
    border: none;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
}

.mobile-cta {
    opacity: 0;
    transform: translateY(20px);
    margin-top: 20px;
    width: 80%;
    max-width: 300px;
}

/* Staggered Animation for Menu Items */
.mobile-menu.active .mobile-link,
.mobile-menu.active .mobile-cta {
    animation: fadeInUpMenu 0.5s forwards;
}

.mobile-menu.active .mobile-link:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu.active .mobile-link:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-menu.active .mobile-link:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-menu.active .mobile-cta {
    animation-delay: 0.4s;
}

@keyframes fadeInUpMenu {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet/Mobile Response */
@media (max-width: 900px) {
    .solution-layout {
        flex-direction: column;
        text-align: center;
    }

    .benefit-list li {
        text-align: left;
    }

    .orbit-container {
        /* Scale instead of resize to keep proportions */
        transform: scale(0.65);
        margin: -50px 0;
        /* Negate extra space from scaling */
    }

    /* Container handles the scale (0.65), animation uses base radius */
    @keyframes orbit {
        0% {
            transform: rotate(0deg) translateX(210px) rotate(0deg) translate(-50%, -50%);
        }

        100% {
            transform: rotate(360deg) translateX(210px) rotate(-360deg) translate(-50%, -50%);
        }
    }

    .orbit-item {
        font-size: 0.9rem;
        /* Keep original font size, it scales down */
        padding: 12px 24px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .premium-card {
        transform: scale(1);
    }

    .container {
        padding: 0 20px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .benefit-list {
        text-align: left;
        padding: 0 10px;
    }
}

/* Modal & Lock UI */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-navy);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.close-modal {
    font-size: 1.5rem;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    color: var(--text-muted);
}

.blur-container {
    position: relative;
}

.blurred-content {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
    transition: all 0.5s ease;
}

.lock-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
}

.phone-input-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    overflow: hidden;
}

.phone-prefix {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-right: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-weight: 600;
    user-select: none;
}

.phone-input-container .form-input {
    border: none;
    background: transparent;
    border-radius: 0;
}

.success-banner {
    background: rgba(39, 201, 63, 0.1);
    border: 1px solid #27C93F;
    color: #27C93F;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
    text-align: center;
}

/* =========================================
   Premium Footer Styles
   ========================================= */

/* Scarcity Banner */
.scarcity-banner {
    background: rgba(220, 39, 67, 0.1);
    border: 1px solid rgba(220, 39, 67, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    text-align: center;
    max-width: 600px;
    margin: 40px auto 40px;
    color: #ffcccc;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: fadeIn 1s ease-out;
}

.scarcity-banner span::before {
    content: "🔒 ";
}

/* Premium Footer */
.premium-footer {
    position: relative;
    padding: 60px 0 20px;
    background: linear-gradient(to bottom, #050511, #0a0a16);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    margin-top: 40px;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(30, 30, 50, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Brand Column */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand-col .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-tagline {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 320px;
}

/* Links & Contact Columns */
.footer-links-col,
.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links-col h4,
.footer-contact-col h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--brand-orange);
    transform: translateX(5px);
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

/* Mobile Response */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand-col {
        align-items: center;
    }

    .footer-brand-col .footer-tagline {
        max-width: 100%;
        padding: 0 20px;
    }

    .footer-links-col,
    .footer-contact-col {
        align-items: center;
    }

    .scarcity-banner {
        width: 90%;
    }
}

/* Impact Section */
/* Full-Spectrum Suite Section Redesign */
.suite-section {
    padding: 100px 0;
    background: radial-gradient(circle at 0% 0%, rgba(220, 39, 67, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(240, 148, 51, 0.05) 0%, transparent 50%);
    position: relative;
}

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

.suite-card {
    position: relative;
    padding: 2px;
    /* For gradient border effect */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    overflow: hidden;
}

.suite-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: #0f111a;
    /* Match container background */
    border-radius: 23px;
    z-index: 1;
}

.suite-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(220, 39, 67, 0.2);
}

.suite-card-inner {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.suite-icon-box {
    width: 56px;
    height: 56px;
    background: var(--brand-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 3;
}

.suite-card:hover .suite-icon-box {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4);
}

.suite-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.suite-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.suite-chip {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.suite-card:hover .suite-chip {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Apple-Style Responsive Showcase */
.apple-showcase-space {
    width: 100%;
    margin-top: 60px;
    perspective: 2000px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

/* --- Device Switching --- */
@media (min-width: 900px) {
    .device-visible-mobile {
        display: none !important;
    }

    .device-visible-desktop {
        display: block !important;
    }
}

@media (max-width: 899px) {
    .device-visible-desktop {
        display: none !important;
    }

    .device-visible-mobile {
        display: block !important;
    }
}

/* --- MacBook Pro Mockup (CSS Only) --- */
.macbook-mockup {
    position: relative;
    width: 760px;
    perspective: 2000px;
    transform: rotateX(10deg) rotateY(0deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.macbook-mockup:hover {
    transform: rotateX(5deg) scale(1.02);
}

.macbook-lid {
    width: 760px;
    height: 480px;
    background: #0d0d0d;
    border-radius: 20px 20px 0 0;
    padding: 18px;
    border: 1px solid #333;
    border-bottom: none;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
    transform-origin: bottom;
    transition: transform 0.5s ease;
}

.macbook-screen {
    background: #000;
    width: 100%;
    height: 100%;
    border-radius: 6px 6px 0 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* CSS Notch */
.macbook-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #0d0d0d;
    border-radius: 0 0 10px 10px;
    z-index: 100;
}

.macbook-header {
    height: 30px;
    width: 100%;
    background: rgba(40, 40, 40, 0.5);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.macbook-base {
    width: 900px;
    height: 30px;
    background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
    border-radius: 0 0 20px 20px;
    margin-left: -70px;
    /* Center relative to lid (760 vs 900) */
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.macbook-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 42%;
    width: 16%;
    height: 6px;
    background: #111;
    border-radius: 0 0 6px 6px;
    /* Thumb groove */
}

/* --- MacBook Dashboard Content --- */
.mac-content {
    flex: 1;
    display: flex;
    background: #1e1e2e;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.mac-sidebar {
    width: 160px;
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 10px;
    padding-top: 40px;
}

.mac-menu-item {
    padding: 10px 12px;
    margin-bottom: 4px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #a1a1aa;
    cursor: pointer;
}

.mac-menu-item.active {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    font-weight: 500;
}

.mac-main {
    flex: 1;
    padding: 40px;
    background: radial-gradient(circle at top right, #2d2d44, #1e1e2e);
}

.mac-hero-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.mac-hero-card h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.mac-hero-card p {
    margin: 0;
    color: #4ade80;
    font-size: 0.8rem;
}

.mac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.mac-graph-placeholder {
    margin-top: 25px;
    height: 100px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.mac-graph-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}


/* --- iPhone Mockup (Mobile) --- */
.iphone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    background: #000;
    border-radius: 54px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform: rotateX(10deg) rotateY(-5deg) rotateZ(2deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.iphone-frame {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 44px;
    overflow: hidden;
    position: relative;
    border: 3px solid #1a1a1a;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #f1f5f9;
    /* Lighter iOS feel */
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}

.iphone-screen::-webkit-scrollbar {
    display: none;
}

.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 100;
    animation: islandPulse 4s infinite;
}

@keyframes islandPulse {

    0%,
    100% {
        width: 90px;
        height: 28px;
    }

    50% {
        width: 100px;
        height: 32px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }
}

.iphone-content {
    padding: 60px 20px 40px;
    color: #1e293b;
    text-align: left;
}

/* --- Apple-Grade Icon System --- */
.apple-app-card,
.app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.apple-app-card:hover,
.app-card:hover {
    transform: scale(1.05);
}

.apple-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    /* iOS Squircle approximation */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.apple-app-name,
.app-name {
    font-size: 0.7rem;
    font-weight: 500;
    color: #334155;
    text-align: center;
    letter-spacing: -0.02em;
}

.mac-content .apple-app-name {
    color: #cbd5e1;
}

/* Light text on dark MacBook */

/* Apple Gradients */
.gradient-blue {
    background: linear-gradient(135deg, #007AFF, #00C6FF);
}

.gradient-orange {
    background: linear-gradient(135deg, #FF9500, #FFD60A);
}

.gradient-green {
    background: linear-gradient(135deg, #34C759, #30D158);
}

.gradient-purple {
    background: linear-gradient(135deg, #AF52DE, #BF5AF2);
}

.gradient-red {
    background: linear-gradient(135deg, #FF3B30, #FF6861);
}

.gradient-teal {
    background: linear-gradient(135deg, #30B0C7, #5AC8FA);
}

.gradient-pink {
    background: linear-gradient(135deg, #FF2D55, #FF375F);
}

.gradient-indigo {
    background: linear-gradient(135deg, #5856D6, #5E5CE6);
}

.gradient-yellow {
    background: linear-gradient(135deg, #FFCC00, #FFD60A);
}

.gradient-gray {
    background: linear-gradient(135deg, #8E8E93, #AEAEB2);
}

.gradient-cyan {
    background: linear-gradient(135deg, #32ADE6, #66D4CF);
}

.gradient-emerald {
    background: linear-gradient(135deg, #00994f, #33bb77);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 20;
    animation: floatUpDown 4s ease-in-out infinite;
}

.float-1 {
    top: 15%;
    right: -50px;
}

.float-2 {
    bottom: 20%;
    left: -50px;
    animation-delay: 2s;
}


/* Floating Status Cards */
.status-card {
    position: absolute;
    background: rgba(25, 28, 41, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 18px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.float-card-1 {
    top: 15%;
    right: -30px;
    animation: float 4s ease-in-out infinite;
}

.float-card-2 {
    bottom: 10%;
    left: -30px;
    animation: float 5s ease-in-out infinite reverse;
}

.status-icon {
    font-size: 1.5rem;
}

.status-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.status-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

/* Animations */
@keyframes slideInFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Mobile Suite & Dashboard Adjustments */
@media (max-width: 900px) {
    .dashboard-container {
        margin: 40px 20px 0;
    }

    .float-card-1,
    .float-card-2 {
        position: static;
        margin: 20px 0;
        animation: none;
    }

    .dashboard-window {
        transform: none;
    }
}


.impact-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.impact-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.impact-stat {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.impact-clients {
    flex: 1;
}

.impact-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.client-tag {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.client-tag:hover {
    border-color: rgba(220, 39, 67, 0.3);
    background: rgba(220, 39, 67, 0.05);
    transform: translateY(-2px);
}

/* Testimonials */
.testimonial-section {
    padding: 100px 0;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: white;
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--brand-orange);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Success Modal Specifics */
.success-content {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
}

.success-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
}

.success-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* Validation Styling */
.error-msg {
    color: #DC2743;
    font-size: 0.75rem;
    margin-top: 5px;
    display: none;
}

.form-input.invalid {
    border-color: #DC2743;
    background: rgba(220, 39, 67, 0.05);
}

@media (max-width: 900px) {
    .impact-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .client-tags {
        justify-content: center;
    }
}

/* Hero Image Update */
.hero-image-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1000px;
    /* Optional for 3D feel */
    text-align: center;
}

.hero-main-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.5);
    /* Deep shadow */
    transition: transform 0.5s ease;
}

.hero-main-img:hover {
    transform: scale(1.01);
}

/* Override positions for the new image Layout */
.float-1 {
    top: 10%;
    right: -20px !important;
    /* Slightly overlap/outside */
}

.float-2 {
    bottom: 15%;
    left: -20px !important;
}

@media (max-width: 768px) {
    .floating-element {
        display: none;
    }

    .hero-image-wrapper {
        padding: 0 20px;
    }
}

/* Compact Hero Layout (Image Removed) */
.hero-image-wrapper {
    height: 120px;
    /* Reduced fixed height */
    max-width: 600px;
    margin: 0 auto;
}

/* Re-center floating animations for the smaller space */
.float-1 {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.float-2 {
    bottom: auto;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation-delay: 1s;
}

@media (max-width: 768px) {
    .floating-element {
        position: static;
        display: inline-block;
        margin: 10px;
        transform: none !important;
    }

    .hero-image-wrapper {
        height: auto;
        padding-top: 20px;
    }
}

/* Partners Strip */
.partners-strip {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.partners-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.7;
}

.partners-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0.6;
}

.partner-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    filter: grayscale(100%);
    transition: all 0.3s ease;
    cursor: default;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 20px;
    }

    .partner-logo {
        font-size: 1.2rem;
    }
}

/* Updated Partner SVG Logos */
.partner-logo-img {
    height: 30px;
    width: auto;
    max-width: 100px;
    fill: var(--text-muted);
    /* Grey color */
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo-img:hover {
    fill: white;
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

/* Marquee Animation */
.partners-grid {
    overflow: hidden;
    /* Hide scrollbar */
    width: 100%;
    max-width: 800px;
    /* Constrain width to see effect */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    justify-content: flex-start;
    /* Override centering */
    flex-wrap: nowrap;
    /* Force one line */
}

.marquee-content {
    display: flex;
    gap: 50px;
    /* Space between items */
    white-space: nowrap;
    /* Prevent wrapping */
    will-change: transform;
}

.scroll-left {
    animation: scroll 20s linear infinite;
}

.scroll-left:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half the width (the length of one set) */
    }
}

/* Ensure mobile sees the scrolling cleanly */
@media (max-width: 768px) {
    .partners-grid {
        max-width: 100%;
        mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    }

    .marquee-content {
        gap: 30px;
        /* Tighter on mobile */
    }
}

/* WhatsApp CTA Section */
.whatsapp-cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    /* Use transparent background to blend with body */
    background: transparent;
}

.wa-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(145deg, rgba(37, 211, 102, 0.05), rgba(15, 15, 26, 0.8));
    /* Subtle Green Tint */
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 211, 102, 0.2);
    /* Subtle green border */
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.05);
    position: relative;
    overflow: hidden;
}

/* decorative glow behind */
.wa-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.wa-text {
    z-index: 1;
}

.wa-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.wa-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
}

.btn-whatsapp {
    z-index: 1;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-whatsapp svg {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Mobile Responsiveness for WhatsApp Section */
@media (max-width: 768px) {
    .wa-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .wa-content::before {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}