/* ==========================================================================
   Design System & Variables (Koravio Style - Blue, Indigo & Slate)
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-main: #ffffff;
    /* Pure white background */
    --bg-alt: #f8fafc;
    /* Soft light slate */
    --bg-card: #ffffff;

    --primary: #2563eb;
    /* Electric Cobalt Blue (Trust & Consulting) */
    --primary-light: #4f46e5;
    /* Vibrant Indigo (Automation) */
    --primary-glow: rgba(37, 99, 235, 0.05);
    --dark: #0f172a;
    /* Deep Slate (Executive Strategy) */
    --dark-hover: #1e293b;

    /* Typography colors */
    --text-main: #0f172a;
    /* Deep slate main headings */
    --text-muted: #4b5563;
    /* Muted gray body text */
    --text-dimmed: #94a3b8;
    /* Slate-400 */
    --border-color: #f1f5f9;
    /* Thin light border */
    --border-dark: #e2e8f0;
    /* Darker slate borders */

    --success: #10b981;
    /* Emerald Green (Growth & ROI) */
    --success-glow: rgba(16, 185, 129, 0.08);

    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
    /* Pill shape */

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.02);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.06);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Resets & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-main);
}

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

input,
textarea,
select,
button {
    font-family: inherit;
    color: inherit;
    font-size: 0.95rem;
    outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.08);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================================================
   Layout & Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-alt {
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.reveal {
    opacity: 1;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Grid helpers */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Badge Tag */
.badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: var(--primary-glow);
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(79, 70, 229, 0.1);
    margin-bottom: 1.5rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main) !important;
    border-color: var(--border-dark);
}

.btn-secondary:hover {
    background-color: var(--bg-alt);
    border-color: var(--text-main);
    transform: translateY(-2px);
}

/* ==========================================================================
   Header & Dropdown/Mega-Menu Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 23, 42, 0.3);
    /* Muted dark transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    /* Removed white line on load */
    transition: var(--transition-fast);
}

.header .logo-text,
.header .nav-link {
    color: #ffffff;
}

.header .logo-icon {
    filter: brightness(0) invert(1);
}

.header .nav-btn {
    background: #ffffff;
    color: var(--dark) !important;
}

.header .nav-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.75);
    border-bottom: none;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.header.scrolled .logo-text {
    color: var(--text-main);
}

.header.scrolled .nav-link {
    color: var(--text-muted);
}

.header.scrolled .nav-link:hover {
    color: var(--primary);
}

.header.scrolled .logo-icon {
    filter: brightness(0);
}

.header.scrolled .nav-btn {
    background: var(--dark);
    color: #ffffff !important;
}

.header.scrolled .nav-btn:hover {
    background: var(--dark-hover);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1002;
}

.logo-icon {
    width: 32px;
    height: 32px;
    transition: filter var(--transition-fast);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--text-main);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-btn {
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--dark);
    color: #ffffff !important;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.nav-btn-secondary + .nav-btn {
    margin-left: -1rem;
}

.nav-btn:hover {
    background: var(--dark-hover);
    transform: translateY(-2px);
}

/* Secondary Nav Button (Login) */
.nav-btn-secondary {
    font-size: 0.9rem;
    font-weight: 700;
    background: transparent;
    color: #ffffff !important;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.nav-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.header.scrolled .nav-btn-secondary {
    border-color: var(--dark);
    color: var(--dark) !important;
}

.header.scrolled .nav-btn-secondary:hover {
    background: var(--border-color);
    border-color: var(--dark-hover);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0.5rem;
}

.mobile-toggle .bar {
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-fast);
}

.header.scrolled .mobile-toggle .bar {
    background-color: var(--text-main);
}

/* ==========================================================================
   Hero Section & Browser Mockup
   ========================================================================== */
.hero-section {
    padding: 100px 0 0 0;
    /* No bottom padding, let the dashboard sit on the edge */
    position: relative;
    background-color: #0f172a;
    /* 60% top dark blue slate with glowing meshes, 40% bottom pure white */
    background-image: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 20% 40%, rgba(79, 70, 229, 0.1) 0%, transparent 40%),
        linear-gradient(to bottom, #0f172a 60%, #ffffff 60%);
    color: #ffffff;
    overflow: hidden;
}

.hero-section .hero-title {
    color: #ffffff;
}

.hero-section .hero-subtitle {
    color: #94a3b8;
}

.hero-section .btn-secondary {
    background: transparent;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-container-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-main);
    margin: 1rem 0 1.5rem 0;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    text-align: center;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 5rem;
}

/* Browser Frame */
.browser-frame {
    width: 110%;
    max-width: 1320px;
    border-radius: 24px;
    background: #ffffff;
    background-clip: padding-box;
    /* Prevents solid background from bleeding under the translucent border */
    border: 20px solid rgba(255, 255, 255, 0.25);
    /* High-visibility translucent border */
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.35),
        0 40px 80px rgba(15, 23, 42, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
    margin-bottom: 5rem;
    /* Safe margins inside the flow */
}

.browser-header {
    height: 44px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    position: relative;
}

.browser-dots {
    display: flex;
    gap: 0.45rem;
    position: absolute;
    left: 1.25rem;
}

.browser-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.browser-search {
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: 240px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-dimmed);
    font-weight: 500;
}

.browser-image {
    width: 100%;
    height: 600px;
    display: block;
}

/* ==========================================================================
   Trusted By Logos - Endless Marquee
   ========================================================================== */
.trusted-section {
    padding: 1.25rem 0;
    /* Reduced height */
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-main);
    overflow: hidden;
    position: relative;
}

.trusted-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.trusted-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dimmed);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}

.trusted-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-grow: 1;
}

.trusted-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.trusted-marquee:hover .trusted-track {
    animation-play-state: paused;
    /* Stop movement on hover */
}

.trusted-group {
    display: flex;
    align-items: center;
    gap: 6rem;
    /* Spacing between brand logos */
    padding-right: 6rem;
    /* Match gap for seamless loop boundary */
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    /* Standard premium logo height */
    filter: grayscale(1) opacity(0.5);
    /* Muted grayscale on load */
    transition: filter var(--transition-fast), transform var(--transition-fast);
    cursor: pointer;
}

.brand-logo svg {
    height: 100%;
    width: auto;
    max-height: 100%;
    display: block;
}

.brand-logo:hover {
    filter: none;
    /* Instantly restores original brand colors on hover */
    transform: scale(1.08);
    /* Slight hover pop */
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   Detailed Feature Cards & Mini-UIs
   ========================================================================== */
.feature-card-detailed {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-normal);
}

.feature-card-detailed:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-visual-panel {
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}

.feature-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
}

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

/* Mini UI Cards */
.mini-ui-card {
    background: #ffffff;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    width: 100%;
    max-width: 320px;
    box-shadow: var(--shadow-sm);
}

.task-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.task-row:last-child {
    border-bottom: none;
}

.task-text {
    flex-grow: 1;
    font-weight: 500;
    color: var(--text-main);
}

.task-text.done {
    text-decoration: line-through;
    color: var(--text-dimmed);
}

.task-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.task-badge.design {
    background: #e0e7ff;
    color: #4338ca;
}

.task-badge.dev {
    background: #ecfdf5;
    color: #047857;
}

.ai-summary-box {
    background: var(--primary-glow);
    border-left: 3px solid var(--primary);
    border-radius: 4px;
    padding: 0.75rem 1rem;
}

.node-item {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-alt);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.node-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.node-dot.trigger {
    background: var(--primary);
}

.node-dot.action {
    background: var(--success);
}

.node-arrow {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dimmed);
    font-weight: 700;
}

/* ==========================================================================
   Stats Section Redesign
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

.stats-section.dark-parallax-section {
    background-color: #080c16;
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    transform-style: preserve-3d;
}

.stat-card.dark-stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1), background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform-style: preserve-3d;
    will-change: transform;
}

.stat-card.dark-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.stat-card.dark-stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(99, 102, 241, 0.25);
}

.stat-card.dark-stat-card:hover::before {
    opacity: 1;
}

.dark-stat-card .stat-number {
    font-size: 3.25rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 30%, #818cf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-stat-card .stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.5rem;
}

.dark-stat-card .stat-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   Testimonial Cards
   ========================================================================== */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

.testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.client-meta h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.client-meta p {
    font-size: 0.75rem;
    color: var(--text-dimmed);
}

/* ==========================================================================
   Pricing Cards
   ========================================================================== */
.pricing-card.popular {
    transform: scale(1.02);
}

.toggle-btn {
    background: transparent;
    color: var(--text-muted);
}

.toggle-btn.active {
    background: #ffffff;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Forms & Inputs
   ========================================================================== */
.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--primary);
    background: var(--primary-glow);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

textarea.form-input {
    resize: none;
    min-height: 100px;
}

.select-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.1rem;
}

/* ==========================================================================
   Footer (Contrast Dark Slate matching Evalua)
   ========================================================================== */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0;
    background-color: #0c111d;
    /* Rich dark slate matching reference */
    color: #cbd5e1;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer .logo-text {
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #94a3b8;
    margin: 0;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transition: all var(--transition-fast);
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.footer-copyright-inline {
    font-size: 0.82rem;
    color: #64748b;
    margin: 1.5rem 0 0 0;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-col-title-bar {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-col-title-bar::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    /* signature purple bar */
    border-radius: 1px;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    font-size: 0.9rem;
    color: #94a3b8;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--primary-light);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.4;
}

.contact-info-icon {
    width: 18px;
    height: 18px;
    fill: var(--primary-light);
    /* Accent indicator colors matching mockup */
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .footer-brand-col {
        grid-column: span 2;
        max-width: 100%;
    }

    .footer-brand-desc {
        max-width: 480px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }

    .footer-brand-col {
        grid-column: span 2;
    }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    color: var(--text-main);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 500;
    animation: slideIn var(--transition-normal);
}

.toast.toast-success {
    border-left-color: var(--success);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   Responsive Adaptability
   ========================================================================== */
@media (max-width: 968px) {

    .grid-4,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }


}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero-container-centered {
        text-align: center;
    }
}

/* Mobile & Tablet Header Navigation Drawer (up to 1024px) */
@media (max-width: 1024px) {
    .header-container {
        height: 56px;
        padding: 0 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 56px;
        right: 0;
        left: auto;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 56px);
        background: #ffffff !important;
        border-left: 1px solid #e2e8f0 !important;
        border-right: none !important;
        box-shadow: -10px 0 30px rgba(15, 23, 42, 0.05) !important;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        gap: 0;
        transform: translateX(100%);
        transition: transform var(--transition-normal);
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile Menu Link Color & Dividers */
    .nav-menu .nav-link {
        color: var(--text-main) !important;
        font-size: 0.95rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        width: 100%;
        padding: 1.1rem 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #f1f5f9 !important;
        transition: color var(--transition-fast);
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-item.active > .nav-link {
        color: var(--primary) !important;
    }

    /* Mobile CTA Button - Solid Dark */
    .nav-menu .nav-btn,
    .header.scrolled .nav-menu .nav-btn {
        width: 100%;
        text-align: center;
        margin-top: 2rem;
        background: var(--dark) !important;
        color: #ffffff !important;
        padding: 0.85rem 1.5rem;
        border-radius: var(--radius-full);
        display: block !important;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.85rem;
        border: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu .nav-btn:hover,
    .header.scrolled .nav-menu .nav-btn:hover {
        background: var(--dark-hover) !important;
    }

    /* Mobile CTA Button - Secondary (Outline) */
    .nav-menu .nav-btn-secondary,
    .header.scrolled .nav-menu .nav-btn-secondary {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
        background: transparent !important;
        color: var(--dark) !important;
        padding: 0.85rem 1.5rem;
        border-radius: var(--radius-full);
        display: block !important;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.85rem;
        border: 1px solid var(--dark) !important;
        box-shadow: none;
    }

    .nav-menu .nav-btn-secondary:hover,
    .header.scrolled .nav-menu .nav-btn-secondary:hover {
        background: var(--border-color) !important;
    }

    /* Header background match when menu is open - Light Clean Theme */
    .header.nav-open {
        background-color: #ffffff !important;
        border-bottom: 1px solid #f1f5f9 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02) !important;
    }

    .header.nav-open .logo-text {
        color: var(--text-main) !important;
    }

    .header.nav-open .logo-icon {
        filter: brightness(0) !important; /* Force dark logo */
    }

    .header.nav-open .mobile-toggle .bar {
        background-color: var(--text-main) !important; /* Black burger bars */
    }

    /* Sub-menu styling - clean indentation and light left border */
    .dropdown-item-title {
        color: var(--text-main) !important;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .dropdown-item-desc {
        color: var(--text-muted) !important;
        font-size: 0.75rem;
    }

    .dropdown-chevron {
        stroke: var(--text-muted) !important;
    }

    .browser-image {
        height: auto !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 90px 0 60px 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .pricing-card.popular {
        transform: none;
    }
}

.footer .logo-icon {
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   Header Dropdown / Mega-Menu Styling
   ========================================================================== */
.nav-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-chevron {
    width: 10px;
    height: 10px;
    margin-left: 6px;
    transition: transform var(--transition-fast);
}

.nav-item:hover .dropdown-chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu Container */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 1000;
    width: 240px;
}

/* Invisible bridge to maintain hover status over the gap */
.dropdown-menu::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Grids */
.products-grid,
.services-grid,
.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

/* Dropdown Items */
.dropdown-item {
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    transition: all var(--transition-fast);
    background: transparent;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 50%;
    background-color: var(--primary);
    border-radius: 0 4px 4px 0;
    transition: transform var(--transition-fast);
}

.dropdown-item:hover::before {
    transform: translateY(-50%) scaleY(1);
}

.dropdown-item-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    transition: color var(--transition-fast);
}

.dropdown-item:hover {
    background-color: rgba(37, 99, 235, 0.04);
    padding-left: 1.5rem;
}

.dropdown-item:hover .dropdown-item-title {
    color: var(--primary);
}

/* Header link transition safety */
.header .logo-text,
.header .nav-link,
.header.scrolled .logo-text,
.header.scrolled .nav-link {
    transition: color var(--transition-fast);
}

/* Mobile Dropdown styles */
@media (max-width: 1024px) {
    .nav-item {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }

    /* Enforce stable accordion behavior and disable desktop hovers on mobile/tablet */
    .nav-item:hover .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        display: none !important;
    }

    .dropdown-menu.products-grid,
    .dropdown-menu.services-grid,
    .dropdown-menu.industries-grid {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    .dropdown-menu.products-grid.active,
    .dropdown-menu.services-grid.active,
    .dropdown-menu.industries-grid.active,
    .nav-item.active .dropdown-menu {
        display: flex !important;
        flex-direction: column !important;
        opacity: 1 !important;
        visibility: visible !important;
        height: auto !important;
        overflow: visible !important;
        padding: 0.5rem 0.5rem 0.5rem 1rem !important;
        border-left: 1px solid #f1f5f9 !important;
        margin-top: 0.25rem !important;
        margin-bottom: 0.5rem !important;
        gap: 0.25rem !important;
    }

    .dropdown-item {
        padding: 0.5rem 0.75rem;
    }

    .dropdown-item::before {
        display: none;
    }

    .dropdown-item:hover {
        padding-left: 0.75rem;
        background-color: transparent;
    }

    .dropdown-item-title {
        font-size: 0.9rem;
    }

    .nav-item.active .dropdown-chevron {
        transform: rotate(180deg);
    }
}

/* ==========================================================================
   Hero Section Connected Nodes Styling & Keyframes
   ========================================================================== */
.nodes-decor {
    position: absolute;
    top: 15%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
    animation: nodeFloat 10s ease-in-out infinite;
}

.left-nodes {
    left: 4%;
}

.right-nodes {
    right: 4%;
    animation-delay: -5s;
}

@keyframes nodeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-12px) rotate(1deg) scale(1.02);
    }
}

@media (max-width: 1150px) {
    .nodes-decor {
        display: none;
    }
}

/* ==========================================================================
   How We Automate Section Styles (Dark Theme Inverted)
   ========================================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem 1.75rem;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-card:hover,
.process-card.active:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(99, 102, 241, 0.15);
}

/* Active Highlighted State (Blueprint & Architecture) */
.process-card.active {
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.15), 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Desktop Process Grid Layout */
@media (min-width: 1025px) {
    .process-grid {
        margin-top: 2rem;
    }
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: #818cf8; /* Light Indigo */
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    transition: color var(--transition-fast);
}

.process-card:hover .process-number {
    color: #ffffff;
}

.process-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
    transition: color var(--transition-fast);
}

.process-card:hover .process-card-title {
    color: #ffffff;
}

.process-card-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
    transition: color var(--transition-fast);
}

.process-card:hover .process-card-desc {
    color: #cbd5e1;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* Mobile Process Grid Layout */
@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .process-card {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   Tabbed Offerings Section Styles (Products / Services)
   ========================================================================== */
.offerings-toggle-container {
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    padding: 4px;
    width: fit-content;
    margin: 0 auto 3rem auto;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 0.6rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: 'Inter', sans-serif;
}

.toggle-btn.active {
    background: #ffffff;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
}

.offerings-tabs-row {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    /* Force single line layout */
    gap: 0.5rem;
    /* Reduced gap */
    margin-bottom: 4.5rem;
    overflow-x: auto;
    /* Allow horizontal scrolling on smaller screens */
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE/Edge */
    width: 100%;
}

.offerings-tabs-row::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari/Opera */
}

@media (max-width: 1024px) {
    .offerings-tabs-row {
        justify-content: flex-start;
        /* Align to start when overflow scrolls */
        padding: 0.5rem 1rem;
    }
}

.offerings-tabs-row.hidden {
    display: none;
}

.tab-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    padding: 0.5rem 0.85rem;
    /* Reduced padding */
    font-size: 0.8rem;
    /* Reduced font size */
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
    /* Prevent pill squishing */
}

.tab-pill.active {
    background: #ffffff;
    color: var(--dark);
    border-color: #ffffff;
}

.tab-pill:hover:not(.active) {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.offerings-content-container {
    position: relative;
    width: 100%;
}

.offering-content {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.offering-content.active {
    display: block;
    opacity: 1;
}

.offering-layout {
    display: block;
    width: 100%;
}

.offering-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.offering-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.offering-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 440px;
}

.offering-actions {
    display: flex;
    gap: 1rem;
}

.offering-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.offering-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    /* Matches Features card radius */
    padding: 2.25rem 1.75rem;
    /* Matches Features card padding */
    text-align: center;
    /* Centered content alignment */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    /* Center vertically */
    transition: all var(--transition-normal);
}

.offering-card:hover {
    background: #ffffff;
    /* White background hover */
    border-color: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    /* High-contrast shadow */
}

.offering-card svg {
    width: 32px;
    /* Matches Features card icon size */
    height: 32px;
    color: #818cf8;
    /* Soft Indigo */
    margin-bottom: 1.25rem;
    /* Reduced margin */
    stroke-width: 1.5;
    transition: color var(--transition-fast);
}

.offering-card:hover svg {
    color: var(--primary-light);
    /* Purple primary-light on hover */
}

.offering-card h4 {
    font-size: 1.15rem;
    /* Matches Features title size */
    font-weight: 700;
    color: #ffffff;
    /* White text on dark section */
    margin-bottom: 0.75rem;
    /* Matches Features title margin */
    font-family: 'Outfit', sans-serif;
    transition: color var(--transition-fast);
}

.offering-card:hover h4 {
    color: var(--text-main);
    /* Dark slate title on white hover */
}

.offering-card p {
    font-size: 0.86rem;
    /* Matches Features paragraph size */
    color: #94a3b8;
    /* Muted gray on dark section */
    line-height: 1.6;
    margin: 0;
    transition: color var(--transition-fast);
}

.offering-card:hover p {
    color: var(--text-muted);
    /* Dark slate description on white hover */
}

@media (max-width: 1024px) {
    .offering-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .offering-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ==========================================================================
   Staggered Features Grid Redesign
   ========================================================================== */
.features-grid-staggered {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.features-row-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.features-row-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 740px;
    /* Narrower container to center bottom row of 2 cards */
    margin: 0 auto;
    width: 100%;
}

.feature-card-staggered {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.25rem 1.75rem;
    /* Reduced card padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.01);
}

.feature-card-staggered:hover {
    transform: translateY(-6px);
    background: var(--primary-light);
    /* Hover turns into our purple secondary color */
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.22);
}

.feature-card-staggered svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    margin-bottom: 1.25rem;
    /* Reduced margin */
    stroke-width: 1.5;
    transition: color var(--transition-fast);
}

.feature-card-staggered:hover svg {
    color: #ffffff;
}

.feature-card-staggered h3 {
    font-size: 1.15rem;
    /* Slightly smaller heading */
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    /* Reduced margin */
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
    transition: color var(--transition-fast);
}

.feature-card-staggered:hover h3 {
    color: #ffffff;
}

.feature-card-staggered p {
    font-size: 0.86rem;
    /* Slightly smaller description text */
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    transition: color var(--transition-fast);
}

.feature-card-staggered:hover p {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 992px) {

    .features-row-top,
    .features-row-bottom {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 0;
    }

    /* Make the last card in odd rows stretch or look centered */
}

@media (max-width: 640px) {

    .features-row-top,
    .features-row-bottom {
        grid-template-columns: 1fr;
    }

    .feature-card-staggered {
        padding: 2.5rem 1.5rem;
    }
}

/* ==========================================================================
   Services Mega Menu Styles
   ========================================================================== */
.services-mega-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 980px !important;
    max-width: 90vw;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 1000;
}

.nav-item:hover .services-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

.mega-menu-col {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.mega-menu-category {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.mega-category-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main) !important;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color var(--transition-fast);
    display: inline-block;
    border-left: 3px solid var(--primary-light);
    padding-left: 0.6rem;
    line-height: 1.1;
}

.mega-category-title:hover {
    color: var(--primary-light) !important;
}

.mega-subcategory-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0.75rem;
}

.mega-subcategory-list a {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted) !important;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
    line-height: 1.3;
}

.mega-subcategory-list a:hover {
    color: var(--primary-light) !important;
    transform: translateX(4px);
}

/* Responsive adjustments for Mega Menu */
@media (max-width: 992px) {
    .services-mega-menu {
        width: 720px !important;
        padding: 2rem;
    }

    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .services-mega-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        box-shadow: none !important;
        border: none !important;
        padding: 1.5rem 0.5rem !important;
        background: transparent !important;
    }

    .services-mega-menu.active {
        display: block;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
    }

    .mega-menu-col {
        gap: 1.75rem !important;
    }

    .mega-category-title {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .mega-subcategory-list {
        padding-left: 0.85rem;
        gap: 0.6rem;
    }

    .mega-subcategory-list a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
}

/* ==========================================================================
   Detailed Products Grid Dropdown Styles
   ========================================================================== */
.products-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    width: 580px !important;
    /* Elegant wider dropdown menu */
    padding: 1.25rem !important;
}

.dropdown-item-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    width: 100%;
}

.dropdown-item-desc {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.35;
    transition: color var(--transition-fast);
}

.dropdown-item:hover .dropdown-item-desc {
    color: var(--primary-light);
    /* Highlight color on hover */
    opacity: 0.85;
}

@media (max-width: 992px) {
    .products-grid {
        width: 480px !important;
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        padding: 1rem 0.5rem !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    .dropdown-item-desc {
        font-size: 0.78rem;
    }
}

/* ==========================================================================
   Services Mega Menu Category Detail & Explore Link Styles
   ========================================================================== */
.mega-category-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 0.15rem 0 0.5rem 0.6rem;
    line-height: 1.35;
}

.mega-explore-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-light) !important;
    text-decoration: none;
    display: inline-block;
    margin-left: 0.6rem;
    margin-top: 0.4rem;
    transition: all var(--transition-fast);
}

.mega-explore-link:hover {
    color: var(--primary) !important;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .mega-category-desc {
        font-size: 0.78rem;
        margin: 0.2rem 0 0.6rem 0.85rem;
    }

    .mega-explore-link {
        font-size: 0.82rem;
        margin-left: 0.85rem;
        margin-top: 0.5rem;
        padding: 0.25rem 0;
    }
}

/* ==========================================================================
   Detailed Grids Dropdown Styles (Products & Services)
   ========================================================================== */
.products-grid,
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    width: 580px !important;
    /* Elegant 2-column wide grid panel */
    padding: 1.25rem !important;
}

.dropdown-item-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    width: 100%;
}

.dropdown-item-desc {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.35;
    transition: color var(--transition-fast);
}

.dropdown-item:hover .dropdown-item-desc {
    color: var(--primary-light);
    /* Hover highlight secondary purple */
    opacity: 0.85;
}

@media (max-width: 992px) {

    .products-grid,
    .services-grid {
        width: 480px !important;
    }
}

@media (max-width: 1024px) {
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        padding: 1rem 0.5rem !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
    }

    .dropdown-item-desc {
        font-size: 0.78rem;
    }
}

/* ==========================================================================
   Infrastructure Section Redesign (Light Alternate Theme)
   ========================================================================== */
.infra-section {
    padding: 100px 0;
    background-color: var(--bg-alt);
    color: var(--text-main);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.infra-header {
    max-width: 960px;
    margin-bottom: 4.5rem;
}

.infra-title {
    font-size: clamp(2.25rem, 4.5vw, 3.15rem);
    font-weight: 800;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.infra-subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-muted);
    font-weight: 400;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.infra-card {
    background: #090c15;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.infra-card:hover {
    transform: translateY(-5px);
    background: #0f172a;
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(99, 102, 241, 0.15);
}

.infra-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    letter-spacing: -0.01em;
}

.infra-card p {
    font-size: 0.86rem;
    color: #94a3b8;
    line-height: 1.55;
    margin: 0;
}

/* Responsive Infrastructure */
@media (max-width: 992px) {
    .infra-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .infra-header {
        margin-bottom: 3.5rem;
    }
}

@media (max-width: 768px) {
    .infra-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .infra-section {
        padding: 80px 0;
    }

    .infra-header {
        margin-bottom: 2.5rem;
    }
}

/* ==========================================================================
   Google Reviews Section Redesign (Dark Theme)
   ========================================================================== */
.google-reviews-section {
    padding: 100px 0;
    background-color: #0c111d;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.google-reviews-section .section-title {
    color: #ffffff;
}

.google-reviews-section .section-subtitle {
    color: #94a3b8;
}

.google-rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: -1.5rem;
    margin-bottom: 3.5rem;
}

.google-summary-stars {
    display: flex;
    gap: 0.25rem;
}

.google-rating-score {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

.google-rating-score strong {
    color: #ffffff;
    font-weight: 700;
}

.google-review-card {
    background: #131b2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(79, 70, 229, 0.12);
    border-color: rgba(99, 102, 241, 0.35);
}

.google-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.google-reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.google-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(79, 70, 229, 0.18);
    color: #a5b4fc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    border: 1.5px solid rgba(99, 102, 241, 0.3);
}

/* Dark mode overrides for avatar pills */
.google-reviews-section .google-avatar[style*="#10b981"],
.google-reviews-section .google-avatar[style*="ecfdf5"] {
    background-color: rgba(16, 185, 129, 0.18) !important;
    color: #34d399 !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
}

.google-reviews-section .google-avatar[style*="#f59e0b"],
.google-reviews-section .google-avatar[style*="fffbeb"] {
    background-color: rgba(245, 158, 11, 0.18) !important;
    color: #fbbf24 !important;
    border-color: rgba(245, 158, 11, 0.3) !important;
}

.google-reviews-section .google-avatar[style*="#8b5cf6"],
.google-reviews-section .google-avatar[style*="f5f3ff"] {
    background-color: rgba(139, 92, 246, 0.18) !important;
    color: #c084fc !important;
    border-color: rgba(139, 92, 246, 0.3) !important;
}

.google-reviews-section .google-avatar[style*="#db2777"],
.google-reviews-section .google-avatar[style*="fdf2f8"] {
    background-color: rgba(219, 39, 119, 0.18) !important;
    color: #f472b6 !important;
    border-color: rgba(219, 39, 119, 0.3) !important;
}

.google-reviews-section .google-avatar[style*="#2563eb"],
.google-reviews-section .google-avatar[style*="eff6ff"] {
    background-color: rgba(37, 99, 235, 0.18) !important;
    color: #60a5fa !important;
    border-color: rgba(37, 99, 235, 0.3) !important;
}

.google-reviews-section .google-avatar[style*="#d97706"],
.google-reviews-section .google-avatar[style*="fef3c7"] {
    background-color: rgba(217, 119, 6, 0.18) !important;
    color: #fbbf24 !important;
    border-color: rgba(217, 119, 6, 0.3) !important;
}

.google-reviews-section .google-avatar[style*="#a21caf"],
.google-reviews-section .google-avatar[style*="fae8ff"] {
    background-color: rgba(162, 28, 175, 0.18) !important;
    color: #e879f9 !important;
    border-color: rgba(162, 28, 175, 0.3) !important;
}

.google-reviews-section .google-avatar[style*="#475569"],
.google-reviews-section .google-avatar[style*="f1f5f9"],
.google-reviews-section .google-avatar[style*="f8fafc"] {
    background-color: rgba(148, 163, 184, 0.15) !important;
    color: #cbd5e1 !important;
    border-color: rgba(148, 163, 184, 0.3) !important;
}

.google-reviewer-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    margin: 0 0 0.2rem 0;
}

.google-review-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.google-stars {
    display: flex;
    gap: 0.1rem;
}

.star-icon {
    width: 15px;
    height: 15px;
    fill: #fbbc05;
}

.star-icon.big {
    width: 22px;
    height: 22px;
}

.google-time {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
}

.google-badge {
    display: none !important;
}

.google-review-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #cbd5e1;
    font-style: italic;
    margin: 0;
}

/* Responsive Google Reviews */
@media (max-width: 992px) {
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .google-reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .google-reviews-section {
        padding: 80px 0;
    }

    .google-rating-summary {
        margin-bottom: 2.5rem;
    }
}


/* Moving Carousel Container & Tracks */
.reviews-carousel-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 1.5rem 0;
}

/* Elegant horizontal fade out effects on the edges */
.reviews-carousel-container::before,
.reviews-carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.reviews-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, #0c111d 0%, transparent 100%);
}

.reviews-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, #0c111d 0%, transparent 100%);
}

.reviews-marquee-row {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.reviews-marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

/* Row 1 animation (scrolls left) */
.left-to-right .reviews-marquee-track {
    animation: reviews-scroll-left 50s linear infinite;
}

/* Row 2 animation (scrolls right) */
.right-to-left .reviews-marquee-track {
    animation: reviews-scroll-right 50s linear infinite;
}

/* Pause scroll animation on hover to allow reading reviews easily */
.reviews-marquee-row:hover .reviews-marquee-track {
    animation-play-state: paused;
}

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

    100% {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

@keyframes reviews-scroll-right {
    0% {
        transform: translateX(calc(-50% - 0.75rem));
    }

    100% {
        transform: translateX(0);
    }
}

/* Review card specific layout updates for carousel */
.reviews-marquee-track .google-review-card {
    width: 360px !important;
    flex-shrink: 0;
    background: #131b2e !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
}

.reviews-marquee-track .google-review-card:hover {
    border-color: rgba(99, 102, 241, 0.35) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(79, 70, 229, 0.12) !important;
}

@media (max-width: 768px) {
    .reviews-carousel-container {
        padding: 0.75rem 0;
        gap: 1rem;
    }

    .reviews-marquee-track .google-review-card {
        width: 300px !important;
        padding: 1.5rem !important;
    }

    .google-review-text {
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   FAQ Accordion Section Styles (Light Alternate Theme)
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-alt);
    color: var(--text-main);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.faq-info {
    max-width: 380px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.faq-accordion {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: rgba(248, 250, 252, 0.8);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    text-align: left;
    cursor: pointer;
    gap: 1.5rem;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    fill: var(--text-dimmed);
    transition: transform var(--transition-normal), fill var(--transition-fast);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-content {
    padding: 0 2rem 1.75rem 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.faq-answer-content p {
    margin: 0;
}

/* Active / Expanded states */
.faq-item.active {
    background: var(--bg-card);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
    fill: var(--primary);
}

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-info {
        max-width: 100%;
    }

    .faq-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 1.5rem 1.25rem 1.5rem;
        font-size: 0.88rem;
    }
}

/* ==========================================================================
   Bottom CTA Section Styles
   ========================================================================== */
.bottom-cta-section {
    padding: 80px 0;
    background-color: var(--bg-main);
    /* Light background color */
    border-bottom: 1px solid var(--border-color);
}

.cta-card {
    background-color: var(--bg-alt);
    /* Light gray card matching mockup */
    border: 1px solid var(--border-color);
    border-radius: 24px;
    /* Large rounded corners from mockup */
    padding: 4rem 3rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.cta-badge-bar {
    width: 4px;
    height: 16px;
    background-color: var(--primary);
    /* Indigo/Purple bar */
    border-radius: 2px;
}

.cta-badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.25;
    max-width: 800px;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    max-width: 680px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Primary dark button style override */
.cta-buttons .btn-dark {
    background-color: var(--dark) !important;
    color: #ffffff !important;
    padding: 0.85rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.cta-buttons .btn-dark:hover {
    background-color: var(--dark-hover) !important;
    transform: translateY(-2px);
}

/* WhatsApp outlined button style override */
.cta-buttons .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: transparent !important;
    border: 1.5px solid var(--border-dark) !important;
    color: var(--text-main) !important;
    padding: 0.85rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.cta-buttons .btn-whatsapp:hover {
    background-color: rgba(0, 0, 0, 0.02) !important;
    border-color: var(--text-main) !important;
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    color: #25d366;
    /* Official WhatsApp Brand Green */
}

@media (max-width: 768px) {
    .bottom-cta-section {
        padding: 60px 0;
    }

    .cta-card {
        padding: 3rem 1.5rem;
        gap: 1.25rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

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

/* ==========================================================================
   Scroll Reveal Animation Styles
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ==========================================================================
   Product Detail Split Hero Section
   ========================================================================== */
.kora-hero {
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(79, 70, 229, 0.08) 0%, transparent 55%),
        #060814;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.kora-hero .badge {
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.25);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
    margin: 0 0 1.5rem 0;
    line-height: 1.15;
}

.hero-title .highlight-text {
    color: #6366f1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 0 2.5rem 0;
    line-height: 1.6;
    text-align: center;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 1rem;
}

.kora-hero .btn-secondary {
    background: transparent;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2);
    transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.kora-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12), 0 5px 15px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.analytics-card {
    width: 245px;
    left: 20px;
    bottom: 40px;
    z-index: 5;
}

.analytics-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    position: relative;
}

.analytics-icon-bell {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #4f46e5;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    gap: 6px;
}

.chart-bar {
    width: 14px;
    background: linear-gradient(180deg, #818cf8 0%, #4f46e5 100%);
    border-radius: 4px 4px 0 0;
    height: 10px;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--text-dimmed);
    font-weight: 500;
}

.analytics-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.status-pill {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background-color: var(--success-glow);
    color: var(--success);
    font-weight: 700;
    text-transform: uppercase;
}

.mini-card {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
}

.mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.mini-blue {
    background: #818cf8;
}

.mini-red {
    background: #4f46e5;
}

.mini-orange {
    background: #6366f1;
}

.mini-info {
    display: flex;
    flex-direction: column;
}

.mini-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

.mini-val {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin: 0.15rem 0;
}

.mini-desc {
    font-size: 0.65rem;
    color: var(--text-dimmed);
    font-weight: 500;
}

.workflows-card {
    width: 210px;
    left: 140px;
    top: 20px;
    z-index: 6;
}

.outbound-card {
    width: 190px;
    right: 20px;
    top: 150px;
    z-index: 7;
}

.conversions-card {
    width: 200px;
    right: 40px;
    bottom: 30px;
    z-index: 8;
}

@keyframes float-1 {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(0.5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes float-2 {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(-0.5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes float-3 {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-6px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes float-4 {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(-1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.card-anim-1 {
    animation: float-1 6s ease-in-out infinite;
}

.card-anim-2 {
    animation: float-2 7s ease-in-out infinite;
}

.card-anim-3 {
    animation: float-3 5.5s ease-in-out infinite;
}

.card-anim-4 {
    animation: float-4 6.5s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-subtitle {
        text-align: center;
        margin: 0 auto 2.5rem auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-visual {
        height: 480px;
    }
}

/* ==========================================================================
   Interactive Bundle Builder Section
   ========================================================================== */
.bundle-builder-section {
    padding: 100px 0;
    background-color: var(--bg-alt);
    border-bottom: 1px solid var(--border-color);
}

.bundle-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3.5rem;
}

.bundle-selection-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    cursor: pointer;
    transition: all var(--transition-fast);
    user-select: none;
    position: relative;
}

.bundle-selection-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.bundle-selection-card.selected {
    border-color: var(--primary);
    background: var(--primary-glow);
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.08);
}

.bundle-card-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid var(--text-dimmed);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    margin-top: 2px;
    background: #ffffff;
}

.bundle-selection-card.selected .bundle-card-checkbox {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.bundle-card-checkbox svg {
    opacity: 0;
    transform: scale(0.5);
    transition: all var(--transition-fast);
    stroke: #ffffff;
}

.bundle-selection-card.selected .bundle-card-checkbox svg {
    opacity: 1;
    transform: scale(1);
}

.bundle-card-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: rgba(15, 23, 42, 0.04);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.bundle-selection-card.selected .bundle-card-icon {
    background: var(--primary);
    color: #ffffff;
}

.bundle-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bundle-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.bundle-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.bundle-selections-group {
    margin-bottom: 2.5rem;
}

.bundle-group-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    margin-top: 0;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.bundle-cards-subgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.bundle-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.bundle-sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.bundle-summary-list {
    margin-bottom: 2rem;
}

.bundle-summary-section {
    margin-bottom: 1.5rem;
}

.bundle-summary-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dimmed);
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.25rem;
}

.bundle-summary-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bundle-summary-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    border: 1px solid var(--border-dark);
    color: var(--text-muted);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.bundle-summary-badge.empty-state {
    background: transparent;
    border: 1px dashed var(--border-dark);
    color: var(--text-dimmed);
    font-style: italic;
}

.bundle-metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--border-color);
}

.bundle-metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.bundle-metric-value {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.bundle-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (max-width: 992px) {
    .bundle-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .bundle-cards-subgrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-tabs-wrapper {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        margin-left: -1.5rem !important;
        margin-right: -1.5rem !important;
        width: calc(100% + 3rem) !important;
        scrollbar-width: none; /* Firefox */
    }
    
    .pricing-tabs-wrapper::-webkit-scrollbar {
        display: none; /* Safari/Chrome */
    }

    .pricing-tab-pills {
        display: flex !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
    }

    .pricing-tab-pill,
    .blog-tab-pill {
        flex-shrink: 0 !important;
    }
}


/* ==========================================================================
   Pricing Page Specific Styles
   ========================================================================== */
.pricing-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin: -20px 0 60px 0;
    position: relative;
    z-index: 10;
}

.pricing-tab-pills {
    display: inline-flex;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    padding: 6px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.pricing-tab-pill,
.blog-tab-pill {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition-fast);
}

.pricing-tab-pill:hover,
.blog-tab-pill:hover {
    color: var(--text-main);
}

.pricing-tab-pill.active,
.blog-tab-pill.active {
    background-color: var(--dark);
    color: #ffffff;
}

.pricing-tab-panel {
    display: none;
}

.pricing-tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

/* SaaS Product pricing cards styling */
.saas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    align-items: stretch;
}

.saas-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-normal);
}

.saas-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.saas-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.saas-card.featured::before {
    content: "POPULAR";
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.saas-card-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: var(--primary-glow);
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.saas-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    margin: 0 0 0.5rem 0;
}

.saas-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 2rem;
    min-height: 48px;
}

.saas-card-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.saas-card-period {
    font-size: 0.85rem;
    color: var(--text-dimmed);
    margin-bottom: 2.5rem;
}

.saas-card-features-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.saas-card-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    flex-grow: 1;
}

.saas-card-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.saas-card-feature-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Services sub-grids */
.services-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-group-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    margin-top: 0;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.services-group-heading::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: var(--border-color);
}

.services-grid-wrapper {
    margin-bottom: 5rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@media (max-width: 992px) {
    .saas-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* Pricing Page Core Layouts */
.pricing-hero {
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(79, 70, 229, 0.08) 0%, transparent 55%),
        #060814;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.pricing-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.pricing-hero-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-section {
    padding: 60px 0 100px 0;
}

/* Button Helpers */
.btn-block {
    display: inline-flex;
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--text-main) !important;
    border: 1px solid var(--border-dark);
}

.btn-outline:hover {
    background: var(--bg-alt);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--dark);
    color: #ffffff !important;
}

.btn-dark:hover {
    background: var(--dark-hover);
    transform: translateY(-2px);
}

/* SaaS Sub-tabs styles */
.saas-sub-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.saas-sub-pills {
    display: inline-flex;
    background-color: var(--bg-alt);
    border: 1px solid var(--border-dark);
    padding: 4px;
    border-radius: var(--radius-full);
    gap: 2px;
    max-width: 100%;
    overflow-x: auto;
}

.saas-sub-pill {
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.saas-sub-pill:hover {
    color: var(--text-main);
}

.saas-sub-pill.active {
    background-color: var(--primary);
    color: #ffffff;
}

.saas-product-panel {
    display: none;
}

.saas-product-panel.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

/* Custom Bundle Builder Grid & Sidebar Layout */
.bundle-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 991px) {
    .bundle-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.bundle-selections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bundle-sidebar-wrapper {
    position: sticky;
    top: 120px;
    /* Sticks below the sticky navigation header */
    align-self: start;
    /* Ensures the grid item height doesn't stretch to 100% of parent, enabling position: sticky to work */
    height: fit-content;
}

.bundle-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}

.bundle-sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 0.75rem;
}

.bundle-summary-section {
    margin-bottom: 1.5rem;
}

.bundle-summary-section-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--text-dimmed);
    margin-bottom: 0.75rem;
}

.bundle-summary-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bundle-summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background-color: var(--bg-alt);
    border: 1px solid var(--border-dark);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-main);
    animation: fadeIn 0.3s ease-in-out;
}

.bundle-summary-badge svg {
    color: var(--success);
}

.bundle-summary-badge.empty-state {
    color: var(--text-dimmed);
    border-style: dashed;
    background: transparent;
}

.bundle-metrics {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-dark);
}

.bundle-metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bundle-metric-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.bundle-metric-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.bundle-sidebar-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Custom Bundle Selection Card Styles */
.bundle-selections-group {
    margin-bottom: 2.5rem;
}

.bundle-group-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.bundle-group-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.bundle-cards-subgrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.bundle-selection-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all var(--transition-fast);
    user-select: none;
}

.bundle-selection-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.bundle-selection-card.selected {
    border-color: var(--primary);
    background: var(--primary-glow);
}

.bundle-card-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1.5px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    margin-top: 2px;
    background: #ffffff;
}

.bundle-selection-card.selected .bundle-card-checkbox {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.bundle-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.bundle-selection-card.selected .bundle-card-icon {
    background: #ffffff;
}

.bundle-card-icon svg {
    width: 20px;
    height: 20px;
}

.bundle-card-info {
    flex-grow: 1;
}

.bundle-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.bundle-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   Articles / Blog Page Specific Styles
   ========================================================================== */
.articles-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.5rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.articles-display-options {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.view-toggles {
    display: flex;
    align-items: center;
    background: var(--bg-alt);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    padding: 2px;
}

.view-toggle-btn {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dimmed);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.view-toggle-btn:hover {
    color: var(--text-main);
}

.view-toggle-btn.active {
    background: var(--bg-card);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Sort Dropdown */
.sort-dropdown-wrapper {
    position: relative;
}

.sort-dropdown-trigger {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.sort-dropdown-trigger:hover {
    border-color: var(--primary-light);
}

.sort-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    min-width: 140px;
    padding: 4px;
    display: none;
    z-index: 100;
    animation: fadeIn 0.2s ease-in-out;
}

.sort-dropdown-menu.show {
    display: block;
}

.sort-option {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 8px 12px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.sort-option:hover {
    background: var(--bg-alt);
    color: var(--text-main);
}

.sort-option.active {
    background: var(--primary-glow);
    color: var(--primary);
    font-weight: 600;
}

/* Blog Cards Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

/* List view variant */
.blog-grid.list-view {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
}

.blog-grid.list-view .blog-card {
    flex-direction: row;
    align-items: stretch;
}

.blog-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: var(--bg-alt);
}

.blog-grid.list-view .blog-card-image-wrapper {
    width: 320px;
    padding-top: 0;
    flex-shrink: 0;
}

.blog-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-main);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.75rem;
    line-height: 1.35;
    transition: color var(--transition-fast);
}

.blog-card:hover .blog-card-title {
    color: var(--primary);
}

.blog-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.blog-card-btn {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    text-align: center;
}

.blog-card-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

/* Glow highlight for selected / featured card matching screenshot middle state */
.blog-card.highlighted {
    border-color: var(--primary-light);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.08);
    transform: translateY(-4px);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .blog-grid.list-view .blog-card {
        flex-direction: column;
    }

    .blog-grid.list-view .blog-card-image-wrapper {
        width: 100%;
        padding-top: 56.25%;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .articles-controls-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .articles-display-options {
        width: 100%;
        justify-content: space-between;
    }
}

/* ==========================================================================
   Article Detail View Specific Styles
   ========================================================================== */
.article-detail-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
    animation: fadeIn 0.4s ease-in-out;
}

.back-btn-wrapper {
    margin-bottom: 2rem;
}

.back-to-articles-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 6px 0;
}

.back-to-articles-btn:hover {
    color: var(--primary-light);
    transform: translateX(-4px);
}

.article-detail-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-dimmed);
}

.article-detail-badge {
    background: var(--primary-glow);
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.article-detail-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.article-detail-author-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-dark);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid var(--border-dark);
}

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

.author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.author-role {
    font-size: 0.78rem;
    color: var(--text-dimmed);
}

.article-detail-banner {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.article-detail-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.article-detail-body {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.article-detail-body p {
    margin-bottom: 1.5rem;
}

.article-detail-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.article-detail-body ul,
.article-detail-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-detail-body li {
    margin-bottom: 0.5rem;
}

.article-detail-body blockquote {
    border-left: 4px solid var(--primary);
    background: var(--bg-alt);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-main);
}

.article-detail-cta {
    margin-top: 4rem;
    padding: 3.5rem;
    background: var(--bg-alt);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    text-align: center;
}

.article-detail-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.article-detail-cta-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   DPDP Cookie Consent Banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 380px;
    max-width: calc(100vw - 60px);
    background: rgba(12, 17, 29, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(79, 70, 229, 0.2);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 2px 10px rgba(79, 70, 229, 0.05);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.cookie-header h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.cookie-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

.cookie-content p a {
    color: #a5b4fc;
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.cookie-content p a:hover {
    color: #ffffff;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-primary-cookie {
    flex: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-fast);
}

.btn-primary-cookie:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-outline-cookie {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-fast);
}

.btn-outline-cookie:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 20px;
        right: 20px;
        width: calc(100vw - 40px);
        max-width: 100%;
        padding: 1.25rem;
    }
}

/* ==========================================================================
   Mobile Nav Drawer Backdrop Overlay
   ========================================================================== */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
/* ==========================================================================
   Hero Visual Mobile Overrides (Scale floating cards to prevent overlap)
   ========================================================================== */
@media (max-width: 768px) {
    body .hero-visual {
        width: 500px !important; /* Reduced width to bring cards closer together (compact layout) */
        height: 520px !important; /* Preserves vertical coordinate calculations */
        position: relative !important;
        left: 50% !important;
        margin-left: -250px !important; /* Centering the 500px container */
        transform-origin: center top !important; /* Scale from top to remove vertical gap under CTA buttons */
    }
}

@media (max-width: 768px) and (min-width: 577px) {
    body .hero-visual {
        transform: scale(0.95) !important;
        margin-top: -10px !important; /* Pull up closer to buttons */
        margin-bottom: -26px !important; /* Compensate for scaled bottom height */
    }
}

@media (max-width: 576px) {
    body .hero-visual {
        transform: scale(0.85) !important;
        margin-top: -25px !important;
        margin-bottom: -78px !important;
    }
}

@media (max-width: 480px) {
    body .hero-visual {
        transform: scale(0.75) !important;
        margin-top: -45px !important;
        margin-bottom: -130px !important;
    }
}

@media (max-width: 380px) {
    body .hero-visual {
        transform: scale(0.65) !important;
        margin-top: -65px !important;
        margin-bottom: -182px !important;
    }
}


/* ==========================================================================
   Features Section - New Tabbed Layout & Numbered Containers
   ========================================================================== */
.features-nav-tabs {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 3.5rem;
    z-index: 2;
    position: relative;
}

.feat-tab-pill {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
}

.feat-tab-pill:hover {
    background: var(--bg-alt);
    border-color: var(--primary-light);
    color: var(--text-main);
}

.feat-tab-pill.active {
    background: var(--dark);
    border-color: var(--dark);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

/* Numbered feature items */
.numbered-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.numbered-feature-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.num-bubble {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}

.num-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.num-text strong {
    color: var(--text-main);
    font-weight: 700;
}


/* ==========================================================================
   Stakeholder Ecosystem Section Styles (Dark Theme)
   ========================================================================== */
.ecosystem-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.ecosystem-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ecosystem-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(99, 102, 241, 0.15);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.ecosystem-card.featured-card {
    border: 2px solid var(--primary-light);
    background: rgba(99, 102, 241, 0.02);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.04);
    position: relative;
}

.ecosystem-card.featured-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 20px 45px rgba(99, 102, 241, 0.08);
}

.eco-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.eco-icon-wrapper.sales-bg { background: rgba(99, 102, 241, 0.15); }
.eco-icon-wrapper.ops-bg { background: rgba(16, 185, 129, 0.15); }
.eco-icon-wrapper.dev-bg { background: rgba(255, 255, 255, 0.08); }

.ecosystem-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.eco-card-desc {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.eco-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.eco-bullet-list li {
    font-size: 0.88rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.eco-check {
    color: var(--success);
    font-weight: bold;
}

.eco-card-link {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
    align-self: flex-start;
}

.eco-card-link:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

@media (max-width: 992px) {
    .ecosystem-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ecosystem-card {
        padding: 2.5rem 2rem;
    }
}


/* ==========================================================================
   Complete Business Suite - Refined Modern Console Layout
   ========================================================================== */
.offerings-section {
    background-color: #f8fafc;
    padding: 110px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

/* Modern subtle neural dot matrix background */
.tech-grid-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(79, 70, 229, 0.08) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 40%, transparent 100%);
}

.tech-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.tech-glow-orb.orb-1 {
    width: 450px;
    height: 450px;
    top: -5%;
    right: -5%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, transparent 70%);
}

.tech-glow-orb.orb-2 {
    width: 400px;
    height: 400px;
    bottom: -5%;
    left: -5%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.09) 0%, transparent 70%);
}

.offerings-console-grid {
    display: grid;
    grid-template-columns: 0.32fr 0.68fr;
    gap: 2rem;
    z-index: 2;
    position: relative;
    align-items: start;
}

/* Sidebar Column */
.console-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.sidebar-btn {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    padding: 0.95rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    user-select: none;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
}

.sidebar-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3.5px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(180deg, var(--primary) 0%, #818cf8 100%);
    opacity: 0;
    transform: scaleY(0.4);
    transition: all 0.25s ease;
}

.sidebar-btn:hover {
    background: #ffffff;
    border-color: rgba(79, 70, 229, 0.3);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.08);
}

.sidebar-btn.active {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 10px 28px rgba(79, 70, 229, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.sidebar-btn.active::before {
    opacity: 1;
    transform: scaleY(1);
}

.btn-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.sidebar-btn:hover .btn-icon-wrap,
.sidebar-btn.active .btn-icon-wrap {
    background: rgba(79, 70, 229, 0.1);
}

.sidebar-svg {
    width: 17px;
    height: 17px;
    color: #64748b;
    transition: color 0.2s ease;
}

.sidebar-btn:hover .sidebar-svg,
.sidebar-btn.active .sidebar-svg {
    color: var(--primary);
}

.sidebar-btn .btn-text {
    font-size: 0.92rem;
    font-weight: 700;
    color: #475569;
    transition: color 0.2s ease;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
}

.sidebar-btn:hover .btn-text,
.sidebar-btn.active .btn-text {
    color: var(--text-main);
}

.sidebar-btn .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--success);
    margin-left: auto;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

.sidebar-btn.active .status-dot {
    opacity: 1;
}

/* Console Panel Column */
.console-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05), inset 0 1px 2px rgba(255, 255, 255, 0.8);
    padding: 3rem 2.75rem;
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.console-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.3), transparent);
}

.panel-content {
    display: none;
    flex-direction: column;
    animation: panelFadeEntrance 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.panel-content.active {
    display: flex;
}

@keyframes panelFadeEntrance {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-header-block {
    margin-bottom: 2rem;
}

.panel-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* Panel Feature Grid */
.panel-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.feature-sub-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem 1.4rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.02);
    overflow: hidden;
}

.feature-sub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, #818cf8 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-sub-card:hover {
    transform: translateY(-4px);
    border-color: rgba(79, 70, 229, 0.35);
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.09);
}

.feature-sub-card:hover::before {
    opacity: 1;
}

.feature-sub-card h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.feature-sub-card p {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
    flex-grow: 1;
}

/* Explore CTA Link */
.panel-footer-row {
    display: flex;
    align-items: center;
}

.panel-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.85rem 1.65rem;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
    background: #0f172a;
    color: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.15);
}

.panel-action-btn svg {
    transition: transform 0.2s ease;
}

.panel-action-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.25);
}

.panel-action-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive console adjustments */
@media (max-width: 1024px) {
    .panel-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .offerings-console-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .console-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .sidebar-btn {
        flex: 1 1 calc(50% - 1rem);
        min-width: 200px;
    }

    .panel-footer-row {
        flex-direction: column;
        align-items: stretch;
    }

    .panel-action-btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .panel-features-grid {
        grid-template-columns: 1fr;
    }

    .console-panel {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }

    .sidebar-btn {
        flex: 1 1 100%;
    }
}



/* ==========================================================================
   Product Showcase Split Layout & Info Block Animations
   ========================================================================== */
.features-split-section {
    padding: 100px 0;
    background-color: var(--bg-alt);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.split-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.split-left {
    position: relative;
}

.product-info-stack {
    position: relative;
    height: 485px; /* Define height to prevent container collapse on absolute positioning */
}

.product-info-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.4s;
}

.product-info-block.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

.product-description-para {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-info-block h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

/* Card Stack Container (Right side) */
.split-right {
    position: relative;
}

.card-stack-container {
    position: relative;
    height: 450px;
    margin-top: 32px;
}

.stacked-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                z-index 0.6s;
    transform-origin: center bottom;
}

/* Responsive Overrides for Showcase */
@media (max-width: 992px) {
    .split-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-info-stack {
        height: auto;
        position: relative;
    }
    
    .product-info-block {
        position: relative;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        transform: none;
        transition: opacity 0.3s;
    }
    
    .product-info-block.active {
        opacity: 1;
        visibility: visible;
        height: auto;
        overflow: visible;
    }
    
    .card-stack-container {
        height: 420px;
        margin-top: 0;
    }
}



/* ==========================================================================
   Product Showcase - High-Fidelity Action Cards & Card Deck System
   ========================================================================== */

/* Card Container & Inner Structure */
.card-stack-container {
    position: relative;
    height: 450px;
    margin-top: 32px;
}

.stacked-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 340px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                z-index 0.6s;
    transform-origin: center bottom;
}

.card-inner {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08), 
                0 0 0 1px rgba(15, 23, 42, 0.02) !important;
    transition: box-shadow var(--transition-normal), transform var(--transition-normal);
}

.stacked-card.active .card-inner {
    background: #ffffff !important;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.12), 
                0 0 0 1px rgba(15, 23, 42, 0.03) !important;
}

/* Inactive cards in stack: hide body text to prevent visual clutter */
.stacked-card .card-window-header,
.stacked-card .card-body-mockup {
    transition: opacity 0.4s ease;
}

.stacked-card:not(.active) .card-window-header,
.stacked-card:not(.active) .card-body-mockup {
    opacity: 0 !important;
    pointer-events: none;
}

.stacked-card:not(.active) .card-inner {
    background: #ffffff !important;
    border-color: rgba(15, 23, 42, 0.06) !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04) !important;
}

/* Card Window Header */
.card-window-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: #f8fafc;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.window-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-dimmed);
    margin-left: 6px;
    font-family: 'Inter', sans-serif;
}

.card-body-mockup {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

/* Glow Backdrop */
.split-right::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

/* Action Banner */
.mockup-action-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.75rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.banner-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.5);
    animation: bannerPulseAnim 1.6s infinite;
}

@keyframes bannerPulseAnim {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(99, 102, 241, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

.pipeline-flow-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    padding: 12px;
}

.pipeline-node {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 8px 12px;
    width: 140px;
    box-shadow: var(--shadow-sm);
}

.node-icon-wrapper {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.node-icon-wrapper.slack-icon { background: rgba(224, 30, 90, 0.05); color: #e01e5a; }
.node-icon-wrapper.crm-icon { background: var(--primary-glow); color: var(--primary); }

.node-meta {
    display: flex;
    flex-direction: column;
}

.node-type {
    font-size: 0.6rem;
    color: var(--text-dimmed);
    text-transform: uppercase;
    font-weight: 700;
}

.node-name {
    font-size: 0.72rem;
    color: var(--text-main);
    white-space: nowrap;
}

.pipeline-connector-line {
    font-size: 1.2rem;
    color: var(--primary-light);
    font-weight: bold;
}

/* CRM Lead Score */
.mockup-lead-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.lead-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-glow);
    border: 1px solid rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
}

.lead-info {
    display: flex;
    flex-direction: column;
}

.lead-name {
    font-size: 0.85rem;
    color: var(--text-main);
}

.lead-company {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.lead-score-action {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    padding: 12px;
}

.score-radial-progress {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.score-percent {
    position: absolute;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-main);
}

.score-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.score-tag {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
}

.score-tag.success {
    background: var(--success-glow);
    color: var(--success);
}

.score-explanation {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Tasks Auto Allocation */
.task-allocation-card {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    padding: 12px;
}

.task-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.priority-label {
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
}

.priority-label.high {
    background: rgba(239, 68, 68, 0.05);
    color: #ef4444;
}

.task-title {
    font-size: 0.85rem;
    color: var(--text-main);
}

.task-card-body {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.task-allocation-action {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 8px 10px;
}

.allocation-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--success);
}

.allocation-meta {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.allocation-meta strong {
    font-size: 0.65rem;
    color: var(--success);
    text-transform: uppercase;
}

.allocation-meta span {
    font-size: 0.72rem;
    color: var(--text-main);
}

.availability-badge {
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--success-glow);
    color: var(--success);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Mail AI Composer */
.email-drafting-grid {
    display: grid !important;
    grid-template-columns: 0.35fr 0.65fr;
    gap: 12px;
    padding: 0.75rem !important;
}

.email-mockup-inbox {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 6px;
    padding: 6px;
}

.email-row.active {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sender-initial {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
}

.email-excerpt {
    display: flex;
    flex-direction: column;
}

.email-excerpt strong {
    font-size: 0.65rem;
    color: var(--text-main);
}

.email-excerpt span {
    font-size: 0.55rem;
    color: var(--text-dimmed);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 70px;
}

.email-mockup-composer {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.composer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.composer-header strong {
    font-size: 0.7rem;
    color: var(--primary);
}

.composer-badge {
    font-size: 0.55rem;
    background: var(--primary-glow);
    color: var(--primary);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 700;
}

.composer-body {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 8px;
}

.composer-actions {
    display: flex;
    gap: 6px;
}

.composer-btn {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    cursor: pointer;
}

.composer-btn.approve {
    background: var(--primary);
    color: #ffffff;
    border: none;
}

.composer-btn.edit {
    background: #ffffff;
    color: var(--text-muted);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Social Scheduler */
.social-scheduler-card {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    padding: 12px;
}

.social-post-preview {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 10px;
}

.social-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.profile-avatar {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #ffffff;
}

.profile-avatar.logo-bg {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.profile-meta {
    display: flex;
    flex-direction: column;
}

.profile-meta strong {
    font-size: 0.72rem;
    color: var(--text-main);
}

.profile-meta span {
    font-size: 0.55rem;
    color: var(--text-dimmed);
}

.social-post-text {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.social-schedule-action {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    padding: 8px 10px;
}

.schedule-clock-icon {
    font-size: 0.95rem;
    color: var(--primary);
}

.schedule-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.schedule-details strong {
    font-size: 0.65rem;
    color: var(--primary);
    text-transform: uppercase;
}

.schedule-details span {
    font-size: 0.72rem;
    color: var(--text-main);
}

.schedule-badge {
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--primary-glow);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
}

/* SEO Keyword Recommendations */
.seo-audit-score-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.seo-gauge-wrapper {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90px;
}

.seo-gauge-percent {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--success);
    font-family: 'Outfit', sans-serif;
}

.seo-gauge-label {
    font-size: 0.55rem;
    color: var(--text-dimmed);
    text-transform: uppercase;
    font-weight: 700;
}

.seo-quick-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.seo-stat {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.stat-value {
    color: var(--text-main);
    font-weight: 700;
}

.stat-value.success {
    color: var(--success);
}

.seo-recommendation-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(16, 185, 129, 0.03);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    padding: 12px;
}

.rec-icon {
    font-size: 0.95rem;
    color: var(--success);
}

.rec-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rec-details strong {
    font-size: 0.65rem;
    color: var(--success);
    text-transform: uppercase;
}

.rec-details span {
    font-size: 0.72rem;
    color: var(--text-main);
    line-height: 1.4;
}

/* Product Actions Button Row */
.product-actions-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 1.5rem;
}

.product-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 700;
    background-color: var(--dark);
    color: #ffffff;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 1px solid var(--dark);
}

.product-primary-btn:hover {
    background-color: var(--dark-hover);
    border-color: var(--dark-hover);
    transform: translateY(-1px);
}

.product-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 700;
    background-color: transparent;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-dark);
}

.product-secondary-btn:hover {
    background-color: var(--bg-alt);
    color: var(--primary);
    border-color: var(--primary-light);
    transform: translateY(-1px);
}



/* ==========================================================================
   Refined Features Section Styles (Benfit Reference Style)
   ========================================================================== */
.features-nav-tabs {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2.5rem;
    z-index: 2;
    position: relative;
}

.feat-tab-pill {
    padding: 0.65rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    background: #ffffff;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: 'Inter', sans-serif;
}

.feat-tab-pill:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.feat-tab-pill.active {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.product-description-para {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 1.75rem 0;
}

.numbered-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.numbered-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 10px;
    padding: 0.9rem 1.25rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
    transition: all var(--transition-fast);
}

.numbered-feature-item:hover {
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transform: translateX(3px);
}

.num-bubble {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
}

.num-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

.num-text strong {
    color: var(--text-main);
    font-weight: 700;
}

.product-info-stack {
    position: relative;
    height: 380px;
}

/* ==========================================================================
   Offerings Section (Light Gray Background)
   ========================================================================== */
.offerings-section {
    background-color: var(--bg-alt);
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}
