/* =========================================
   FIRMA WEB SİTESİ – TANITIM SAYFASI CSS
   Açık Tema / Light Theme
   ========================================= */

/* ---------- CSS RESET & VARIABLES ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Backgrounds */
    --bg-body: #f5f6ff;
    --bg-white: #ffffff;
    --bg-soft: #eef0ff;
    --bg-card: #ffffff;
    --bg-card-alt: #f8f9ff;

    /* Brand colors */
    --primary: #5b50f0;
    --primary-light: #7b72f5;
    --primary-dark: #4338ca;
    --primary-muted: rgba(91, 80, 240, 0.1);
    --accent: #06b6d4;
    --accent-2: #a855f7;
    --accent-muted: rgba(168, 85, 247, 0.1);

    /* Text */
    --text-dark: #0f172a;
    --text-body: #374151;
    --text-muted: #6b7280;
    --text-dim: #9ca3af;

    /* Borders & shadows */
    --border: rgba(0, 0, 0, 0.07);
    --border-focus: rgba(91, 80, 240, 0.4);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 40px rgba(91, 80, 240, 0.15);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 32px rgba(91, 80, 240, 0.18);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #5b50f0, #a855f7);
    --grad-accent: linear-gradient(135deg, #06b6d4, #5b50f0);
    --grad-hero: linear-gradient(135deg, #5b50f0 0%, #a855f7 50%, #06b6d4 100%);
    --grad-soft: linear-gradient(135deg, #eef0ff 0%, #f5f3ff 50%, #ecfeff 100%);

    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

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

/* ---------- TYPOGRAPHY ---------- */
h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
}
h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}
h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}
h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
p {
    color: var(--text-muted);
}

.gradient-text {
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(91, 80, 240, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91, 80, 240, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-muted);
}

.btn-hero-primary {
    background: var(--grad-primary);
    color: #fff;
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 8px 28px rgba(91, 80, 240, 0.4);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(91, 80, 240, 0.5);
}

.btn-hero-ghost {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.btn-hero-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-primary-full {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: var(--grad-primary);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(91, 80, 240, 0.35);
}
.btn-primary-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(91, 80, 240, 0.45);
}

.btn-outline-full {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: transparent;
    color: var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1.5px solid var(--primary);
    transition: var(--transition);
}
.btn-outline-full:hover {
    background: var(--primary-muted);
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
    padding: 10px 0;
}
.nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 600;
    flex-shrink: 0;
}
.logo strong {
    font-weight: 800;
}
.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--grad-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    flex: 1;
}
.nav-links a {
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-muted);
}
.nav-cta {
    display: flex;
    gap: 10px;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--grad-soft);
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.22;
}
.shape-1 {
    width: 550px;
    height: 550px;
    background: var(--primary-light);
    top: -100px;
    left: -150px;
    animation: floatShape 8s ease-in-out infinite;
}
.shape-2 {
    width: 380px;
    height: 380px;
    background: var(--accent-2);
    top: 150px;
    right: -80px;
    animation: floatShape 10s ease-in-out infinite reverse;
}
.shape-3 {
    width: 280px;
    height: 280px;
    background: var(--accent);
    bottom: 0;
    left: 45%;
    animation: floatShape 7s ease-in-out infinite 2s;
}

@keyframes floatShape {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content {
    z-index: 1;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    border: 1px solid rgba(91, 80, 240, 0.2);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 20px 0 36px;
    max-width: 500px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}
.stat {
    text-align: center;
}
.stat strong {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat span {
    font-size: 0.78rem;
    color: var(--text-dim);
}
.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* --- Browser Mockup --- */
.hero-visual {
    position: relative;
    z-index: 1;
}
.browser-mockup {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(91, 80, 240, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
    animation: floatMockup 6s ease-in-out infinite;
}
@keyframes floatMockup {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}
.browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f9fafb;
    border-bottom: 1px solid var(--border);
}
.browser-dots {
    display: flex;
    gap: 6px;
}
.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.dot-red {
    background: #ff5f57;
}
.dot-yellow {
    background: #febc2e;
}
.dot-green {
    background: #28c840;
}
.browser-url {
    flex: 1;
    background: var(--bg-body);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.75rem;
    color: var(--text-dim);
    text-align: center;
    border: 1px solid var(--border);
}
.browser-content {
    padding: 0;
}

.mock-slider {
    height: 160px;
    background: linear-gradient(135deg, #ede9fe, #dbeafe);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 24px;
}
.mock-slide-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91, 80, 240, 0.15), rgba(168, 85, 247, 0.1));
}
.mock-slide-text {
    position: relative;
    z-index: 1;
}
.mock-slide-h1 {
    width: 200px;
    height: 18px;
    background: rgba(91, 80, 240, 0.5);
    border-radius: 4px;
    margin-bottom: 10px;
}
.mock-slide-p {
    width: 140px;
    height: 9px;
    background: rgba(91, 80, 240, 0.25);
    border-radius: 4px;
    margin-bottom: 14px;
}
.mock-slide-btn {
    width: 90px;
    height: 28px;
    background: var(--grad-primary);
    border-radius: 20px;
}

.mock-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}
.mock-module {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: var(--bg-white);
}
.mock-module-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #fff;
    flex-shrink: 0;
}
.mock-module-lines {
    flex: 1;
}
.mock-module-lines div {
    height: 7px;
    background: #e5e7eb;
    border-radius: 3px;
    margin-bottom: 5px;
}
.mock-module-lines div:last-child {
    width: 60%;
    margin-bottom: 0;
}

/* Floating badges */
.float-badge {
    position: absolute;
    background: var(--bg-white);
    border: 1px solid rgba(91, 80, 240, 0.2);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}
.float-badge i {
    color: var(--primary);
}
.float-badge-1 {
    top: -20px;
    right: -10px;
    animation: floatBadge1 4s ease-in-out infinite;
}
.float-badge-2 {
    bottom: 40px;
    left: -30px;
    animation: floatBadge2 5s ease-in-out infinite;
}
.float-badge-3 {
    bottom: -20px;
    right: 30px;
    animation: floatBadge1 6s ease-in-out infinite 1s;
}

@keyframes floatBadge1 {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(6px, -8px);
    }
}
@keyframes floatBadge2 {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-6px, 8px);
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
    animation: fadeInUp 1s 1.5s both;
    transition: opacity 0.3s;
}
.scroll-arrow {
    margin-top: 8px;
    animation: bounceDown 1.5s infinite;
    color: var(--primary);
}
@keyframes bounceDown {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

/* ---------- LOGOS STRIP ---------- */
.logos-strip {
    padding: 32px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.logos-label {
    text-align: center;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 20px;
}
.logos-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.logos-row span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    background: var(--bg-body);
    transition: var(--transition);
    cursor: default;
}
.logos-row span:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-muted);
}
.logos-row span i {
    color: var(--primary);
}

/* ---------- SECTION COMMON ---------- */
.section {
    padding: 100px 0;
}
.section-dark {
    background: var(--bg-soft);
}
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 64px;
}
.section-header h2 {
    margin-bottom: 16px;
}
.section-header p {
    font-size: 1.05rem;
}

.section-tag {
    display: inline-block;
    background: var(--primary-muted);
    border: 1px solid rgba(91, 80, 240, 0.18);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* ---------- FEATURES GRID ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transition: var(--transition);
}
.feature-card:hover {
    border-color: rgba(91, 80, 240, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.feat-icon-purple {
    background: rgba(91, 80, 240, 0.1);
    color: var(--primary);
}
.feat-icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}
.feat-icon-teal {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}
.feat-icon-orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}
.feat-icon-pink {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}
.feat-icon-green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}
.feature-card h3 {
    margin-bottom: 10px;
}

/* ---------- HOW IT WORKS ---------- */
.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}
.step {
    flex: 1;
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
    max-width: 300px;
    box-shadow: var(--shadow-card);
}
.step:hover {
    border-color: rgba(91, 80, 240, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-primary);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}
.step-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.step h3 {
    margin-bottom: 10px;
}
.steps-arrow {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-top: 80px;
    flex-shrink: 0;
}

/* ---------- MODULES GRID ---------- */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.module-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
    box-shadow: var(--shadow-card);
}
.module-card:hover {
    border-color: rgba(91, 80, 240, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.module-icon {
    display: block;
    font-size: 1.8rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}
.module-card h4 {
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.module-card p {
    font-size: 0.8rem;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}
.testimonial-card:hover {
    border-color: rgba(91, 80, 240, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 16px;
}
.testimonial-card > p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    color: var(--text-body);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.author-info span {
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* ---------- PRICING ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}
.pricing-card:hover {
    border-color: rgba(91, 80, 240, 0.2);
    box-shadow: var(--shadow-hover);
}
.pricing-featured {
    background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 100%);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad-primary);
    color: #fff;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}
.pricing-header {
    margin-bottom: 28px;
}
.pricing-header h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}
.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
}
.amount {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-dark);
}
.period {
    font-size: 0.9rem;
    color: var(--text-dim);
}
.pricing-header > p {
    font-size: 0.85rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--text-body);
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-features li i {
    font-size: 0.9rem;
}
.pricing-features li i.fa-check {
    color: #22c55e;
}
.pricing-features li i.fa-times {
    color: #d1d5db;
}
.pricing-features li.disabled {
    opacity: 0.45;
}

/* ---------- FAQ ---------- */
.faq-container {
    max-width: 760px;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}
.faq-question:hover {
    color: var(--primary);
}
.faq-icon {
    font-size: 0.9rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    display: none;
    padding: 0 0 20px;
}
.faq-answer.show {
    display: block;
    animation: fadeInUp 0.25s ease;
}
.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: var(--grad-primary);
}
.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.cta-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.2);
    top: -100px;
    left: -100px;
}
.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.3);
    bottom: -50px;
    right: -50px;
}
.cta-inner {
    position: relative;
    z-index: 1;
}
.cta-inner h2 {
    color: #fff;
    margin-bottom: 16px;
}
/* override gradient-text inside cta for white bg */
.cta-inner .gradient-text {
    background: none;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.85);
    color: rgba(255, 255, 255, 0.85);
}
.cta-inner p {
    font-size: 1.1rem;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.8);
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-actions .btn-hero-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}
.cta-actions .btn-hero-primary:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}
.cta-actions .btn-hero-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}
.cta-actions .btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ---------- CONTACT ---------- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info .section-tag {
    margin-bottom: 20px;
}
.contact-info h2 {
    margin-bottom: 20px;
}
.contact-info > p {
    margin-bottom: 32px;
    font-size: 1rem;
    line-height: 1.8;
}
.contact-chips {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
}
.chip:hover {
    border-color: rgba(91, 80, 240, 0.25);
    box-shadow: var(--shadow-md);
}
.chip i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-form {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-md);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--bg-body);
    border: 1.5px solid var(--border);
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    outline: none;
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91, 80, 240, 0.12);
    background: var(--bg-white);
}

.form-success {
    display: none;
    margin-top: 16px;
    padding: 14px 20px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-sm);
    color: #16a34a;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

/* ---------- FOOTER ---------- */
.footer {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 64px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer .logo {
    color: #f8fafc;
}
.footer-brand .logo {
    margin-bottom: 16px;
}
.footer-brand > p {
    font-size: 0.9rem;
    margin-bottom: 24px;
    color: #94a3b8;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}
.footer-social a:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    background: rgba(91, 80, 240, 0.15);
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: var(--transition);
}
.footer-col a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #64748b;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- ANIMATIONS ---------- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    .pricing-featured {
        transform: none;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual {
        display: none;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .steps-arrow {
        display: none;
    }
    .step {
        max-width: 100%;
        width: 100%;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        gap: 16px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn-hero-primary,
    .hero-actions .btn-hero-ghost {
        text-align: center;
        justify-content: center;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 480px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
    .logos-row span {
        padding: 6px 14px;
        font-size: 0.78rem;
    }
    .pricing-card {
        padding: 28px 20px;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.6rem;
    }
}

/* --- Mobile Nav --- */
.nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 999;
    gap: 4px;
}
.nav-links.open li a {
    display: block;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-dark);
}
.nav-links.open li a:hover {
    background: var(--primary-muted);
    color: var(--primary);
}

/* ---------- PAGE SPECIFIC STYLES (Legal, Docs, Support) ---------- */
.page-header {
    background: var(--grad-soft);
    padding: 100px 0px 30px 0;
    border-bottom: 1px solid var(--border);
}
.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}
.page-header p {
    font-size: 1rem;
    color: var(--text-muted);
}
.page-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-body);
    line-height: 1.8;
}
.page-content h2 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--text-dark);
}
.page-content p {
    margin-bottom: 15px;
}
.page-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
.page-content li {
    margin-bottom: 8px;
}
.last-updated {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 30px;
    display: block;
}
