/* ═══════════════════════════════════════════════════════════════
   GROSUM DESIGN SYSTEM v2.0
   AI-Powered Performance Management Tools
   ═══════════════════════════════════════════════════════════════ */

:root {
    --navy: #0a1628;
    --navy-light: #111d33;
    --navy-mid: #162035;
    --blue: #3b82f6;
    --blue-bright: #60a5fa;
    --blue-dark: #1e40af;
    --teal: #06b6d4;
    --emerald: #10b981;
    --amber: #f59e0b;
    --purple: #8b5cf6;
    --rose: #f43f5e;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --font-display: 'Fraunces', serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.06);
    --shadow-card-hover: 0 4px 12px rgba(0,0,0,0.08), 0 16px 40px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 60px rgba(59,130,246,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--slate-800);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
    margin: 0;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar-gs {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}
.navbar-gs.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff !important;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.nav-logo span { color: var(--blue-bright); }
.navbar-gs .nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}
.navbar-gs .nav-link:hover,
.navbar-gs .nav-link.active { color: #fff !important; }
.navbar-gs .dropdown-menu {
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    min-width: 240px;
}
.navbar-gs .dropdown-item {
    color: rgba(255,255,255,0.75);
    border-radius: 8px;
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    transition: all 0.2s;
}
.navbar-gs .dropdown-item:hover {
    background: rgba(59,130,246,0.15);
    color: #fff;
}
.navbar-gs .dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}
.btn-nav-demo {
    background: var(--blue);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}
.btn-nav-demo:hover {
    background: var(--blue-bright);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59,130,246,0.4);
}

/* ═══════════════════════════════════════════
   PAGE HERO (Inner Pages)
═══════════════════════════════════════════ */
.page-hero {
    background: var(--navy);
    position: relative;
    padding: 9rem 0 4rem;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(59,130,246,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 100%);
}
.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    color: #fff;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}
.page-hero .gradient-text {
    background: linear-gradient(135deg, var(--blue-bright), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero p {
    color: var(--slate-400);
    font-size: 1.15rem;
    max-width: 640px;
    line-height: 1.7;
}
.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--blue-bright);
    margin-bottom: 1.25rem;
}
.page-hero .hero-badge .dot {
    width: 6px; height: 6px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

/* ═══════════════════════════════════════════
   HOMEPAGE HERO (Full Height)
═══════════════════════════════════════════ */
.hero-home {
    background: var(--navy);
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(59,130,246,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-home::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(6,182,212,0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary-gs {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary-gs:hover {
    background: var(--blue-bright);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59,130,246,0.4);
}
.btn-secondary-gs {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-secondary-gs:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-gs {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-outline-gs:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59,130,246,0.3);
}
.btn-white-gs {
    background: #fff;
    color: var(--navy);
    border: none;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}
.btn-white-gs:hover {
    background: var(--slate-100);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.btn-sm { padding: 0.55rem 1.5rem; font-size: 0.88rem; }

/* ═══════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════ */
.section { padding: 5rem 0; }
.section-lg { padding: 6rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-gray { background: var(--slate-50); }
.section-dark {
    background: var(--navy);
    color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: var(--slate-400); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue);
    margin-bottom: 1rem;
}
.section-label i { font-size: 0.7rem; }
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate-500);
    max-width: 640px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CARDS
═══════════════════════════════════════════ */
.card-gs {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
}
.card-gs:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}
.card-gs .card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}
.card-gs .card-icon.blue { background: rgba(59,130,246,0.1); color: var(--blue); }
.card-gs .card-icon.teal { background: rgba(6,182,212,0.1); color: var(--teal); }
.card-gs .card-icon.emerald { background: rgba(16,185,129,0.1); color: var(--emerald); }
.card-gs .card-icon.amber { background: rgba(245,158,11,0.1); color: var(--amber); }
.card-gs .card-icon.purple { background: rgba(139,92,246,0.1); color: var(--purple); }
.card-gs .card-icon.rose { background: rgba(244,63,94,0.1); color: var(--rose); }
.card-gs h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.card-gs p {
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.6;
}
.card-gs .badge-ai {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(245,158,11,0.1);
    color: var(--amber);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}
.card-gs .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: gap 0.2s;
}
.card-gs:hover .card-link { gap: 0.6rem; }

/* Dark card variant */
.card-dark {
    background: var(--navy-light);
    border-color: rgba(255,255,255,0.08);
}
.card-dark:hover {
    border-color: rgba(59,130,246,0.4);
    box-shadow: var(--shadow-glow);
}
.card-dark h3 { color: #fff; }
.card-dark p { color: var(--slate-400); }

/* ═══════════════════════════════════════════
   FEATURE BLOCKS
═══════════════════════════════════════════ */
.feature-block {
    padding: 5rem 0;
    border-bottom: 1px solid var(--slate-100);
}
.feature-block:last-child { border-bottom: none; }
.feature-block .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.feature-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.feature-block p {
    color: var(--slate-500);
    font-size: 1.05rem;
    line-height: 1.7;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    color: var(--slate-600);
    font-size: 0.95rem;
}
.feature-list li i {
    color: var(--emerald);
    font-size: 0.85rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}
.feature-screenshot {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.feature-screenshot-placeholder {
    background: linear-gradient(135deg, var(--slate-100), var(--slate-50));
    border-radius: var(--radius-sm);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing-card {
    background: #fff;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
    height: 100%;
    position: relative;
}
.pricing-card.popular {
    border-color: var(--blue);
    box-shadow: 0 8px 40px rgba(59,130,246,0.15);
}
.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
}
.pricing-card .plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
}
.pricing-card .plan-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.pricing-card .plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate-500);
}
.pricing-card .plan-desc {
    color: var(--slate-500);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--slate-200);
}
.pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.pricing-card .plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.45rem 0;
    font-size: 0.9rem;
    color: var(--slate-600);
}
.pricing-card .plan-features li i {
    color: var(--emerald);
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.pricing-card .plan-features li.disabled {
    color: var(--slate-400);
}
.pricing-card .plan-features li.disabled i {
    color: var(--slate-300);
}

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust-bar {
    background: var(--slate-50);
    padding: 3rem 0;
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
}
.trust-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    opacity: 0.5;
    transition: opacity 0.3s;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--slate-500);
    letter-spacing: -0.5px;
}
.trust-logo:hover { opacity: 0.8; }

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.stat-block {
    text-align: center;
    padding: 1rem;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue-bright);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.stat-label {
    font-size: 0.88rem;
    color: var(--slate-400);
    font-weight: 500;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
}
.testimonial-card .stars {
    color: var(--amber);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.testimonial-card .quote {
    font-size: 1rem;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}
.testimonial-card .author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--slate-800);
}
.testimonial-card .author-title {
    font-size: 0.82rem;
    color: var(--slate-500);
}

/* ═══════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════ */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--slate-200);
}
.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--slate-100);
}
.comparison-table thead th {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
}
.comparison-table thead th:first-child {
    text-align: left;
}
.comparison-table thead th.highlight {
    background: var(--blue);
}
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--slate-700);
}
.comparison-table tbody tr:hover {
    background: var(--slate-50);
}
.comparison-table .check { color: var(--emerald); }
.comparison-table .cross { color: var(--slate-300); }

/* ═══════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════ */
.faq-item {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--blue);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: #fff;
    font-weight: 600;
    font-size: 1rem;
    color: var(--slate-800);
    border: none;
    width: 100%;
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { background: var(--slate-50); }
.faq-question i {
    transition: transform 0.3s;
    color: var(--blue);
    flex-shrink: 0;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
    background: var(--navy);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.cta-box {
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 4rem 3rem;
    position: relative;
    box-shadow: var(--shadow-glow);
}
.cta-box h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}
.cta-box p {
    color: var(--slate-400);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer-gs {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    display: block;
}
.footer-logo span { color: var(--blue-bright); }
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}
.footer-heading {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    transition: color 0.2s;
    text-decoration: none;
}
.footer-links a:hover { color: #fff; }
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--blue);
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    text-decoration: none;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════ */
.form-gs .form-control,
.form-gs .form-select {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: var(--font-body);
}
.form-gs .form-control:focus,
.form-gs .form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-gs label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--slate-700);
    margin-bottom: 0.4rem;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   FREE TOOL CARDS
═══════════════════════════════════════════ */
.tool-card {
    background: #fff;
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.tool-card::before {
    content: 'FREE';
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--emerald);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
    letter-spacing: 1px;
}
.tool-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
}
.tool-card .tool-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}
.tool-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.tool-card p { color: var(--slate-500); font-size: 0.95rem; line-height: 1.6; }

/* ═══════════════════════════════════════════
   BLOG / RESOURCES
═══════════════════════════════════════════ */
.blog-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}
.blog-card .blog-img {
    height: 200px;
    background: linear-gradient(135deg, var(--slate-100), var(--slate-50));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    font-size: 2.5rem;
    overflow: hidden;
}
.blog-card .blog-body { padding: 1.5rem; }
.blog-card .blog-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--blue);
    background: rgba(59,130,246,0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}
.blog-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.blog-card h3 a {
    color: var(--slate-800);
    text-decoration: none;
    transition: color 0.2s;
}
.blog-card h3 a:hover { color: var(--blue); }
.blog-card .blog-excerpt {
    color: var(--slate-500);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.blog-card .blog-meta {
    font-size: 0.8rem;
    color: var(--slate-400);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 991px) {
    .page-hero { padding: 8rem 0 3rem; }
    .section { padding: 4rem 0; }
    .cta-box { padding: 3rem 1.5rem; }
    .pricing-card { padding: 2rem; }
}
@media (max-width: 767px) {
    .page-hero { padding: 7rem 0 2.5rem; }
    .page-hero h1 { font-size: 2rem; }
    .section { padding: 3rem 0; }
    .cta-box { padding: 2.5rem 1.25rem; }
    .stat-number { font-size: 2rem; }
    .footer-bottom { text-align: center; justify-content: center; }
    .comparison-table { font-size: 0.8rem; }
    .comparison-table th, .comparison-table td { padding: 0.6rem; }
}

.testimonial-carousel{position:relative;overflow:hidden;padding:0 0 1rem}
.testimonial-track{display:flex;transition:transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94)}
.testimonial-slide{flex:0 0 33.333%;padding:0 0.75rem;box-sizing:border-box}
.testimonial-slide .testimonial-card{height:100%}
/* .testimonial-nav{display:flex;align-items:center;justify-content:center;gap:1rem;margin-top:1.5rem} */
.testimonial-nav { display: none !important; }
.testimonial-arrow{width:40px;height:40px;border-radius:50%;border:1px solid rgba(255,255,255,0.1);background:var(--navy-light);color:var(--slate-400);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all 0.3s}
.testimonial-arrow:hover{border-color:var(--blue);color:var(--blue)}
.testimonial-dots{display:flex;gap:0.4rem}
.testimonial-dots .dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,0.15);cursor:pointer;transition:all 0.3s}
.testimonial-dots .dot.active{background:var(--blue);width:24px;border-radius:4px}
.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.testimonial-card .quote {
    flex: 1;
}
@media(max-width:991px){.testimonial-slide{flex:0 0 50%}}
@media(max-width:767px){.testimonial-slide{flex:0 0 100%}}

.marquee-wrapper{position:relative;overflow:hidden;width:100%;padding:0.5rem 0 1rem}
.marquee-fade{position:absolute;top:0;bottom:0;width:100px;z-index:2;pointer-events:none}
.marquee-track{display:flex;align-items:center;gap:3rem;width:max-content;animation:marqueeScroll 30s linear infinite}
.marquee-track:hover{animation-play-state:paused}
.marquee-logo{flex-shrink:0;font-size:1.1rem;font-weight:700;letter-spacing:0.5px;color:var(--slate-400);opacity:0.45;white-space:nowrap;font-family:'DM Sans',sans-serif;transition:opacity 0.3s}
.marquee-logo:hover{opacity:0.8}
@keyframes marqueeScroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
@media(max-width:767px){.marquee-track{gap:2rem}.marquee-logo{font-size:0.9rem}.marquee-fade{width:50px}}

.cs-featured {
    background: linear-gradient(135deg, var(--navy) 0%, #132042 100%);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cs-featured::before {
    content: '';
    position: absolute;
    top: -60%; right: -10%;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cs-fbadge {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(59,130,246,0.15);
    color: var(--blue-bright);
    font-size: 0.72rem; font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}
.cs-ftitle {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700;
    color: #fff; margin-bottom: 0.75rem; line-height: 1.3;
}
.cs-fdesc {
    color: rgba(255,255,255,0.55);
    font-size: 1rem; line-height: 1.7;
    margin: 0;
}
.cs-fstats {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.cs-fstat { text-align: center; }
.cs-fval {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 800;
    color: var(--blue-bright);
    line-height: 1; margin-bottom: 0.3rem;
}
.cs-flab {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

/* ── Case Study Cards ── */
.cs-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.cs-card:hover {
    box-shadow: 0 12px 40px rgba(10,22,40,0.08);
    transform: translateY(-4px);
}
.cs-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s;
}
.cs-card:hover .cs-accent { opacity: 1; }
.cs-top {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1rem;
}
.cs-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.cs-tag {
    font-size: 0.7rem; font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cs-title {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700;
    color: var(--slate-800);
    line-height: 1.35;
    margin-bottom: 0.75rem;
}
.cs-desc {
    color: var(--slate-500);
    font-size: 0.9rem; line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}
.cs-outcomes {
    list-style: none; padding: 0; margin: 0;
}
.cs-outcomes li {
    display: flex; align-items: flex-start; gap: 0.55rem;
    padding: 0.35rem 0;
    font-size: 0.85rem;
    color: var(--slate-600);
}
.cs-outcomes li i {
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 0.72rem;
}

/* Color variants */
.cs-blue .cs-accent { background: var(--blue); }
.cs-blue .cs-icon { background: rgba(59,130,246,0.1); color: var(--blue); }
.cs-blue .cs-tag { background: rgba(59,130,246,0.08); color: var(--blue); }
.cs-blue .cs-outcomes li i { color: var(--blue); }
.cs-blue:hover { border-color: rgba(59,130,246,0.3); }

.cs-purple .cs-accent { background: var(--purple); }
.cs-purple .cs-icon { background: rgba(139,92,246,0.1); color: var(--purple); }
.cs-purple .cs-tag { background: rgba(139,92,246,0.08); color: var(--purple); }
.cs-purple .cs-outcomes li i { color: var(--purple); }
.cs-purple:hover { border-color: rgba(139,92,246,0.3); }

.cs-emerald .cs-accent { background: var(--emerald); }
.cs-emerald .cs-icon { background: rgba(16,185,129,0.1); color: var(--emerald); }
.cs-emerald .cs-tag { background: rgba(16,185,129,0.08); color: var(--emerald); }
.cs-emerald .cs-outcomes li i { color: var(--emerald); }
.cs-emerald:hover { border-color: rgba(16,185,129,0.3); }

.cs-teal .cs-accent { background: var(--teal); }
.cs-teal .cs-icon { background: rgba(6,182,212,0.1); color: var(--teal); }
.cs-teal .cs-tag { background: rgba(6,182,212,0.08); color: var(--teal); }
.cs-teal .cs-outcomes li i { color: var(--teal); }
.cs-teal:hover { border-color: rgba(6,182,212,0.3); }

.cs-amber .cs-accent { background: var(--amber); }
.cs-amber .cs-icon { background: rgba(245,158,11,0.1); color: var(--amber); }
.cs-amber .cs-tag { background: rgba(245,158,11,0.08); color: var(--amber); }
.cs-amber .cs-outcomes li i { color: var(--amber); }
.cs-amber:hover { border-color: rgba(245,158,11,0.3); }

.cs-rose .cs-accent { background: var(--rose); }
.cs-rose .cs-icon { background: rgba(244,63,94,0.1); color: var(--rose); }
.cs-rose .cs-tag { background: rgba(244,63,94,0.08); color: var(--rose); }
.cs-rose .cs-outcomes li i { color: var(--rose); }
.cs-rose:hover { border-color: rgba(244,63,94,0.3); }

/* Responsive */
@media (max-width: 991px) {
    .cs-fstats { grid-template-columns: 1fr; gap: 0.75rem; margin-top: 1.5rem; }
}
@media (max-width: 767px) {
    .cs-featured { padding: 2rem; }
    .cs-ftitle { font-size: 1.25rem; }
}