
:root {
    /* Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f0f1f3;
    
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --text-tertiary: #888888;
    
    --accent-primary: #405189;
    --accent-secondary: #06b6d4;
    --accent-tertiary: #6366f1;
    
    --neon-orange: #405189;
    --neon-cyan: #06b6d4;
    --neon-purple: #6366f1;
    
    --border-color: rgba(0, 0, 0, 0.1);
    --border-hover: rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-display: 'Manrope', sans-serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Spacing */
    --container-width: 1280px;
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 0 20px rgba(64, 81, 137, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.status-alert {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    position: relative;
    animation: slideDown 0.4s ease-out;
    border: 1px solid transparent;
}
.status-alert.success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}
.status-alert.error {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}
.alert-icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
}
.alert-content h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
}

.alert-content p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}
.alert-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: currentColor;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.alert-close:hover {
    opacity: 1;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

.auth-branding .gradient-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-img {
    height: 25px;
    width: auto;
    object-fit: contain;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.logo a:hover {
    color: var(--neon-orange);
}

.logo-icon {
    font-size: 24px;
    color: var(--neon-orange);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left:130px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-base);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-orange);
    transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    color: var(--text-primary);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: var(--transition-base);
    font-size: 14px;
}

.btn-login:hover {
    background: rgba(0, 0, 0, 0.04);
}

.btn-primary {
    background: var(--neon-orange);
    color: white;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: var(--transition-base);
    font-size: 14px;
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--neon-orange) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    opacity: 0.5;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    bottom: -250px;
    right: -250px;
    animation-delay: 2s;
    opacity: 0.5;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
    text-align: center;
    max-width: 700px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #405189;
    border-radius: 50px;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
}

.badge-icon {
    font-size: 18px;
}

.hero-title {
    font-size: clamp(42px, 5vw, 64px);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--neon-orange);
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(64, 81, 137, 0.4);
    transition: var(--transition-base);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(64, 81, 137, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: rgba(0, 0, 0, 0.02);
    transition: var(--transition-base);
}

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

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    justify-content: center;
    width: 100%;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-tertiary);
}

.stat-divider {
    width: 1px;
    background: var(--border-color);
}

.hero-visual {
    display: none;
    position: relative;
    height: 600px;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 6s ease-in-out infinite;
    border-top: 3px solid var(--accent-primary);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-1 {
    top: 50px;
    left: 0;
    width: 220px;
    animation-delay: 0s;
}

.card-2 {
    top: 180px;
    right: 20px;
    width: 200px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 100px;
    left: 40px;
    width: 240px;
    animation-delay: 2s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-icon {
    font-size: 24px;
}

.card-title {
    font-weight: 600;
    font-size: 14px;
}

.card-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--neon-orange) 0%, var(--neon-cyan) 100%);
    border-radius: 4px;
    transition: var(--transition-base);
}

.qr-code {
    background: white;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}

.qr-grid div {
    aspect-ratio: 1;
    background: #f0f0f0;
    border-radius: 2px;
}

.qr-grid div.active {
    background: #000;
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 14px;
    color: var(--text-tertiary);
}

.language-flags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.flag {
    font-size: 24px;
}

.card-text {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* ===================================
   VALUE PROPOSITION
   =================================== */
.value-prop {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-orange);
    box-shadow: 0 0 30px rgba(64, 81, 137, 0.2);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(64, 81, 137, 0.15);
    border-radius: 12px;
    color: var(--neon-orange);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-orange);
    font-weight: 500;
    font-size: 14px;
}

.feature-link:hover {
    gap: 12px;
}

/* ===================================
   HOW IT WORKS
   =================================== */
.how-it-works {
    padding: var(--section-padding) 0;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin-top: 64px;
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr 200px;
    gap: 48px;
    align-items: center;
}

.step-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-primary);
    opacity: 0.5;
}

.step-title {
    font-size: 28px;
    margin-bottom: 12px;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    background: rgba(64, 81, 137, 0.08);
    border: 1px solid rgba(64, 81, 137, 0.2);
    border-radius: 16px;
}

.qr-preview {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 12px;
    padding: 12px;
}

.qr-dots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    height: 100%;
}

.qr-dots span {
    background: #e0e0e0;
    border-radius: 4px;
}

.qr-dots span.active {
    background: #000;
}

.content-types {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.type-badge {
    padding: 12px 20px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 8px;
    color: var(--neon-cyan);
    font-size: 14px;
    font-weight: 500;
}

.report-preview {
    width: 100%;
}

.report-line {
    height: 12px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, transparent 100%);
    border-radius: 6px;
    margin-bottom: 12px;
}

/* ===================================
   REFERENCES SECTION
   =================================== */
.references-section {
    padding: 60px 0 var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.references-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.references-title {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.references-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.reference-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-base);
}

.reference-logo:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 8px 24px rgba(64, 81, 137, 0.15);
    background: rgba(255, 255, 255, 1);
}

.reference-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: var(--transition-base);
}

.reference-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(64, 81, 137, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(30deg, transparent 40%, rgba(64, 81, 137, 0.05) 40%, rgba(64, 81, 137, 0.05) 60%, transparent 60%);
    background-size: 100px 100px;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--neon-orange) 0%, var(--neon-cyan) 100%);
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 34px;
    font-weight:600;
    font-size:14.2px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(255, 127, 39, 0.4);
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 127, 39, 0.6);
}

.btn-cta-primary svg {
    transition: var(--transition-base);
}

.btn-cta-primary:hover svg {
    transform: translateX(4px);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: rgba(0, 0, 0, 0.02);
    transition: var(--transition-base);
}

.btn-cta-secondary:hover {
    border-color: var(--border-hover);
    background: rgba(0, 0, 0, 0.05);
}

.cta-support-text {
    font-size: 14px;
    color: var(--text-tertiary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 48px 0 28px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 460px;
}

.footer-tagline {
    color: var(--text-tertiary);
    margin-top: 16px;
    line-height: 1.6;
    font-size:14.2px;
    color:#1a1a1a;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    color: var(--text-tertiary);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

/* SaaS-friendly footer enhancements */
.footer-social a:hover {
    background: var(--accent-primary);
}
.footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color:#0052CC;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #1a1a1a;
    font-size: 14px;
    font-weight:500;
    transition: var(--transition-base);
}

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

.copyright {
    color: #0052CC;
    font-size: 14px;
    font-weight:600;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-tertiary);
    font-size: 14px;
    transition: var(--transition-base);
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* ===================================
   PAGE HEADER (Features, Solutions, etc.)
   =================================== */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    color: var(--text-tertiary);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.page-title {
    font-size: clamp(42px, 6vw, 72px);
    margin-bottom: 24px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.page-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ===================================
   FEATURES DETAIL PAGE
   =================================== */
.features-detail {
    padding: var(--section-padding) 0;
}

.feature-detail-block {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-detail-block.chart-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: flex-start;
}

.feature-detail-block.reverse {
    direction: rtl;
}

.feature-detail-block.reverse > * {
    direction: ltr;
}

.feature-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #405189;
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-detail-title {
    font-size: 25px;
    font-weight:700;
    margin-bottom: 20px;
}

.feature-detail-description {
    color: #000;
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
}

.feature-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--neon-cyan);
}

.feature-detail-visual {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 100%;
}

.visual-card:not(.chart-demo) {
    max-width: 450px;
}

.chart-filter {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-input {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    color: var(--text-primary);
    background: white;
    cursor: pointer;
}

.filter-input:hover {
    border-color: var(--accent-primary);
}

.chart-visual {
    margin: 24px 0;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line-chart {
    width: 100%;
    height: 200px;
}

.chart-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.category-breakdown {
    margin-top: 24px;
}

.category-breakdown h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.breakdown-item {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.breakdown-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.breakdown-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 0;
    text-align: left;
}

.breakdown-row span {
    font-weight: 600;
    color: var(--accent-primary);
    background: rgba(64, 81, 137, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.visual-icon {
    font-size: 24px;
}

.language-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.lang-btn {
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-base);
}

.lang-btn.active {
    background: rgba(64, 81, 137, 0.1);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.form-preview {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.input-mock,
.option-mock {
    height: 40px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.option-mock {
    height: 32px;
    margin-bottom: 8px;
}

.qr-locations {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.mini-qr {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 8px;
}

.location-info {
    flex: 1;
}

.location-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.location-count {
    display: block;
    font-size: 12px;
    color: var(--text-tertiary);
}

.color-themes {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.theme-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition-base);
}

.theme-dot:hover {
    transform: scale(1.2);
    border-color: #000;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.ai-badge {
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.chart-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-label {
    width: 100px;
    font-size: 14px;
    color: var(--text-secondary);
}

.bar-fill {
    height: 24px;
    background: linear-gradient(90deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 12px;
    transition: width var(--transition-base);
}

.bar-value {
    font-size: 14px;
    font-weight: 600;
    min-width: 50px;
    text-align: right;
}

.ai-insight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(64, 81, 137, 0.08);
    border: 1px solid rgba(64, 81, 137, 0.2);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.ai-insight svg {
    color: var(--accent-primary);
}

.announcement-preview {
    padding: 24px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.announcement-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(64, 81, 137, 0.1);
    border: 1px solid rgba(64, 81, 137, 0.3);
    border-radius: 6px;
    font-size: 12px;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.announcement-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.announcement-lang {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.lang-tag {
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-tertiary);
}

.lang-tag.active {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
}

.announcement-stats {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.button-showcase {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-button-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: rgba(64, 81, 137, 0.15);
    border: 2px solid var(--accent-primary);
    border-radius: 12px;
    color: var(--accent-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.action-button-demo.full {
    width: 100%;
}

.action-button-demo.half {
    flex: 1;
}

.action-button-demo.alert {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff4444;
    color: #ff4444;
}

.action-button-demo:hover {
    transform: scale(1.05);
}

.button-row {
    display: flex;
    gap: 12px;
}

.notification-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

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

.flow-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.02);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    font-size: 24px;
    margin: 0 auto 8px;
}

.flow-icon.active {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--accent-secondary);
}

.flow-label {
    font-size: 12px;
    color: var(--text-tertiary);
}

.flow-arrow {
    color: var(--text-tertiary);
    font-size: 20px;
}

.user-status {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
}

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

.status-item.online .status-dot {
    background: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.status-item.offline .status-dot {
    background: var(--text-tertiary);
}

/* ===================================
   SOLUTIONS PAGE
   =================================== */
.solutions-section {
    padding: var(--section-padding) 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-base);
}

.solution-card:hover {
    transform: translateY(-4px);
    border-color: #405189;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
}

.solution-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.solution-title {
    font-size: 19px;
    margin-bottom: 16px;
}

.solution-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size:14.2px;
    margin-bottom: 24px;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.solution-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight:500;
    color: #1e293b;
}
.solution-feature-item svg {
    flex-shrink: 0;
    color:#1E8BB5 !important;
    margin-top: 2px;
}

.solution-stats {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.stat-pill {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 50px;
    color: var(--accent-secondary);
    font-size: 14px;
    font-weight: 600;
}

.use-case-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.use-case-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 250, 251, 0.5) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.use-case-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
    box-shadow: 0 12px 32px rgba(64, 81, 137, 0.12);
}

.use-case-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.use-case-number {
    display:none !important;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-primary);
    min-width: 40px;
    flex-shrink: 0;
}

.use-case-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.use-case-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
    flex-grow: 1;
}

.use-case-result {
    padding: 16px;
    background: #405189;
    border-left: 3px solid var(--accent-secondary);
    border-radius: 8px;
    font-size: 13px;
}

.result-label {
    font-weight: 700;
    color: #FFF;
    margin-right: 6px;
}

.result-value {
    color: #FFF;
    font-weight: 500;
}

.industry-stats {
    padding: var(--section-padding) 0;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.stat-card {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-primary);
}

.stat-card .stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.stat-card .stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    color: var(--accent-primary);
    margin-bottom: 12px;
}

.stat-card .stat-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-card .stat-detail {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* ===================================
   QR ANALYTICS DEMO
   =================================== */
.qr-analytics-section {
    padding: var(--section-padding) 0;
    background: #FFF;
}

.analytics-demo {
    margin-top: 64px;
}

.demo-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.demo-stat-card {
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.demo-stat-card.blue {
    background: linear-gradient(135deg, #405189 0%, #0052CC 100%);
}

.demo-stat-card.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.demo-stat-card.purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.demo-stat-card.orange {
    background: linear-gradient(135deg, #405189 0%, #2f3a5b 100%);
}

.demo-stat-card.red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.demo-stat-label {
    font-size: 13px;
    opacity: 0.9;
}

.demo-stat-value {
    font-size: 32px;
    font-weight: 900;
}

.demo-section {
    margin-bottom: 40px;
}

.demo-section-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #405189;
}

.demo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.demo-tag {
    display: inline-block;
    padding: 10px 16px;
    background: #FAFAFA;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight:600;
    color: #000;
    transition: var(--transition-base);
}

.demo-tag:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--accent-primary);
}

.demo-footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.btn-demo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #405189 0%, #0052CC 100%);
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
    transition: var(--transition-base);
}

.btn-demo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.4);
}

/* ===================================
   PRICING PAGE
   =================================== */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.toggle-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: var(--transition-base);
}

.toggle-slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: var(--transition-base);
}

input:checked + .toggle-slider {
    background: var(--accent-primary);
}

input:checked + .toggle-slider:before {
    transform: translateX(28px);
}

.save-badge {
    padding: 4px 12px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    font-size: 12px;
    color: var(--accent-secondary);
    margin-left: 8px;
}

.pricing-section {
    padding: var(--section-padding) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: var(--transition-base);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 40px rgba(64, 81, 137, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--accent-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(64, 81, 137, 0.4);
}

.pricing-header {
    margin-bottom: 32px;
}

.plan-name {
    font-size: 24px;
    margin-bottom: 12px;
}

.plan-description {
    color: var(--text-tertiary);
    font-size: 14px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 32px;
}

.price-currency {
    font-size: 24px;
    color: var(--text-secondary);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    color: var(--text-primary);
}

.price-period {
    font-size: 18px;
    color: var(--text-tertiary);
}

.price-custom {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-primary);
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: rgba(0, 0, 0, 0.02);
    color: var(--text-primary);
    margin-bottom: 32px;
    transition: var(--transition-base);
}

.pricing-button.primary {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    box-shadow: 0 0 20px rgba(64, 81, 137, 0.3);
}

.pricing-button:hover {
    transform: translateY(-2px);
    border-color: var(--accent-primary);
}

.pricing-button.primary:hover {
    box-shadow: 0 4px 30px rgba(64, 81, 137, 0.4);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features .feature-item svg {
    flex-shrink: 0;
    color: var(--accent-secondary);
    margin-top: 2px;
}

.pricing-features .feature-item.disabled {
    opacity: 0.4;
}

.comparison-section {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 64px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table thead {
    background: rgba(64, 81, 137, 0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
}

.comparison-table th {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
}

.comparison-table td {
    font-size: 14px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

.comparison-table .feature-name {
    font-weight: 600;
    color: var(--text-primary);
}

.faq-section {
    padding: var(--section-padding) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 24px;
    margin-top: 64px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent-primary);
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 48px;
}

.form-title {
    text-align:center;
    font-size: 24px;
    color:#405189 !important;
    margin-bottom: 12px;
}

.form-description {
    text-align:center !important;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size:14px !important;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: #000;
    font-weight:600 !important;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(64, 81, 137, 0.05);
}
.auth-form-container input{
    text-align:center !important;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: var(--accent-primary);
    color: white;
    font-weight: 600;
    font-size: 14.5px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(64, 81, 137, 0.3);
    transition: var(--transition-base);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 30px rgba(64, 81, 137, 0.4);
}

.contact-info-wrapper {
    display: block;
}

.contact-info-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.info-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px;
    background: rgba(64, 81, 137, 0.05);
    border-radius: 12px;
}

.info-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-orange) 0%, var(--neon-cyan) 100%);
    border-radius: 12px;
    color: white;
}

.info-label {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.info-value {
    font-weight: 600;
    color: var(--text-primary);
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

.hours-row.inactive {
    opacity: 0.5;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-link-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-base);
}

.quick-link-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--accent-primary);
}

.map-section {
    height: 400px;
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(64, 81, 137, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    position: relative;
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.map-marker {
    font-size: 48px;
}

.map-text {
    font-size: 20px;
    font-weight: 600;
}

/* ===================================
   LEGAL/CONTRACTS PAGE
   =================================== */
.legal-section {
    padding: var(--section-padding) 0;
}

.legal-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 64px;
}

.legal-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
}

.legal-nav-item {
    padding: 12px 16px;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-base);
}

.legal-nav-item:hover,
.legal-nav-item.active {
    background: rgba(64, 81, 137, 0.15);
    color: var(--accent-primary);
}

.legal-content {
    max-width: 800px;
}

.legal-section-content {
    margin-bottom: 80px;
}

.legal-section-content h2 {
    font-size: 21px;
    margin-bottom: 12px;
    color:#405189;
}

.legal-updated {
    color: var(--text-tertiary);
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-block {
    margin-bottom: 32px;
}

.legal-block h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #405189;
}

.legal-block p {
    color: #000;
    line-height: 1.8;
    font-size:13.5px;
    font-weight:500;
    margin-bottom: 16px;
}

.legal-block ul {
    list-style: disc;
    padding-left: 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-block li {
    margin-bottom: 8px;
}

/* ===================================
   AUTH PAGES (Login & Register)
   =================================== */
.auth-page {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--bg-primary);
    margin: 0;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    max-width: none;
    background: var(--bg-primary);
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.auth-branding {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: linear-gradient(135deg, #405189 0%, #0052CC 100%);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.auth-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.auth-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
}

.auth-tagline {
    display: block;
    font-size: 34px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.auth-description {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.5;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.auth-logo .logo-icon {
    color: white;
    animation: none;
    font-size: 20px;
}

.auth-logo .logo-text {
    color: white;
}

.auth-form-container {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    box-shadow: none;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 380px;
}

.auth-header {
    margin-bottom: 36px;
    text-align: center;
}

.auth-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #405189;
}

.auth-header img,
.auth-header .logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    display: block;
    margin:auto !important;
    margin-bottom: 12px !important;
}

.auth-header p {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px;
    background: #f0f2f5;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.input-wrapper input:focus {
    outline: none;
    background: #f8f9fa;
    border-color: #405189;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.input-icon {
    display: none;
}

.password-toggle {
    display: none;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    background: white;
}

input[type="checkbox"]:checked + .checkbox-custom {
    background: #405189;
    border-color: #405189;
}

input[type="checkbox"]:checked + .checkbox-custom::after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-link {
    color: #405189;
    font-size: 14px;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-auth-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #405189 0%, #0052CC 100%);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(0, 102, 255, 0.4);
}

.btn-auth-submit svg {
    display: none;
}

.auth-divider {
    display: none;
}

.social-login {
    display: none;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-tertiary);
    font-size: 14px;
}

.auth-footer a {
    color: #405189;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    margin-top: 24px;
    transition: var(--transition-base);
}

.btn-back-home:hover {
    color: var(--text-primary);
}

.btn-back-home svg {
    transition: var(--transition-base);
}

.btn-back-home:hover svg {
    transform: translateX(-4px);
}

.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.strength-fill {
    height: 100%;
    width: 0;
    background: var(--accent-primary);
    transition: width var(--transition-base);
}

.strength-text {
    font-size: 12px;
    color: var(--text-tertiary);
}

/* ===================================
   RESPONSIVE
   =================================== */

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 998;
    left:0;
    right:0;
    transition: all 0.3s ease;
}

.mobile-menu-backdrop.active {
    display: block;
    background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .nav-links,
    .nav-actions {
        display: none;
        margin-left:0px !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .use-cases {
        grid-template-columns: 1fr;
    }

    /* Footer responsiveness */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .info-items {
@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
        grid-template-columns: 1fr;
    }
    
    /* Mobile Menu Drawer */
    .nav-links.active,
    .nav-actions.active {
        display:block;
        display: flex;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        max-width: 100%;
        left:0 !important;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(64, 81, 137, 0.1);
        padding: 24px;
        gap: 8px;
        z-index: 999;
        animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 8px 32px rgba(64, 81, 137, 0.12);
    }
        .nav-actions.active {
            display:none !important;
        }
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links.active {
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid rgba(64, 81, 137, 0.08);
        margin-bottom: 12px;
    }
    
    .nav-links.active li {
        list-style: none;
    }
    
    .nav-links.active a {
        padding: 14px 16px;
        background: rgba(64, 81, 137, 0.06);
        border-radius: 12px;
        width: 100%;
        display: block;
        font-weight: 500;
        color: var(--text-primary);
        transition: all var(--transition-base);
        position: relative;
        overflow: hidden;
    }
    
    .nav-links.active a::before {
        content: '';
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, var(--accent-primary), transparent);
        opacity: 0.1;
        transition: left 0.3s ease;
        z-index: -1;
    }
    
    .nav-links.active a:hover {
        background: rgba(64, 81, 137, 0.12);
        transform: translateX(4px);
    }
    
    .nav-links.active a:hover::before {
        left: 0;
    }
    
    .nav-links.active a.active {
        background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
        color: white;
        font-weight: 600;
    }
    
    .nav-actions.active {
        flex-direction: column;
        align-items: stretch;
        top: auto;
        bottom: 0;
        padding: 16px;
        gap: 12px;
        border-top: 1px solid rgba(64, 81, 137, 0.08);
        border-bottom: none;
    }
    
    .nav-actions.active a {
        width: 100%;
        text-align: center;
        padding: 14px 16px;
        border-radius: 12px;
        font-weight: 600;
        transition: all var(--transition-base);
    }
    
    .nav-actions.active .btn-login {
        background: transparent;
        border: 2px solid var(--accent-primary);
        color: var(--accent-primary);
    }
    
    .nav-actions.active .btn-login:hover {
        background: rgba(64, 81, 137, 0.08);
    }
    
    .nav-actions.active .btn-primary {
        background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
        color: white;
        border: none;
        box-shadow: 0 4px 20px rgba(64, 81, 137, 0.3);
    }
    
    .nav-actions.active .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 32px rgba(64, 81, 137, 0.4);
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1000;
        cursor: pointer;
    }
    
    .mobile-menu-toggle span {
        background: var(--text-primary);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
        background: var(--accent-primary);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: var(--accent-primary);
    }

    
    .hero-container,
    .contact-grid,
    .auth-container {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
    
    .feature-detail-block {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .feature-detail-block.reverse {
        direction: ltr;
    }
    
    .legal-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        position: static;
    }
    
    .legal-nav {
        flex-direction: row;
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .features-grid,
    .solutions-grid,
    .pricing-grid,
    .references-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    
    .auth-form-container {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .page-title,
    .section-title {
        font-size: 32px;
    }
    
    .pricing-card,
    .solution-card,
    .contact-info-card {
        padding: 24px;
    }
}
.auth-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-form .form-group label {
    font-size: 14px;
    font-weight: 500;
    text-align:center !important;
    color: var(--text-primary);
}
.pricing-card {
            width: 90%;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }

        .header {
            padding: 30px;
            text-align: center;
            background: #ffffff;
            border-bottom: 1px solid #f1f5f9;
        }

        .header h1 {
            margin: 0;
            font-size: 24px;
            color: #1e293b;
            letter-spacing: -0.5px;
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        .pricing-table thead {
            background-color: #f1f5f9;
        }

        .pricing-table th {
            padding: 16px 24px;
            text-align: left;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            color: #64748b;
            letter-spacing: 0.05em;
        }

        .pricing-table td {
            padding: 20px 24px;
            border-bottom: 1px solid #f1f5f9;
            color: #334155;
            font-size: 15px;
        }

        /* SaaS Tarzı Fiyat Vurgusu */
        .price-text {
            font-weight: 700;
            color: #405189; /* Sistem Mavi Rengi */
        }

        .extra-text {
            font-size: 13px;
            color: #ef4444; /* Soft Red */
            font-weight: 500;
        }

        /* Modern Badge (Etiket) */
        .badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 9999px;
            font-size: 12px;
            font-weight: 600;
            background-color: #eef2ff;
            color: #4338ca;
        }

        /* Hover Efekti */
        .pricing-table tbody tr:hover {
            background-color: #fafafa;
        }

        /* ===================================
           DETAILED REPORTING SECTION
           =================================== */

        .detailed-reporting-section {
            padding: 120px 0;
            background: var(--bg-secondary);
        }

        .reporting-header-top {
            text-align: center;
            margin-bottom: 80px;
        }

        .reporting-main-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .reporting-main-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .reporting-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: auto auto;
            gap: 32px;
            grid-auto-flow: dense;
        }

        .reporting-card {
            background: var(--bg-primary);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all var(--transition-base);
            display: flex;
            flex-direction: column;
            height:450px;
        }
        .reporting-card{
            grid-column: span 2;
            grid-row: span 1;
        }

        .reporting-card:hover {
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            transform: translateY(-8px);
        }

        .reporting-card-header {
            padding: 24px;
            background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
            border-bottom: 1px solid var(--border-color);
        }

        .reporting-card:first-child .reporting-card-header {
            padding: 32px;
        }

        .reporting-card-header h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }


        .reporting-card-header p {
            font-size: 14px;
            font-weight:500;
            color: var(--text-secondary);
            line-height: 1.5;
        }
        .reporting-image {
            flex: 1;
            overflow: hidden;
            background: var(--bg-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .reporting-image {
            min-height: 230px;
        }

        .reporting-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-base);
        }

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

        /* Responsive - Tablet */
        @media (max-width: 1024px) {
            .reporting-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .reporting-card:first-child {
                grid-column: span 2;
                grid-row: span 1;
            }

            .reporting-card:first-child .reporting-image {
                min-height: 350px;
            }
        }

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

            .reporting-header-top {
                margin-bottom: 60px;
            }

            .reporting-main-title {
                font-size: 36px;
            }

            .reporting-main-subtitle {
                font-size: 16px;
            }

            .reporting-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .reporting-card {
                grid-column: span 1 !important;
                grid-row: span 1 !important;
            }

            .reporting-card-header {
                padding: 20px;
            }

            .reporting-card-header h3 {
                font-size: 18px;
            }

            .reporting-card:first-child .reporting-card-header h3 {
                font-size: 18px;
            }

            .reporting-image,
            .reporting-card:first-child .reporting-image,
            .reporting-card:nth-child(2) .reporting-image,
            .reporting-card:nth-child(3) .reporting-image {
                min-height: 280px;
            }
        }

        @media (max-width: 480px) {
            .reporting-main-title {
                font-size: 28px;
            }

            .reporting-main-subtitle {
                font-size: 14px;
            }

            .reporting-card-header {
                padding: 16px;
            }

            .reporting-card-header h3 {
                font-size: 16px;
            }

            .reporting-image,
            .reporting-card:first-child .reporting-image,
            .reporting-card:nth-child(2) .reporting-image,
            .reporting-card:nth-child(3) .reporting-image {
                min-height: 220px;
            }
        }

        /* Mobil Duyarlılık */
        @media (max-width: 640px) {
            .pricing-table thead { display: none; }
            .pricing-table tr { display: block; border-bottom: 2px solid #f1f5f9; padding: 10px 0; }
            .pricing-table td { display: block; text-align: right; padding: 10px 20px; border: none; }
            .pricing-table td::before {
                content: attr(data-label);
                float: left;
                font-weight: 600;
                color: #64748b;
            }
        }
        
.block992{
    display:none !important;
}
@media (max-width: 1024px) {
    .block992{
        display:block !important;
    }
}
@media (max-width: 992px) {
    .auth-branding {
        display: none;
    }
    .features-detail{
        text-align: center !important;
    }
    .feature-list{
        justify-content: center !important;
        text-align: center !important;
    }
}