/* Site Yönetimi Sayfası Özel Stilleri */

:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #ff0000;
    --text-dark: #333333;
    --text-light: #ffffff;
    
    --primary-gradient: linear-gradient(135deg, #000000 0%, #ff0000 100%);
    --secondary-gradient: linear-gradient(135deg, #ff0000 0%, #1a1a1a 100%);
    --blue-gradient: linear-gradient(135deg, #000000 0%, #333333 100%);
    --green-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --orange-gradient: linear-gradient(135deg, #ff0000 0%, #ff6b6b 100%);
    --purple-gradient: linear-gradient(135deg, #1a1a1a 0%, #ff0000 100%);
}

/* Cursor effect - Desktop only */
@media (min-width: 769px) and (pointer: fine) {
    * {
        cursor: none !important;
    }
}

/* Hero Screenshots */
.hero-screenshots {
    position: relative;
    width: 100%;
    max-width: 600px;
    z-index: 1;
}

.screenshot-main {
    position: relative;
    z-index: 1;
}

.screenshot-desktop {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.screenshot-mobile {
    position: absolute;
    width: 180px;
    z-index: 3;
}

.screenshot-mobile img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.mobile-1 {
    bottom: -30px;
    left: -60px;
    animation: float 3s ease-in-out infinite;
}

.mobile-2 {
    top: 50px;
    right: -80px;
    animation: float 3s ease-in-out infinite 1.5s;
}

/* Hero Section */
.site-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.site-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.site-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    padding-top: 20px;
}

.site-hero-content {
    color: white;
}

.badge-wrapper {
    margin-bottom: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.site-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(to right, #ffffff 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: #ff0000;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

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

/* Hero Image/Mockup */
.site-hero-image {
    position: relative;
}

.mockup-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
}

.mockup-icon {
    font-size: 200px;
    color: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
}

.card-1 {
    top: 50px;
    left: -20px;
    color: #43e97b;
}

.card-1 i {
    color: #43e97b;
}

.card-2 {
    top: 200px;
    right: -30px;
    color: #4facfe;
    animation-delay: 1s;
}

.card-2 i {
    color: #4facfe;
}

.card-3 {
    bottom: 80px;
    left: 50px;
    color: #fa709a;
    animation-delay: 2s;
}

.card-3 i {
    color: #fa709a;
}

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

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #000000 0%, #ff0000 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

/* Platform Section */
.platform-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 10;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.platform-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff0000 0%, #1a1a1a 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.platform-card:hover::before {
    transform: scaleX(1);
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.platform-card.featured {
    border: 2px solid #ff0000;
    transform: scale(1.05);
}

.popular-badge-small {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0000 0%, #1a1a1a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.platform-icon i {
    font-size: 40px;
    color: white;
}

.platform-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.platform-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.platform-features {
    list-style: none;
    margin-bottom: 25px;
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #555;
}

.platform-features i {
    color: #43e97b;
    font-size: 16px;
}

.download-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.store-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: #1a1a1a;
    color: white;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-button:hover {
    background: #ff0000;
    transform: translateY(-2px);
}

.platform-note {
    margin-top: 40px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #ff0000;
    border-left: 4px solid #ff0000;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.1);
}

.platform-note i {
    font-size: 28px;
    color: #ff0000;
    margin-top: 3px;
}

.platform-note p {
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.platform-note strong {
    color: #ff0000;
    font-weight: 700;
}

/* Platform Screenshots */
.platform-screenshots {
    margin-top: 60px;
}

.platform-screenshot-item h4 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.mobile-screens {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

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

.mobile-screen img {
    width: 100%;
    max-width: 250px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid #e0e0e0;
    transition: all 0.3s ease;
}

.mobile-screen img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.mobile-screen p {
    margin-top: 15px;
    font-weight: 700;
    color: #ff0000;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Panel Screenshots */
.panel-screenshot {
    margin-top: 30px;
    text-align: center;
}

.panel-screenshot img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.panel-screenshot img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-icon.blue {
    background: var(--blue-gradient);
}

.feature-icon.green {
    background: var(--green-gradient);
}

.feature-icon.purple {
    background: var(--purple-gradient);
}

.feature-icon.orange {
    background: var(--orange-gradient);
}

.feature-icon.red {
    background: var(--secondary-gradient);
}

.feature-icon.teal {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.feature-icon.pink {
    background: linear-gradient(135deg, #fc466b 0%, #3f5efb 100%);
}

.feature-icon.indigo {
    background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
}

.feature-icon.yellow {
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Panels Section */
.panels-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 10;
}

.panels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.panel-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.panel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.panel-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.panel-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.panel-icon.admin {
    background: linear-gradient(135deg, #000000 0%, #ff0000 100%);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.panel-icon.user {
    background: linear-gradient(135deg, #1a1a1a 0%, #555 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.panel-icon i {
    font-size: 32px;
    color: white;
}

.panel-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.panel-title p {
    color: #666;
    font-size: 14px;
}

.panel-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.panel-feature-item:hover {
    background: #f0f1f3;
    transform: translateX(5px);
}

.panel-feature-item i {
    font-size: 24px;
    color: #ff0000;
    margin-top: 3px;
    transition: all 0.3s ease;
}

.panel-feature-item:hover i {
    transform: scale(1.2);
    color: #000000;
}

.panel-feature-item strong {
    display: block;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.panel-feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.panel-note {
    margin-top: 25px;
    padding: 20px;
    background: #e8f5e9;
    border-left: 4px solid #43e97b;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.panel-note i {
    font-size: 24px;
    color: #43e97b;
    margin-top: 2px;
}

.panel-note p {
    color: #2d5016;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Security Section */
.security-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 10;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.security-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.security-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff0000 0%, #1a1a1a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-icon i {
    font-size: 26px;
    color: white;
}

.security-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.security-info p {
    color: #666;
    line-height: 1.6;
}

.security-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-shield {
    position: relative;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ff0000 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.security-shield i {
    font-size: 120px;
    color: white;
}

.security-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #ff0000;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.security-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}

.security-badge i {
    color: #43e97b;
    font-size: 16px;
}

.badge-1 {
    top: 50px;
    left: -50px;
}

.badge-2 {
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
}

.badge-3 {
    bottom: 50px;
    left: -30px;
}

/* Pricing Section */
.pricing-section-site {
    padding: 100px 0;
}

.pricing-info {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-info p {
    font-size: 18px;
    color: #ff0000;
    padding: 15px 30px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50px;
    display: inline-block;
}

.pricing-info strong {
    color: #ff0000;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.toggle-label {
    font-weight: 600;
    color: #333;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: linear-gradient(135deg, #ff0000 0%, #1a1a1a 100%);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.discount-badge {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 5px;
}

.pricing-grid-site {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card-site {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card-site:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card-site.featured {
    border-color: #ff0000;
    transform: scale(1.05);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.pricing-header p {
    color: #666;
    font-size: 14px;
}

.pricing-price {
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 24px;
    font-weight: 700;
    color: #ff0000;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 5px;
}

.period {
    font-size: 18px;
    color: #666;
}

.yearly-total {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    display: none;
}

.pricing-toggle input:checked ~ .pricing-grid-site .yearly-total {
    display: block;
}

.save-badge {
    color: #43e97b;
    font-weight: 700;
}

.pricing-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
}

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

.pricing-features-list .fa-check {
    color: #43e97b;
}

.pricing-features-list .fa-times {
    color: #ccc;
}

.pricing-features-list li.disabled {
    color: #999;
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff0000 0%, #1a1a1a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    text-decoration: none;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.pricing-note {
    text-align: center;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-note i {
    color: #ff0000;
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    z-index: 10;
}

.demo-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-text h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.demo-text p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.demo-info-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.demo-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.demo-info-item i {
    font-size: 24px;
    color: #43e97b;
}

.demo-info-item p {
    font-size: 16px;
    opacity: 1;
    margin: 0;
}

.demo-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-outline-demo {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-demo:hover {
    background: white;
    color: #1a1a1a;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff0000;
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    color: rgba(255, 255, 255, 0.8);
}

.form-group select option {
    background: #1a1a1a;
    color: white;
}

.demo-benefits h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

.demo-benefits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.demo-benefits li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.demo-benefits i {
    font-size: 28px;
    color: #43e97b;
    flex-shrink: 0;
}

.demo-benefits strong {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.demo-benefits p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 10;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.faq-question i {
    font-size: 20px;
    color: #ff0000;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff0000 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    z-index: 10;
}

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

.cta-content h2 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.trust-item i {
    font-size: 24px;
}

/* Footer */
.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .site-hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .site-hero-title {
        font-size: 48px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .modules-showcase {
        grid-template-columns: 1fr;
    }

    .modules-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .security-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .demo-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .platform-grid,
    .features-grid,
    .pricing-grid-site {
        grid-template-columns: repeat(2, 1fr);
    }

    .panels-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .site-hero .container {
        padding-top: 10px;
        align-items: center;
    }

    .site-hero-title {
        font-size: 36px;
    }

    .site-hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    /* Hero Screenshots Responsive */
    .hero-screenshots {
        max-width: 100%;
        margin-top: 40px;
    }

    .screenshot-mobile {
        width: 100px;
    }

    .mobile-1 {
        left: -30px;
        bottom: -15px;
    }

    .mobile-2 {
        right: -30px;
        top: 20px;
    }

    /* Mobile Screens Responsive */
    .mobile-screens {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mobile-screen img {
        max-width: 200px;
    }

    .platform-section {
        padding: 80px 0;
    }

    .platform-grid,
    .features-grid,
    .pricing-grid-site {
        grid-template-columns: 1fr;
    }

    .platform-card.featured {
        transform: scale(1);
    }

    .section-header h2 {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .demo-cta-buttons {
        flex-direction: column;
    }

    .demo-cta-buttons a {
        width: 100%;
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-trust {
        flex-direction: column;
        gap: 20px;
    }

    .mockup-wrapper {
        height: 300px;
    }

    .mockup-icon {
        font-size: 120px;
    }

    .floating-card {
        font-size: 12px;
        padding: 10px 15px;
    }

    .floating-card i {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .site-hero-title {
        font-size: 28px;
    }

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

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

    .popular-ribbon {
        font-size: 10px;
        padding: 6px 15px;
    }

    .amount {
        font-size: 42px;
    }
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    width: auto;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    font-weight: 300;
    color: white;
    cursor: pointer;
    z-index: 100000;
    transition: all 0.3s ease;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.2);
    background: #ff0000;
}

.lightbox-caption {
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.lightbox-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    pointer-events: all;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #ff0000;
    transform: scale(1.2);
}

.clickable-image {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.clickable-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 0, 0, 0.3) !important;
}

.clickable-image::after {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.clickable-image:hover::after {
    opacity: 0.9;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 35px;
        width: 40px;
        height: 40px;
    }

    .lightbox-caption {
        font-size: 14px;
        padding: 10px 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .clickable-image::after {
        font-size: 30px;
    }
}
