@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hover: linear-gradient(135deg, #7e8ef2 0%, #8e5cb8 100%);
    --dark: #1a202c;
    --light: #f7fafc;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.loader-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 4px solid;
    border-radius: 50%;
    animation: loader-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #667eea transparent transparent transparent;
}

.loader-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.loader-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.loader-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes loader-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.preloader-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 1.5rem;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 16px rgba(102, 126, 234, 0.5));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
}

.loader-text h4 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.loader-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2d3748;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* Performance Optimizations */
* {
    -webkit-tap-highlight-color: transparent;
}

img, video {
    max-width: 100%;
    height: auto;
}

button, a {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

/* Improved Animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

::selection {
    background: var(--primary);
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
}

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

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
}

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

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, -100px) rotate(90deg);
    }
    50% {
        transform: translate(0, -200px) rotate(180deg);
    }
    75% {
        transform: translate(-100px, -100px) rotate(270deg);
    }
}

/* Glassmorphism Navbar */
.glass-nav {
    background: rgba(26, 32, 44, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.navbar-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.btn-gradient {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-gradient:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    color: white;
}

.hero-row {
    min-height: 100vh;
    padding: 120px 0 80px;
    padding-top: 100px;
}

.badge-pill {
    display: inline-block;
    background: var(--gradient);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: badge-glow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.badge-pill::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(102, 126, 234, 0.6);
    }
}

@keyframes badge-shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.badge-pill i {
    font-size: 14px;
    margin-right: 8px;
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(90deg, #ffffff 0%, #a0aec0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item i {
    font-size: 1.3rem;
    color: #4ade80;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mockup-title {
    font-weight: 600;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.stat-card i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #4ade80;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.7;
}

.chart-visual {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.animated-chart {
    width: 100%;
    height: auto;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 15px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: float-cards 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    right: -50px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -50px;
    animation-delay: 1.5s;
}

.floating-card i {
    font-size: 24px;
    color: #4ade80;
}

.floating-card strong {
    display: block;
    font-size: 1.1rem;
}

.floating-card small {
    display: block;
    opacity: 0.7;
    font-size: 0.85rem;
}

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

/* Sections */
.section-padding {
    padding: 100px 0;
    position: relative;
    background: #0f172a;
}

.section-padding:nth-child(even) {
    background: #1e293b;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Feature Cards */
.feature-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.feature-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.feature-card-modern p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: #4ade80;
    font-size: 14px;
}

/* Demo Section */
.demo-section {
    background: #1e293b;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.video-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.video-placeholder small {
    opacity: 0.6;
}

.demo-features {
    margin-top: 3rem;
}

.demo-feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.demo-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.5);
}

.demo-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.demo-feature-card h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.demo-feature-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Stats */
.stats-section {
    background: var(--gradient);
}

.stat-modern {
    text-align: center;
    color: white;
}

.stat-modern .stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
}

.stat-modern .stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-modern .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Pricing */
.pricing-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card-modern.featured {
    border-color: var(--primary);
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.05);
}

.pricing-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card-modern.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.pricing-price {
    margin: 2rem 0;
    text-align: center;
}

.pricing-price .currency {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
}

.pricing-price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    font-size: 18px;
}

.fa-check-circle {
    color: #4ade80;
}

.fa-times-circle {
    color: #ef4444;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.btn-outline-gradient {
    background: transparent;
    color: white;
    border: 2px solid;
    border-image: var(--gradient) 1;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-gradient:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials-section {
    background: #0f172a;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 8rem;
    color: rgba(102, 126, 234, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.author-name {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* FAQ */
.accordion-modern {
    background: transparent;
}

.accordion-item-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-button-modern {
    background: transparent;
    border: none;
    padding: 24px;
    width: 100%;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-button-modern:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-button-modern i:last-child {
    transition: transform 0.3s ease;
}

.accordion-button-modern:not(.collapsed) i:last-child {
    transform: rotate(180deg);
}

.accordion-body-modern {
    padding: 0 24px 24px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* CTA */
.cta-section {
    background: var(--gradient);
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 60px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Form Modern */
.form-group-modern {
    margin-bottom: 0;
}

.form-label-modern {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.form-label-modern i {
    color: var(--primary);
    font-size: 0.9rem;
}

.form-control-modern {
    width: 100%;
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

/* Turnstile Wrapper */
.turnstile-wrapper {
    background: linear-gradient(135deg, rgba(248, 249, 255, 0.9) 0%, rgba(240, 244, 255, 0.9) 100%);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(102, 126, 234, 0.15);
    position: relative;
}

.turnstile-wrapper::before {
    content: '\f132';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #667eea;
    font-size: 16px;
    opacity: 0.7;
}

.turnstile-wrapper .cf-turnstile {
    flex: 1;
}

/* Submit Button Modern */
.submit-btn-modern {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn-modern:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn-modern .btn-text,
.submit-btn-modern .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact */
.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item-modern {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon-modern {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-item-modern h5 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-item-modern p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.contact-form-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
}

.form-control-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control-modern:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control-modern.is-valid {
    border-color: #4ade80 !important;
}

.form-control-modern.is-invalid {
    border-color: #ef4444 !important;
}

.form-control-modern:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* Footer */
.footer-modern {
    background: #0a0f1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.6));
    transform: translateY(-2px);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer-modern h6 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

.footer-links-modern a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links-modern a:hover {
    color: white;
    padding-left: 5px;
}

.social-links-modern {
    display: flex;
    gap: 1rem;
}

.social-links-modern a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links-modern a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1199px) {
    .floating-card {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
    
    .pricing-card-modern.featured {
        transform: scale(1);
    }
    
    .pricing-card-modern.featured:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .nav-link::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .navbar-logo {
        height: 45px;
    }
    
    .preloader-logo {
        width: 150px;
    }
    
    .footer-logo {
        width: 170px;
    }
    
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .badge-pill {
        font-size: 11px;
        padding: 8px 18px;
        letter-spacing: 0.3px;
    }
    
    .badge-pill i {
        font-size: 12px;
        margin-right: 6px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .trust-item {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .feature-card-modern {
        padding: 30px;
    }
    
    .feature-icon-modern {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .pricing-price .amount {
        font-size: 2.5rem;
    }
    
    .stat-modern .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .stat-modern .stat-number {
        font-size: 2.5rem;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
    
    .contact-form-modern {
        padding: 30px 20px;
    }
    
    .footer-modern {
        padding: 40px 0 20px;
    }
    
    .orb-1, .orb-2, .orb-3 {
        filter: blur(60px);
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn-gradient, .btn-glass {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .brand-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .brand-name {
        font-size: 16px;
    }
    
    .brand-subtitle {
        font-size: 9px;
    }
    
    .pricing-card-modern {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .contact-item-modern {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .form-label-modern {
        font-size: 0.9rem;
    }
    
    .turnstile-wrapper {
        padding: 12px 15px;
        flex-wrap: wrap;
    }
    
    .turnstile-wrapper::before {
        display: none;
    }
}

/* ============================================
   EK RESPONSİVE DÜZELTMELERİ
   ============================================ */

/* Navbar Mobil Düzeltmeleri */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 16px;
        margin-top: 15px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-radius: 8px;
        margin: 3px 0;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(102, 126, 234, 0.2);
    }
    
    .navbar-nav .btn {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
    
    .navbar-toggler {
        padding: 8px 12px;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        border-radius: 8px;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        border-color: #667eea !important;
    }
}

/* Hero Section Mobil - Kapsamlı Düzeltmeler */
@media (max-width: 991px) {
    .hero-row {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-row > .col-lg-6:first-child {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        margin: 0 !important;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-row {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .trust-item {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .badge-pill {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    /* Dashboard Mockup Mobil */
    .dashboard-mockup {
        padding: 15px;
        border-radius: 16px;
    }
    
    .mockup-header {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .mockup-dots span {
        width: 8px;
        height: 8px;
    }
    
    .mockup-title {
        font-size: 0.85rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-card {
        padding: 15px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .stat-card i {
        font-size: 20px;
        margin-bottom: 0;
    }
    
    .stat-value {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .chart-visual {
        padding: 15px;
        margin-top: 15px !important;
    }
}

@media (max-width: 575px) {
    .hero-row {
        padding: 70px 0 30px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    .dashboard-mockup {
        padding: 12px;
    }
    
    .stat-card {
        padding: 12px;
    }
    
    .stat-value {
        font-size: 1rem;
    }
}

/* Feature Cards Mobil */
@media (max-width: 575px) {
    .feature-card-modern {
        padding: 25px 20px;
    }
    
    .feature-card-modern h3 {
        font-size: 1.1rem;
    }
    
    .feature-card-modern p {
        font-size: 0.9rem;
    }
    
    .feature-list li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}

/* How It Works Section Mobil */
@media (max-width: 991px) {
    .step-connector {
        display: none;
    }
    
    .step-card {
        margin-bottom: 20px;
    }
}

/* Pricing Cards Mobil */
@media (max-width: 767px) {
    .pricing-card-modern {
        margin-bottom: 20px;
    }
    
    .pricing-card-modern.featured {
        order: -1;
    }
    
    .pricing-features li {
        font-size: 0.9rem;
        padding: 10px 0;
    }
}

/* Testimonials Mobil */
@media (max-width: 767px) {
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonial-author img {
        width: 45px;
        height: 45px;
    }
}

/* FAQ Section Mobil */
@media (max-width: 575px) {
    .accordion-button {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* CTA Section Mobil */
@media (max-width: 767px) {
    .cta-card {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Footer Mobil */
@media (max-width: 767px) {
    .footer-modern .row > div {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Trust Section Mobil */
@media (max-width: 991px) {
    .trust-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-stat-item {
        flex: 0 0 45%;
        margin: 10px;
    }
}

@media (max-width: 575px) {
    .trust-stat-item {
        flex: 0 0 100%;
    }
}

/* Genel Taşma Düzeltmeleri */
html, body {
    overflow-x: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 575px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .row > * {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Blog Kartları Mobil */
@media (max-width: 767px) {
    .blog-card h3 {
        font-size: 1rem;
    }
    
    .blog-card p {
        font-size: 0.9rem;
    }
    
    .blog-category-badge {
        font-size: 10px;
        padding: 3px 10px;
    }
}

/* Cookie Banner Mobil */
@media (max-width: 575px) {
    .cookie-consent {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-content {
        margin-bottom: 15px;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-consent-buttons button {
        width: 100%;
    }
    
    .cookie-modal-content {
        margin: 10px;
        max-height: 90vh;
    }
}

/* Scroll to Top Mobil */
@media (max-width: 575px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 0.9rem;
    }
}

/* Tablet Landscape Düzeltmeleri */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .feature-card-modern {
        padding: 25px;
    }
    
    .pricing-card-modern {
        padding: 30px 20px;
    }
}
