/* style.css - Premium Light Theme Stylesheet for Read Up SaaS Landing Page */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #F8FAFC;
    /* Uçuk gri/mavi */
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --border-color: rgba(15, 23, 42, 0.06);
    --text-primary: #0F172A;
    /* Slate-900 */
    --text-secondary: #404854;
    /* Slate-500 (yumuşak gri) */
    --primary-blue: #4F46E5;
    /* Zengin Indigo */
    --primary-blue-hover: #4338ca;
    --btn-primary-bg: #4F46E5;
    --btn-primary-text: #ffffff;
    --btn-secondary-border: rgba(15, 23, 42, 0.1);
    --accent-cyan: #0284c7;
    /* Sky-600 */
    --accent-orange: #ea580c;
    /* Orange-600 */
    --font-family: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    line-height: 1.65;
}

/* Premium Noise/Grain Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.015;
    z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Minimalist Lucide Icons Styling */
.lucide {
    width: 20px;
    height: 20px;
    stroke-width: 1.5px;
    vertical-align: middle;
}

/* Heading Typography Override */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--text-primary);
}

h1,
h2 {
    letter-spacing: -0.03em;
    font-weight: 800;
}

p {
    line-height: 1.75;
    color: var(--text-secondary);
}

/* Header & Navbar */
.navbar-custom {
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
    border-bottom: 1px solid transparent;
}

.navbar-custom.scrolled {
    padding: 0.85rem 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.navbar-nav .nav-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary) !important;
    margin: 0 0.4rem;
    padding: 0.5rem 0.95rem !important;
    border-radius: 10px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
    background: rgba(79, 70, 229, 0.05);
}

/* Shopping Cart Button Styles */
.nav-cart-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.nav-cart-btn:hover {
    border-color: rgba(79, 70, 229, 0.15);
    color: var(--primary-blue);
    background: rgba(79, 70, 229, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -4px rgba(79, 70, 229, 0.12);
}

.nav-cart-btn .lucide {
    width: 20px;
    height: 20px;
    stroke-width: 1.75px;
    color: currentColor;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary-blue);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}

/* Custom Buttons */
.btn-premium {
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    text-decoration: none;
}

.btn-premium-primary {
    background: var(--primary-blue);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.btn-premium-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-blue-hover);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.btn-premium-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--btn-secondary-border);
}

.btn-premium-outline:hover {
    background: rgba(15, 23, 42, 0.02);
    border-color: var(--text-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-premium-demo {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn-premium-demo:hover {
    color: var(--text-primary);
    background: rgba(15, 23, 42, 0.05);
}

.text-primary-blue {
    color: var(--primary-blue);
}

.hero-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    border-radius: 12px;
}

.hero-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Floating Glassmorphism Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 1.15rem;
    background: rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 18px;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.card-top-left {
    top: 10%;
    left: -4%;
}

.card-bottom-right {
    bottom: 10%;
    right: -4%;
}

.float-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-card-icon .lucide {
    width: 19px;
    height: 19px;
    stroke-width: 2.5px;
}

.float-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.float-card-label {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 2px;
}

.float-card-value {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
}

/* Levitating Animations */
@keyframes float1 {
    0% {
        transform: translateY(0px);
    }

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

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

@keyframes float2 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(8px);
    }

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

.float-animation-1 {
    animation: float1 4s ease-in-out infinite;
}

.float-animation-2 {
    animation: float2 4s ease-in-out infinite;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #F8FAFC;
    overflow: hidden;
    /* Prevent blob overflow */
}

/* Soft Background Blobs in Hero Section */
.hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.06;
    /* ultra subtle background wash */
    z-index: 1;
    pointer-events: none;
}

.blob-blue {
    background: radial-gradient(circle, #3b82f6 0%, rgba(59, 130, 246, 0) 70%);
    top: -150px;
    left: -150px;
}

.blob-lavender {
    background: radial-gradient(circle, #c084fc 0%, rgba(192, 132, 252, 0) 70%);
    bottom: -150px;
    right: -150px;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.cta-button-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-button-wrapper:hover {
    transform: translateY(-3px);
}

.cta-micro-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.18rem 0.65rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
    border: 2px solid #ffffff;
    z-index: 5;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-button-wrapper:hover .cta-micro-badge {
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.45);
}

.btn-hero-primary {
    background-color: var(--primary-blue);
    color: #ffffff !important;
    border: none;
    border-radius: 50px !important;
    padding: 0.85rem 2.25rem !important;
    /* increased padding */
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08) !important;
    font-size: 1rem !important;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-primary:hover {
    background-color: var(--primary-blue-hover) !important;
    box-shadow: 0 15px 25px -3px rgba(15, 23, 42, 0.12) !important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(59, 130, 246, 0.08);
    color: #1e40af;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.hero-badge .lucide {
    color: #3b82f6;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title-sub {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: block;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.hero-title-main {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    display: block;
    letter-spacing: -0.035em;
}

.text-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.title-light {
    font-weight: 500 !important;
    color: var(--text-secondary);
    -webkit-text-fill-color: initial !important;
}

.hero-lead {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-item {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    margin-left: -8px;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
}

.avatar-item:first-child {
    margin-left: 0;
}

.avatar-item:hover {
    transform: translateY(-3px);
    z-index: 5;
}

.proof-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proof-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.proof-stars {
    display: flex;
    gap: 2px;
}

.proof-stars .lucide {
    width: 12px;
    height: 12px;
    fill: #f59e0b;
    color: #f59e0b;
    stroke-width: 1.5px;
}

/* Dashboard Mockup Card */
.dashboard-mockup-wrapper {
    position: relative;
    perspective: 1000px;
}

.dashboard-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
    padding: 1.5rem;
    transform: rotateY(-8deg) rotateX(4deg);
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

.dashboard-card:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-dot.red {
    background-color: #ef4444;
}

.dashboard-dot.yellow {
    background-color: #f59e0b;
}

.dashboard-dot.green {
    background-color: #10b981;
}

.dashboard-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item-box {
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 12px;
    padding: 0.85rem;
    text-align: center;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-value span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-blue);
}

/* Mini Reading Eye Tracker Mockup */
.eye-tracker-panel {
    background: rgba(15, 23, 42, 0.01);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
}

.tracker-text-row {
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    position: relative;
}

.tracker-highlight-word {
    background: rgba(37, 99, 235, 0.1);
    border-radius: 4px;
    color: var(--primary-blue);
    padding: 0.1rem 0.35rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.tracker-highlight-word::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-blue);
    border-radius: 50%;
}

.tracker-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 0.75rem;
}

.tracker-speed-badge {
    color: var(--primary-blue);
    font-weight: 600;
}

/* CSS Chart Mockup */
.chart-container {
    height: 100px;
    position: relative;
    margin-top: 1rem;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 0 5px;
}

.chart-bar {
    flex: 1;
    background: rgba(37, 99, 235, 0.1);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    position: relative;
    transition: height 1s ease-in-out;
}

.chart-bar:hover {
    background: var(--primary-blue);
}

.chart-bar::after {
    content: attr(data-value);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-blue);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.chart-bar:hover::after {
    opacity: 1;
}

/* Segmentation Section Styles */
.segmentation-section {
    background-color: #ffffff;
    padding: 120px 0;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid var(--border-color);
}

.segmentation-section .section-title {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 2.6rem;
    letter-spacing: -0.03em;
}

.segment-card {
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04);
}

.segment-card:hover {
    background-color: #ffffff;
    border-color: rgba(79, 70, 229, 0.25) !important;
    transform: translateY(-6px);
    box-shadow: 0 25px 40px -10px rgba(79, 70, 229, 0.12);
}

.segment-card-image {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    background-color: #f8fafc;
}

.segment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.segment-card:hover .segment-img {
    transform: scale(1.06);
}

.segment-card .card-icon-wrapper {
    position: absolute;
    bottom: -22px;
    left: 24px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
    z-index: 3;
    transition: all 0.3s ease;
}

.icon-svg {
    width: 24px;
    height: 24px;
    stroke-width: 2px;
}

.segment-card:hover .card-icon-wrapper {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.segment-card-body {
    padding: 2.25rem 2rem 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.segment-card .card-title {
    color: var(--text-primary);
    font-size: 1.35rem;
    font-weight: 800;
    margin-top: 0.35rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.segment-card .card-text {
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.segment-card .card-link {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.02rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.3s ease;
}

.segment-card .card-link .lucide {
    width: 18px;
    height: 18px;
    stroke-width: 2.5px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.segment-card:hover .card-link {
    color: var(--primary-blue-hover);
}

.segment-card:hover .card-link .lucide {
    transform: translateX(5px);
}

/* Why Read Up Section Styles */
.why-readup-section {
    background-color: #F8FAFC;
    padding: 120px 0;
    position: relative;
    z-index: 3;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.why-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

.why-text {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    text-align: justify;
}

.why-mini-badge {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.015);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-mini-badge:hover {
    border-color: rgba(79, 70, 229, 0.2);
    background: rgba(79, 70, 229, 0.01);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(79, 70, 229, 0.08);
}

/* Dashboard Window Mockup Wrapper */
.dashboard-window-frame {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
}

.dashboard-window-header {
    background: rgba(15, 23, 42, 0.01);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-window-header .dashboard-dots {
    display: flex;
    gap: 6px;
}

.dashboard-window-header .dashboard-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-window-header .dashboard-dot.red {
    background-color: #ef4444;
}

.dashboard-window-header .dashboard-dot.yellow {
    background-color: #f59e0b;
}

.dashboard-window-header .dashboard-dot.green {
    background-color: #10b981;
}

.dashboard-window-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.dashboard-window-content {
    background-color: #F8FAFC;
    padding: 1.5rem;
}

/* Dashboard-like Cards for Stats */
.stat-dash-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 1.5rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.02);
}

.stat-dash-card:hover {
    border-color: rgba(79, 70, 229, 0.15);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.stat-icon-wrapper {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(79, 70, 229, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.stat-icon-wrapper .lucide {
    width: 15px;
    height: 15px;
    stroke-width: 2px;
    color: var(--primary-blue);
}

.stat-icon-wrapper.highlight {
    background: rgba(16, 185, 129, 0.08);
}

.stat-icon-wrapper.highlight .lucide {
    color: #10b981;
}

.stat-card-label {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
}

.stat-percent-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.28rem 0.65rem;
    border-radius: 100px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 0.4rem;
}

/* Premium Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
}

.comparison-box {
    background: #F8FAFC;
    border: 1px solid rgba(15, 23, 42, 0.03);
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    display: flex;
    flex-direction: column;
}

.comparison-box.after {
    background: rgba(79, 70, 229, 0.02);
    border: 1px solid rgba(79, 70, 229, 0.08);
}

.comp-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
    margin-bottom: 0.2rem;
}

.comp-value {
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.comp-unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    color: var(--text-secondary);
}

.comparison-divider .lucide {
    width: 16px;
    height: 16px;
    stroke-width: 2.5px;
}

/* Optimization Bar styling */
.opt-bar-wrapper {
    padding-top: 0.5rem;
}

.opt-bar-text {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.opt-bar-percent {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Highlight Card Style */
.stat-dash-card.highlight-card {
    border: 1px solid rgba(16, 185, 129, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, rgba(16, 185, 129, 0.01) 100%);
}

.stat-dash-card.highlight-card:hover {
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 20px 40px -15px rgba(16, 185, 129, 0.08);
}

.stat-large-value {
    font-size: 3.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.text-gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-large-unit {
    font-size: 1.35rem;
    font-weight: 700;
}

.stat-large-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.border-left-divider {
    border-left: 1px solid rgba(15, 23, 42, 0.06);
}

@media (max-width: 767.98px) {
    .border-left-divider {
        border-left: none;
        border-top: 1px solid rgba(15, 23, 42, 0.06);
        padding-top: 1.25rem;
        margin-top: 1.25rem;
        padding-left: 0 !important;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .comparison-divider {
        transform: rotate(90deg);
        margin: 0.25rem auto;
    }
}

/* Custom Progress Bars */
.progress-bar-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.progress-custom {
    height: 10px !important;
    background-color: #E2E8F0 !important;
    border-radius: 50px !important;
    overflow: hidden;
}

.progress-custom .bg-secondary {
    background-color: #cbd5e1 !important;
}

.progress-custom .progress-bar {
    border-radius: 50px !important;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Colors and Fills for Bars */
.bg-info-gradient {
    background: linear-gradient(90deg, #818cf8 0%, #4f46e5 100%) !important;
    box-shadow: none !important;
}

.bg-warning-gradient {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%) !important;
    box-shadow: none !important;
}

.bg-success-gradient {
    background: linear-gradient(90deg, #34d399 0%, #10b981 100%) !important;
    box-shadow: none !important;
}

/* 3-Column Stats Redesign Additions */
.highlight-flex-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 60px);
    /* Adjust height to fill space and align elements */
}

.highlight-divider {
    height: 1px;
    background: rgba(15, 23, 42, 0.08);
    width: 100%;
}

.stat-dash-card.highlight-card .stat-feature-list {
    margin-top: auto;
}

/* Social Proof & Testimonials Section Styles */
.social-proof-section {
    background-color: #ffffff;
    padding: 0;
    position: relative;
    z-index: 4;
}

/* Trust Badge Band */
.trust-badge-band {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 3.5rem 0;
}

.trust-badge-item {
    padding: 0.5rem 1.5rem;
}

.check-icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}

.trust-number {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.trust-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Border on md/lg screens between trust columns */
@media (min-width: 768px) {
    .border-start-md {
        border-left: 1px solid rgba(15, 23, 42, 0.08);
    }
}

/* Testimonials Area */
.testimonials-area {
    padding: 120px 0;
    background-color: #ffffff;
}

.testimonials-title {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.testimonials-subtitle {
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    text-align: justify;
}

.testimonial-card {
    background-color: #F8FAFC;
    border-radius: 20px;
    padding: 2.25rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.04);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    display: flex;
    gap: 4px;
}

.testimonial-stars .lucide {
    fill: #f59e0b !important;
    stroke: #f59e0b !important;
    width: 18px;
    height: 18px;
}

.testimonial-quote {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-user {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    padding-top: 1.25rem;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.text-info-gradient-avatar {
    background: var(--primary-blue);
}

.text-warning-gradient-avatar {
    background: #ea580c;
}

.text-success-gradient-avatar {
    background: #10b981;
}

.user-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.user-role {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Footer Section Styles */
.footer-section {
    background-color: #F8FAFC;
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 5;
    color: var(--text-primary);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section .cta-button-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    margin-top: 12px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-section .cta-button-wrapper:hover {
    transform: translateY(-3px);
}

.footer-section .cta-button-wrapper .btn-hero-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.85rem 1.5rem !important;
    background-color: var(--primary-blue) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08) !important;
    border: none !important;
}

.footer-section .cta-button-wrapper .cta-micro-badge {
    position: absolute;
    top: -15px;
    left: 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em !important;
    padding: 0.18rem 0.65rem !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35) !important;
    border: 2px solid #ffffff !important;
    z-index: 10 !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    text-transform: uppercase !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.brand-connect-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.brand-connect-links a:hover {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
}

.brand-connect-links a svg,
.brand-connect-links a i {
    width: 18px !important;
    height: 18px !important;
    color: inherit !important;
    stroke: currentColor !important;
    display: inline-block !important;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 4px;
}

.footer-cta-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-email {
    font-size: 0.92rem;
    font-weight: 600;
    margin-top: 1rem;
}

.footer-email a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-email a:hover {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-blue);
}

@media (max-width: 991.98px) {
    .navbar-custom {
        background: rgba(255, 255, 255, 0.98);
        padding: 0.75rem 0;
    }

    .navbar-collapse {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }

    .hero-section {
        padding: 140px 0 60px 0;
        text-align: center;
    }

    .hero-title-main {
        font-size: 2.8rem;
    }

    .hero-title-sub {
        font-size: 1.25rem;
    }

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

    .hero-social-proof {
        justify-content: center;
    }

    .dashboard-mockup-wrapper {
        margin-top: 4rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .dashboard-card {
        transform: none !important;
    }

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

    .why-readup-section {
        padding: 50px 0;
    }

    .card-top-left {
        left: 5%;
        top: 5%;
    }

    .card-bottom-right {
        right: 5%;
        bottom: 5%;
    }
}

@media (max-width: 575.98px) {
    .hero-title-main {
        font-size: 2.25rem;
    }

    .hero-title-sub {
        font-size: 1.1rem;
    }

    .hero-lead {
        font-size: 1.05rem;
    }

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

    .hero-ctas .btn-premium {
        width: 100%;
        justify-content: center;
    }

    .dashboard-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Inner Pages Custom Styling (Hakkimizda, Iletisim, Egitimler, Sepet, Giris)
   ========================================================================== */

/* Inner Hero Layout */
.inner-hero-section {
    position: relative;
    padding: 160px 0 80px 0;
    background-color: #F8FAFC;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.inner-hero-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

/* About Bento section */
.about-bento-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-feature-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.015);
}

.about-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 70, 229, 0.18);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.06);
}

.about-feature-card .feat-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.about-feature-card .feat-icon-box .lucide {
    width: 22px;
    height: 22px;
    stroke-width: 2px;
}

.about-feature-card .card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.about-feature-card .card-text {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 0;
}

/* Timeline Layout */
.timeline-section {
    padding: 100px 0;
    background-color: #F8FAFC;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.timeline-container {
    position: relative;
    padding-left: 2.5rem;
    border-left: 2px solid rgba(15, 23, 42, 0.06);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -3.55rem;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.1);
}

.timeline-badge .lucide {
    width: 14px;
    height: 14px;
    stroke-width: 2.5px;
}

.timeline-content {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 4px 15px -2px rgba(15, 23, 42, 0.01);
}

.timeline-date {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    background: rgba(79, 70, 229, 0.06);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Team Grid & Slider Layout */
.team-section {
    padding: 100px 0 120px 0;
    background-color: #F8FAFC;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.team-card-premium {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
    height: 100%;
}

.team-card-premium:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.12);
}

.team-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card-premium:hover .team-img-wrapper img {
    transform: scale(1.06);
}

.team-card-body {
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.team-card-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.team-card-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: rgba(79, 70, 229, 0.07);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    display: inline-block;
}

/* Slider Controls */
.team-slider-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.team-slider-nav-btn:hover {
    background: var(--primary-blue);
    color: #ffffff;
    border-color: var(--primary-blue);
    transform: scale(1.08);
}

/* Contact Page Layout & Form Styles */
.contact-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #F8FAFC;
    border: 1px solid rgba(15, 23, 42, 0.03);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    border-color: rgba(79, 70, 229, 0.15);
    box-shadow: 0 10px 20px -10px rgba(79, 70, 229, 0.05);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon .lucide {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
}

.contact-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-card-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-card-link:hover {
    color: var(--primary-blue-hover);
}

.contact-card-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
}

.form-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

.form-label-custom {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.form-input-custom, .form-select-custom {
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
    border-radius: 12px !important;
    padding: 0.85rem 1rem !important;
    font-size: 1.0rem !important;
    color: var(--text-primary) !important;
    background-color: #ffffff !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.form-input-custom::placeholder {
    color: #cbd5e1 !important;
}

.form-input-custom:focus {
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.08) !important;
    background-color: #ffffff !important;
}

/* Pricing Section & Card Styles */
.pricing-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 3rem 2.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.01);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 70, 229, 0.15);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.06);
}

.pricing-card.popular {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.15);
}

.pricing-card.popular:hover {
    box-shadow: 0 20px 45px -10px rgba(79, 70, 229, 0.25);
}

.popular-ribbon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--primary-blue);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

.pricing-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pricing-icon-wrapper .lucide {
    width: 22px;
    height: 22px;
    stroke-width: 1.75px;
    color: var(--primary-blue);
}

.pricing-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.pricing-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-price-box {
    margin: 1.75rem 0 1rem 0;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-left: 2px;
}

.price-text {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.pricing-divider {
    height: 1px;
    background: rgba(15, 23, 42, 0.06);
    margin: 1.5rem 0;
    width: 100%;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.pricing-features li {
    font-size: 0.98rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 500;
}

.pricing-features li .lucide {
    width: 16px;
    height: 16px;
    stroke-width: 2.5px;
}

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

.btn-pricing-primary:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.3);
}

.btn-pricing-popular {
    background: var(--primary-blue);
    color: #ffffff !important;
    border: none;
}

.btn-pricing-popular:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.35);
}

.btn-pricing-outline {
    background: transparent;
    border: 1px solid var(--btn-secondary-border);
    color: var(--text-primary);
}

.btn-pricing-outline:hover {
    background: rgba(15, 23, 42, 0.02);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

/* Cart & Checkout Page Custom Styles */
.cart-section {
    padding: 100px 0;
    background-color: #F8FAFC;
    border-bottom: 1px solid var(--border-color);
}

.cart-items-wrapper {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 2.25rem 2rem;
    box-shadow: 0 4px 15px -2px rgba(15, 23, 42, 0.01);
}

.cart-item-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-item-card:hover {
    border-color: rgba(79, 70, 229, 0.15);
    box-shadow: 0 10px 20px -10px rgba(79, 70, 229, 0.05);
}

.cart-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-icon .lucide {
    width: 18px;
    height: 18px;
    stroke-width: 2px;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.btn-remove-item {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.btn-remove-item:hover {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
}

.btn-remove-item .lucide {
    width: 18px;
    height: 18px;
    stroke-width: 2px;
}

/* Summary Card Layout */
.cart-summary-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 2.25rem 2rem;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
}

.summary-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.summary-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.summary-divider {
    height: 1px;
    background: rgba(15, 23, 42, 0.06);
    width: 100%;
}

.summary-row.total .summary-label {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 800;
}

.summary-row.total .summary-value {
    font-size: 1.4rem;
    font-weight: 800;
}

/* Empty Cart Layout */
.empty-cart-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--text-secondary);
}

.empty-cart-icon .lucide {
    width: 32px;
    height: 32px;
    stroke-width: 1.5px;
}

.empty-cart-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

/* Active Cart indicator styling */
.nav-cart-btn.active {
    border-color: var(--primary-blue);
    background: rgba(79, 70, 229, 0.05);
    color: var(--primary-blue);
}

/* Login Page Custom Styles */
.login-section {
    padding: 80px 0 120px 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.login-promo-card {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(79, 70, 229, 0.3);
}

.login-promo-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.login-promo-card .promo-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.login-promo-card .promo-badge .lucide {
    color: #ffffff !important;
}

.login-promo-card .promo-title {
    color: #ffffff !important;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.25;
}

.login-promo-card .promo-text {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1rem;
    line-height: 1.75;
}

.login-promo-card .promo-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.login-promo-card .promo-feat-item {
    display: flex;
    align-items: center;
}

.login-promo-card .promo-feat-item span {
    color: #ffffff !important;
    font-size: 0.95rem;
}

.login-promo-card .promo-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.login-promo-card:hover .promo-icon-circle {
    background: #ffffff;
    color: var(--primary-blue);
    transform: scale(1.05);
}

.login-promo-card .promo-icon-circle .lucide {
    width: 16px;
    height: 16px;
    stroke-width: 3px;
}

.login-form-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
    height: 100%;
}

.form-card-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

.forgot-pass-link {
    transition: color 0.2s ease;
}

.forgot-pass-link:hover {
    color: var(--primary-blue-hover) !important;
}

.text-indigo {
    color: var(--primary-blue) !important;
    transition: color 0.25s ease;
}

.text-indigo:hover {
    color: var(--primary-blue-hover) !important;
}

.login-form-card .form-check-input {
    border-color: rgba(15, 23, 42, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-form-card .form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.login-form-card .form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    border-color: var(--primary-blue);
}

/* Eye Tracking Check-Up Section Custom Styles */
.checkup-section {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 3;
    border-bottom: 1px solid var(--border-color);
}

.checkup-title {
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.checkup-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.65;
    border-left: 4px solid var(--primary-blue);
    padding-left: 1.25rem;
}

.checkup-desc {
    font-size: 1.025rem;
    line-height: 1.75;
}

.checkup-feat-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.01);
}

.checkup-feat-card:hover {
    border-color: rgba(79, 70, 229, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(79, 70, 229, 0.05);
}

.checkup-feat-card .feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checkup-feat-card .feat-icon .lucide {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
}

.checkup-feat-card .feat-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.checkup-feat-card .feat-text {
    font-size: 0.88rem;
    line-height: 1.55;
}

/* Eye Tracking Heatmap Mockup Card Styles */
.heatmap-card-frame {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.07);
    text-align: left;
}

.heatmap-header-icon {
    width: 28px;
    height: 28px;
    background: rgba(79, 70, 229, 0.08);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.heatmap-header-title {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}

.heatmap-live-badge {
    font-size: 0.74rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.pulse-dot-green {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.heatmap-passage-box {
    background: #F8FAFC;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    font-size: 0.88rem;
    line-height: 2.1;
    color: #334155;
    position: relative;
    overflow: hidden;
}

.heatmap-line {
    position: relative;
    z-index: 2;
}

.line-num {
    display: inline-block;
    width: 18px;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 600;
}

.heatmap-svg-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hm-spot {
    padding: 0.15rem 0.45rem;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.hm-spot.hm-red {
    background: rgba(239, 68, 68, 0.22);
    color: #991b1b;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.35);
}

.hm-spot.hm-yellow {
    background: rgba(245, 158, 11, 0.25);
    color: #92400e;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.hm-spot.hm-green {
    background: rgba(34, 197, 94, 0.25);
    color: #14532d;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.heatmap-question-box {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    padding: 0.9rem 1.1rem;
}

.hm-q-title {
    font-size: 0.85rem;
    color: var(--text-primary);
}

.hm-opt-item {
    background: #F8FAFC;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 10px;
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #475569;
}

.hm-opt-item.active-target {
    background: rgba(79, 70, 229, 0.03);
    border-color: rgba(79, 70, 229, 0.15);
    font-weight: 600;
}

.hm-opt-badge {
    width: 22px;
    height: 22px;
    background: var(--primary-blue);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.leg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.leg-dot.red { background: #ef4444; }
.leg-dot.yellow { background: #f59e0b; }
.leg-dot.green { background: #22c55e; }
.leg-line {
    width: 14px;
    height: 2px;
    background: #4f46e5;
    border-radius: 2px;
    display: inline-block;
}

/* Eye Tracking Visual Mockup */
.eyetracking-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.eyetracking-mockup {
    width: 100%;
    max-width: 480px;
    height: 350px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.mockup-screen {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    position: relative;
    flex-grow: 1;
}

.mockup-screen .mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding-bottom: 0.85rem;
    margin-bottom: 1rem;
}

.mockup-screen .mockup-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup-screen .mockup-header .dot.red {
    background: #ef4444;
}

.mockup-screen .mockup-header .dot.yellow {
    background: #f59e0b;
}

.mockup-screen .mockup-header .dot.green {
    background: #10b981;
}

.mockup-screen .mockup-header .mockup-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: auto;
}

.mockup-screen .mockup-body {
    position: relative;
    height: 180px;
    user-select: none;
}

.gaze-word {
    font-size: 0.9rem;
    font-weight: 500;
    color: #cbd5e1;
    /* Faded words by default */
    padding: 0.15rem 0.35rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    z-index: 5;
}

.gaze-word.active {
    color: var(--text-primary);
    font-weight: 700;
}

/* Redundant reading / backtracking styling */
.gaze-word.regression-word {
    color: #ef4444 !important;
    font-weight: 700;
    background: rgba(239, 68, 68, 0.05);
    border: 1px dashed rgba(239, 68, 68, 0.25);
    z-index: 6;
}

/* SVG gaze path overlay */
.gaze-svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Gaze path lines animation */
.gaze-path-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 8s linear infinite;
}

.gaze-regression-line {
    stroke-dasharray: 8;
    animation: dash 1s linear infinite;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: -16;
    }
}

/* Heatmap Gaze Blobs */
.gaze-point {
    position: absolute;
    width: var(--gaze-size);
    height: var(--gaze-size);
    border-radius: 50%;
    background: var(--gaze-color);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: multiply;
    animation: gazePulse 2s ease-in-out infinite alternate;
}

@keyframes gazePulse {
    0% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.9;
    }
}

/* Tobii Bar Simulator */
.tobii-tracker-bar {
    background: #0f172a;
    border-radius: 10px;
    padding: 0.65rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 5;
}

.tobii-logo-text {
    font-size: 0.65rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 2px;
}

.tracker-lights {
    display: flex;
    gap: 1.5rem;
}

.ir-light {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ef4444;
    box-shadow: 0 0 8px 2px #ef4444;
}

.ir-light.pulse-fast {
    animation: irPulse 0.4s ease-in-out infinite alternate;
}

.ir-light.pulse-slow {
    animation: irPulse 0.8s ease-in-out infinite alternate;
}

@keyframes irPulse {
    0% {
        opacity: 0.4;
        box-shadow: 0 0 4px 1px #ef4444;
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 10px 3px #ef4444;
    }
}

/* Responsive scale for Eye Tracking Mockup */
@media (max-width: 576px) {
    .eyetracking-mockup-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        height: 300px;
    }

    .eyetracking-mockup {
        transform: scale(0.82);
        transform-origin: center center;
        flex-shrink: 0;
    }
}

@media (max-width: 400px) {
    .eyetracking-mockup-wrapper {
        height: 260px;
    }

    .eyetracking-mockup {
        transform: scale(0.7);
    }
}

/* FAQ (S.S.S) Page Styles */
.faq-section {
    padding: 80px 0;
    background: #fbfbfe;
    position: relative;
    overflow: hidden;
}

.faq-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 4rem auto;
    z-index: 5;
}

.faq-search-wrapper .form-input-custom {
    padding-left: 3.25rem !important;
}

.faq-search-wrapper .search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    width: 20px;
    height: 20px;
    transition: color 0.3s ease;
}

.faq-search-wrapper .form-input-custom:focus+.search-icon {
    color: var(--primary-blue);
}

.faq-category-list {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
    position: sticky;
    top: 100px;
    z-index: 5;
}

.faq-category-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.5rem;
}

.faq-category-btn:last-child {
    margin-bottom: 0;
}

.faq-category-btn .lucide {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-category-btn:hover {
    background: rgba(79, 70, 229, 0.04);
    color: var(--primary-blue);
}

.faq-category-btn:hover .lucide {
    opacity: 1;
    transform: translateX(3px);
}

.faq-category-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), #6366f1);
    color: #ffffff;
    box-shadow: 0 8px 20px -6px rgba(79, 70, 229, 0.3);
}

.faq-category-btn.active .lucide {
    opacity: 1;
    color: #ffffff;
    transform: translateX(3px);
}

.faq-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px -5px rgba(15, 23, 42, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-card:hover {
    border-color: rgba(79, 70, 229, 0.15);
    box-shadow: 0 10px 30px -8px rgba(79, 70, 229, 0.05);
}

.faq-card.open {
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: 0 12px 35px -8px rgba(79, 70, 229, 0.08);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.05rem;
    cursor: pointer;
    transition: color 0.3s ease;
    outline: none;
}

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

.faq-question .chevron-icon {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-card.open .faq-question .chevron-icon {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.faq-card.open .faq-answer {
    opacity: 1;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(15, 23, 42, 0.03);
    padding-top: 1.25rem;
}

.faq-no-results {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 3rem 1.5rem;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
}

/* Platformu Dene Page Styles */
.dene-section {
    padding: 80px 0;
    background: #fbfbfe;
    position: relative;
    overflow: hidden;
}

.setup-card,
.reading-card,
.quiz-card,
.result-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px -15px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.form-select-custom {
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
    border-radius: 12px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
    color: var(--text-primary) !important;
    background-color: #ffffff !important;
    outline: none;
    transition: all 0.2s ease !important;
}

.form-select-custom:focus {
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.08) !important;
}

.reading-box {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 2.5rem;
    min-height: 250px;
    font-size: 1.25rem;
    line-height: 2;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    text-align: justify;
    user-select: none;
    position: relative;
    max-height: 500px;
    overflow-y: auto;
}

.word-span {
    padding: 2px 4px;
    border-radius: 4px;
    transition: background-color 0.1s ease, color 0.1s ease;
}

.word-span.highlighted {
    background: linear-gradient(135deg, var(--primary-blue), #6366f1);
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.result-gauge-wrapper {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.result-gauge-card {
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    width: 200px;
    transition: transform 0.3s ease;
}

.result-gauge-card:hover {
    transform: translateY(-5px);
}

.gauge-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem auto;
    position: relative;
}

.gauge-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.gauge-circle .bg-circle {
    fill: none;
    stroke: rgba(15, 23, 42, 0.06);
    stroke-width: 8;
}

.gauge-circle .progress-circle {
    fill: none;
    stroke: url(#gauge-gradient);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease-in-out;
}

.gauge-circle .progress-circle-green {
    fill: none;
    stroke: #10b981;
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease-in-out;
}

.gauge-value-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.quiz-option-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.quiz-option-card:hover {
    border-color: var(--primary-blue);
    background: rgba(79, 70, 229, 0.02);
}

.quiz-option-card.selected {
    border-color: var(--primary-blue);
    background: rgba(79, 70, 229, 0.05);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.option-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 1rem;
    transition: all 0.2s ease;
}

.quiz-option-card.selected .option-badge {
    background: var(--primary-blue);
    color: #ffffff;
}

.test-progress-bar {
    height: 6px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.test-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), #6366f1);
    width: 0%;
    transition: width 0.3s ease;
}

/* Premium Cart Enhanced Styles */
.cart-stepper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.stepper-line {
    position: absolute;
    top: 21px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(15, 23, 42, 0.05);
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(15, 23, 42, 0.08);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02);
}

.step-item.active .step-circle {
    background: linear-gradient(135deg, var(--primary-blue), #6366f1);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.step-item.active .step-label {
    color: var(--primary-blue);
}

.cart-promo-box,
.cart-trust-box {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 20px !important;
    transition: all 0.3s ease;
}

.cart-promo-box:hover,
.cart-trust-box:hover {
    box-shadow: 0 10px 25px -10px rgba(15, 23, 42, 0.04) !important;
}

.promo-box-title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.guarantee-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 18px;
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    border-color: rgba(79, 70, 229, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(15, 23, 42, 0.04);
}

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

.guarantee-icon .lucide {
    width: 24px;
    height: 24px;
    stroke-width: 2px;
}

.guarantee-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
}

.guarantee-text {
    font-size: 0.78rem;
    line-height: 1.4;
}