:root {
    /* Brand Colors - Ultra Modern & Vibrant */
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #d1fae5;
    --accent: #34d399;
    --secondary: #475569;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-hover: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    --gradient-text: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(52, 211, 153, 0.4) 0%, transparent 70%);

    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-surface: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);

    /* Text */
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    /* Shapes */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;

    /* Modern Shadows */
    --shadow-sm: 0 2px 4px rgba(148, 163, 184, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(148, 163, 184, 0.1), 0 2px 4px -1px rgba(148, 163, 184, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(148, 163, 184, 0.1), 0 4px 6px -2px rgba(148, 163, 184, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(148, 163, 184, 0.1), 0 10px 10px -5px rgba(148, 163, 184, 0.04);
    --shadow-primary: 0 10px 25px -5px rgba(16, 185, 129, 0.4), 0 8px 10px -6px rgba(16, 185, 129, 0.2);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-main);
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
    border: none;
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid #e2e8f0;
    background: white;
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Animations */
/* Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-lg);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    width: 100%;
    max-width: 100%;
    /* Push to edges */
    margin: 0 auto;
    padding: 0 3rem;
    /* More spacing on sides */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    padding: 0;
    /* Fixed excessive padding */
    flex-direction: column;
    font-size: 1.5rem;
    color: var(--text-main);
}

/* .tab-image-wrapper moved to keep related styles together */

.tab-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: #f8fafc;
    margin-top: 2rem;
}

.tab-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tab-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
    padding: 0.5rem 0;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item:hover {
    color: var(--text-main);
}

.nav-item ion-icon {
    font-size: 0.8rem;
    opacity: 0.7;
}

.mobile-auth-item {
    display: none;
}

/* Dropdowns */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    min-width: 220px;
    z-index: 1001;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Utilities (Desktop) */
.dd-width-md {
    min-width: 350px;
}

.dd-2col {
    min-width: 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.col-span-2 {
    grid-column: span 2;
}

/* Mega Menu (Features/Solutions) */
.dropdown-menu.mega {
    min-width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background 0.1s;
    margin-bottom: 0.5rem;
}

.dropdown-item:hover {
    background: var(--bg-light);
}

.dd-icon {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.dd-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dd-content p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--text-muted);
    margin: 0;
}

/* Auth Buttons */
.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login {
    font-weight: 600;
    color: var(--text-main);
}

.btn-login:hover {
    color: var(--primary);
}

.btn-signup-nav {
    background-color: #4ade80;
    /* Green from requested image */
    color: #064e3b;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.2s;
}

.btn-signup-nav:hover {
    background-color: #22c55e;
    box-shadow: 0 4px 6px -1px rgba(74, 222, 128, 0.4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 1024px) {

    .nav-menu,
    .nav-auth {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

/* Hero - Buffer Style */
.hero {
    padding-top: calc(var(--header-height) + 6rem);
    padding-bottom: 8rem;
    overflow: hidden;
    position: relative;
    text-align: center;
    /* Grid Background */
    background-image:
        radial-gradient(circle at center, rgba(37, 99, 235, 0.03) 0, transparent 70%),
        radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Email Signup Pill */
.hero-signup {
    background: white;
    padding: 0.5rem;
    border-radius: 999px;
    box-shadow: var(--shadow-card);
    display: inline-flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s;
}

.hero-signup:focus-within {
    box-shadow: 0 0 0 3px var(--primary-light), var(--shadow-card);
    border-color: var(--primary);
}

.hero-signup input {
    border: none;
    background: transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    flex: 1;
    outline: none;
    box-shadow: none;
    /* Override default input focus */
}

.hero-signup button {
    padding: 0.75rem 2rem;
}

/* Floating Icons */
.floating-icons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    background: white;
    padding: 0.75rem;
    border-radius: 1rem;
    /* Squircle */
    box-shadow: var(--shadow-float);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-main);
    animation: float-y 6s ease-in-out infinite;
}

.floating-icon.blur {
    filter: blur(3px);
    opacity: 0.7;
    z-index: 0;
    transform: scale(0.8);
}

.floating-icon.faint {
    opacity: 0.4;
    filter: blur(1px);
    z-index: 0;
}

.floating-icon ion-icon {
    display: block;
}

/* Positions */
.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    font-size: 2.5rem;
    color: #E1306C;
}

/* IG */
.icon-2 {
    top: 25%;
    right: 12%;
    animation-delay: 1s;
    font-size: 2.2rem;
    color: #0077b5;
}

/* LinkedIn */
.icon-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
    font-size: 2rem;
    color: #ff0050;
}

/* TikTok */
.icon-4 {
    bottom: 30%;
    right: 20%;
    animation-delay: 3s;
    font-size: 2.5rem;
    color: #E60023;
}

/* Pinterest */
.icon-5 {
    top: 18%;
    left: 30%;
    animation-delay: 1.5s;
    font-size: 1.5rem;
    color: #1DA1F2;
}

/* Twitter */
.icon-6 {
    top: 40%;
    right: 5%;
    animation-delay: 0.5s;
    font-size: 3rem;
    color: #FF0000;
}

/* YT */

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Media Queries Adjustment */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .floating-icon {
        opacity: 0.3;
    }

    /* Fade out icons on mobile to reduce clutter */
    .hero-signup {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: none;
        gap: 1rem;
    }

    .hero-signup input {
        background: white;
        width: 100%;
        border-radius: 99px;
        border: 1px solid #e2e8f0;
        text-align: center;
    }

    .hero-signup button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
        /* Smaller font for mobile to prevent overflow */
    }
}

/* --- Interactive Tabs Section --- */
/* --- Interactive Tabs Section --- */
.tabs-wrapper {
    display: flex;
    gap: 1.5rem;
    /* Reduced gap significantly */
    align-items: stretch;
    /* Make both columns equal height */
}

.tabs-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Distribute buttons vertically */
    gap: 0;
    border-bottom: none;
    padding-bottom: 0;
    min-width: 200px;
    /* Reduced min-width */
    width: 200px;
    /* Fixed compact width */
}

.tab-btn {
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0 1.5rem;
    /* Vertical padding handled by flex/height */
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all 0.2s;
    text-align: left;
    width: 100%;
    flex-grow: 1;
    /* Make buttons fill available space */
    display: flex;
    align-items: center;
    /* Center text vertically */
}

.tab-btn:hover {
    color: var(--primary);
    background: var(--bg-light);
}

.tab-btn.active {
    background: var(--primary-light);
    color: var(--primary);
}

.tabs-content-area {
    position: relative;
    min-height: 500px;
    /* Increased height for better image visibility */
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid #f1f5f9;
    overflow: hidden;
    flex: 1;
}

.tab-pane {
    display: none;
    width: 100%;
    height: 100%;
    padding: 0;
    animation: fadeIn 0.4s ease-out;
}

.tab-pane.active {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    /* Ensure pane fills area */
}

.tab-text {
    width: 100%;
    background: var(--bg-light);
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
    /* Reduced padding */
    text-align: left;
}

.tab-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    color: var(--primary);
}

.tab-text p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 800px;
}

.tab-image-wrapper {
    margin: 0;
    width: 100%;
    flex: 1;
    border-radius: 0;
    box-shadow: none;
    background: white;
    padding: 0;
    /* Padding removed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tab-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}


/* Mobile Responsive Tabs */
@media (max-width: 900px) {
    .tabs-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .tabs-header {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 1rem;
        /* Scrollbar space */
    }

    .tab-btn {
        white-space: nowrap;
        width: auto;
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }

    .tab-pane.active {
        display: flex;
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 2rem;
    }

    .tab-text {
        text-align: center;
    }

    .tab-text h3 {
        font-size: 1.5rem;
    }
}

.tab-pane img {
    max-width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logos / Social Proof */
.social-proof {
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.logo-strip {
    display: flex;
    justify-content: center;
    gap: 3rem;
    opacity: 0.6;
    filter: grayscale(100%);
    flex-wrap: wrap;
}

.logo-strip span {
    font-weight: 700;
    font-size: 1.5rem;
    color: #cbd5e1;
}

/* Features - Zig Zag */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse .feature-text {
    direction: ltr;
}

.feature-visual {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.feature-visual::before {
    /* Decorative Blob */
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.feature-icon-large {
    font-size: 8rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-text p {
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.feature-list ion-icon {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Feature Images */
.feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bento-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.bento-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-5px);
}

.bento-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.bento-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    display: block;
    box-shadow: var(--shadow-sm);
    object-fit: cover;
    aspect-ratio: 16/9;
    /* Maintain consistent aspect ratio */
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
    transform: scale(1.05);
}

.pricing-card h3 {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-features {
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
}

/* Footer - Minimal */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1rem;
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-row.reverse {
        direction: ltr;
    }
}

.nav-item {
    cursor: pointer;
    color: var(--text-main);
}

@media (max-width: 900px) {
    .nav-container {
        padding: 0 1rem;
        /* Reduce padding on mobile */
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: white;
        padding: 1.5rem;
        box-shadow: none;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-auth {
        display: none;
    }

    .mobile-auth-item {
        display: block;
        width: 100%;
        margin-top: 1rem;
    }

    /* Mobile Dropdown Fixes */
    .nav-item {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid #f1f5f9;
        display: block;
    }

    /* Accordion Logic: Show dropdown when parent has .dropdown-active */
    .nav-item.dropdown-active .dropdown-menu {
        display: block !important;
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        background: #f8fafc;
        max-height: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        display: none;
        /* Hidden by default on mobile */
        width: 100% !important;
        transition: none;
        /* No transition for simple show/hide */
    }



    .nav-item>a {
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        min-width: 0 !important;
        box-shadow: none;
        border: none;
        padding: 0;
        transition: none;
        background: #f8fafc;
        display: none;
        /* Hidden by default */
        opacity: 1;
        visibility: visible;
        margin-top: 0.5rem;
        border-radius: var(--radius-sm);
        left: auto !important;
        top: auto !important;
    }

    .nav-item:hover .dropdown-menu,
    .nav-item:focus-within .dropdown-menu {
        display: none;
        /* Disable hover on mobile */
        transform: none !important;
    }

    .dropdown-menu.mega,
    .dd-2col,
    .dd-width-md {
        min-width: 0;
        width: 100%;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
    }



    /* Ensure grid is removed or reset for mobile */
    .dd-2col {
        display: none;
        /* Managed by JS/hover logic, but basic display state needs to be block when active */
    }

    .nav-item.dropdown-active .dd-2col {
        display: grid;
        /* Keep grid but 1 col */
        grid-template-columns: 1fr;
    }

    .col-span-2 {
        grid-column: auto;
    }

    /* Reveal when active class is present (JS toggled) */
    .nav-item.dropdown-active .dropdown-menu {
        display: block;
        padding: 0.5rem;
    }

    /* Override hover effects */
    .nav-item:hover .dropdown-menu {
        display: none;
    }

    .nav-item.dropdown-active:hover .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 0.75rem;
    }
}

/* Industry Tiles Enhancements */
.bento-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align content to left */
    text-align: left;
    height: 100%;
    /* Ensure equal height in grid */
}

.bento-card img.bento-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
}

.industry-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
    min-height: 3rem;
    /* Align headers */
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    width: 100%;
}

.feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.feature-bullets ion-icon {
    color: var(--accent);
    /* Green checkmarks */
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-connect {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: gap 0.2s;
}

.btn-connect:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

/* Social Vriddhi Advanced Visual Engine */

/* 1. Enhanced Typography & Rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "cv11", "ss01";
    /* Sharper Inter characters */
}

/* 2. Glassmorphism Utilities */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

/* Update Navbar to Glass */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: none;
    /* Remove harsh shadow for glass feel */
}

/* 3. Animated Mesh Gradients (Hero Backgrounds) */
.hero-gradient {
    position: relative;
    overflow: hidden;
    background: transparent !important;
    /* Fix: Override existing opaque backgrounds */
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.08), transparent 50%),
        radial-gradient(circle at 10% 10%, rgba(16, 185, 129, 0.05), transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(99, 102, 241, 0.08), transparent 40%);
    animation: pulseGradient 15s ease infinite alternate;
    z-index: -1;
    pointer-events: none;
}

@keyframes pulseGradient {
    0% {
        transform: scale(1) rotate(0deg);
    }

    100% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* 4. Modern Card Effects (Bento & Features) */
.bento-card,
.feature-card,
.integration-card,
.persona-section {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    /* Prepare for hover border */
    position: relative;
    overflow: hidden;
}

.bento-card:hover,
.feature-card:hover,
.integration-card:hover,
.persona-section:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 20px -5px rgba(37, 99, 235, 0.1);
    /* Colored shadow hint */
    border-color: rgba(37, 99, 235, 0.2);
}

/* Subtle inner glow on hover */
.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(37, 99, 235, 0.05), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.bento-card:hover::after {
    opacity: 1;
}

/* Icon Glow */
.bento-icon,
.feature-visual ion-icon {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* 5. Button Glow & Polish */
.btn-primary {
    position: relative;
    overflow: hidden;
    background-size: 200% auto;
    background-image: linear-gradient(to right, var(--primary) 0%, #3b82f6 50%, var(--primary) 100%);
    transition: all 0.5s;
    border: none;
}

.btn-primary:hover {
    background-position: right center;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
    /* Glowing effect */
    transform: translateY(-2px);
}

/* 6. Text Gradients & Highlights */
.highlight-text {
    position: relative;
    display: inline-block;
    color: var(--primary);
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(37, 99, 235, 0.2);
    z-index: -1;
    transform: skewX(-10deg);
}

/* 7. Scroll Reveal Enhanced */
.reveal-on-scroll {
    /* opacity: 0; */
    /* clip-path: inset(0 0 100% 0); */
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    /* Smooth apple-like ease */
}

.reveal-on-scroll.active {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
}

/* 8. Table Polish (Solutions Page) */
.persona-table-container {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.persona-table th {
    background: #f1f5f9;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* 9. Dropdown Animation refined */
.dropdown-menu {
    transform-origin: top center;
    animation: dropdownFade 0.2s ease forwards;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* 10. Footer Polish */
footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

/* Form Refactor */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Social Integrations - Modern Visuals */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.integration-card-modern {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.integration-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
    z-index: 2;
}

/* Card Header with Color Accents */
.card-header {
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    /* Increased gap */
    position: relative;
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--primary);
    transition: width 0.4s ease;
}

.integration-card-modern:hover .card-header::before {
    width: 100%;
}

.card-icon-large {
    font-size: 3.5rem;
    /* Increased from 2.5rem for "full space" feel */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.integration-card-modern:hover .card-icon-large {
    transform: scale(1.1) rotate(-5deg);
}

/* Specific Brand Colors */
.brand-instagram {
    color: #E1306C;
}

.brand-facebook {
    color: #1877F2;
}

.brand-linkedin {
    color: #0077B5;
}

.brand-tiktok {
    color: #000000;
}

.brand-pinterest {
    color: #BD081C;
}

.brand-youtube {
    color: #FF0000;
}

.brand-google {
    color: #4285F4;
}

.brand-x {
    color: #000000;
}

.brand-telegram {
    color: #0088cc;
}

.card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-summary {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.modern-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.modern-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.925rem;
    transition: transform 0.2s;
}

.modern-features li:hover {
    transform: translateX(5px);
    color: var(--primary);
}

.modern-features ion-icon {
    color: var(--accent);
    background: rgba(16, 185, 129, 0.1);
    padding: 4px;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Badge */
.integration-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: var(--primary-light);
    color: var(--primary);
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

/* Industries Page - Modern Visuals */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.industry-card-modern {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.industry-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
    z-index: 2;
}

.industry-card-header {
    padding: 2rem 2rem 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, rgba(235, 248, 255, 0.5), transparent);
}

.industry-card-img {
    height: 160px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.industry-card-modern:hover .industry-card-img {
    transform: scale(1.1) translateY(-5px);
}

.industry-card-body {
    padding: 1.5rem 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.industry-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.industry-tagline {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Reusing .modern-features from social integrations */
.industry-card-modern .modern-features li {
    font-size: 0.95rem;
    /* Slightly larger for readability */
}

.btn-industry-connect {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
    padding-top: 1.5rem;
}

.btn-industry-connect:hover {
    gap: 0.8rem;
    color: var(--primary-dark);
}

/* Use Case Pages - Modern Visuals */
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.use-case-card-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.use-case-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(16, 185, 129, 0.4);
    /* Brand Green tint */
}

/* Header with Graphic */
.use-case-header {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.use-case-graphic {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    transition: transform 0.4s ease;
}

.use-case-card-modern:hover .use-case-graphic {
    transform: scale(1.05) translateY(-2px);
}

.use-case-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.use-case-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    line-height: 1.3;
}

.use-case-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* List Styling */
.use-case-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.use-case-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.use-case-features li ion-icon {
    color: var(--success);
    /* Brand Green */
    font-size: 1.25rem;
    min-width: 1.25rem;
    margin-top: 0.15rem;
}

.use-case-features li strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Button */
.btn-use-case {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: gap 0.2s ease;
}

.btn-use-case:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

/* --- Site Footer --- */
.site-footer {
    background: linear-gradient(to top, var(--bg-green-soft) 0%, white 100%);
    border-top: 1px solid var(--primary-light);
    padding-top: 5rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col.brand {
    max-width: 350px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.footer-col h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.footer-col p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: all 0.2s;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 4rem;
    padding: 2rem 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}