/* Case Studies */
.case-studies-hero { padding: 120px 0 60px; background: linear-gradient(135deg,#0f172a,#1e293b 60%,#334155); color:#f1f5f9; text-align:center; }
.case-studies-hero .hero-sub { color:#60a5fa; font-weight:700; margin-top:0.5rem; }
.case-studies-hero p { color:#94a3b8; max-width:820px; margin: 0.75rem auto 1.25rem; }
.case-studies-hero .hero-ctas { margin-top: 1rem; }

.featured-case-section { background:#0f172a; padding: 40px 0 10px; }
.featured-case { display:grid; grid-template-columns:1.2fr 0.8fr; gap:2rem; align-items:center; background: rgba(15,23,42,0.6); border:1px solid rgba(96,165,250,0.2); border-radius:16px; padding:2rem; backdrop-filter: blur(18px); }
.case-pill { display:inline-block; padding:6px 12px; border-radius:999px; background: rgba(96,165,250,0.15); color:#60a5fa; font-weight:600; font-size:0.85rem; margin-bottom:0.5rem; }
.featured-text h3 { color:#f1f5f9; font-size:1.8rem; margin-bottom:0.5rem; }
.featured-text p { color:#94a3b8; margin-bottom:1rem; }
.metrics { display:grid; grid-template-columns: repeat(4, minmax(120px,1fr)); gap:0.75rem; }
.metric { background:#020617; border:1px solid rgba(96,165,250,0.15); border-radius:12px; padding:12px; text-align:center; }
.metric .num { color:#60a5fa; font-weight:800; font-size:1.2rem; }
.metric .label { color:#94a3b8; font-size:0.9rem; }
.growth-graph { height:160px; border-radius:12px; background: linear-gradient(180deg,rgba(96,165,250,0.3),transparent), repeating-linear-gradient( to right, rgba(148,163,184,0.08) 0 2px, transparent 2px 24px); position: relative; overflow:hidden; }
.growth-graph::after { content:''; position:absolute; inset:auto 0 16px 0; height:2px; background: linear-gradient(90deg, transparent, #60a5fa, transparent); animation: shimmer 2.5s linear infinite; }

.case-studies-section { background:#0f172a; padding: 40px 0 80px; }
.case-studies-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap:1.5rem; }
.case-study-card { background: rgba(15,23,42,0.6); border:1px solid rgba(96,165,250,0.18); border-radius:16px; overflow:hidden; transition: transform 0.25s ease, border-color 0.25s ease; }
.case-study-card:hover { transform: translateY(-6px); border-color: rgba(96,165,250,0.35); }
.case-study-image { position: relative; height: 140px; background: linear-gradient(135deg,#1e293b,#334155); display:flex; align-items:center; justify-content:center; }
.image-placeholder { width:64px; height:64px; border-radius:14px; background: linear-gradient(135deg,#60a5fa,#3b82f6); color:#fff; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 30px rgba(96,165,250,0.35); font-size: 1.25rem; }
.case-study-badge { position:absolute; top:12px; left:12px; background: rgba(2,6,23,0.8); border:1px solid rgba(96,165,250,0.3); color:#e2e8f0; font-size:0.8rem; padding: 6px 10px; border-radius:999px; }
.case-study-content { padding: 1.2rem; }
.case-study-content h3 { color:#f1f5f9; margin-bottom: 0.25rem; }
.case-study-description { color:#94a3b8; margin-bottom: 0.75rem; }
.case-study-results { display:grid; grid-template-columns: repeat(3,1fr); gap:0.5rem; margin-bottom:0.75rem; }
.result-item { background:#020617; border:1px solid rgba(96,165,250,0.12); border-radius:10px; padding:10px; text-align:center; }
.result-number { color:#60a5fa; font-weight:800; }
.result-label { color:#94a3b8; font-size:0.85rem; }
.case-study-timeline { display:flex; justify-content:flex-end; gap:0.5rem; color:#64748b; font-size:0.9rem; }
.timeline-label { color:#94a3b8; }

.cs-cta { background:#0f172a; padding: 20px 0 80px; }
.cs-cta-inner { background: linear-gradient(135deg,#1e293b,#334155); border:1px solid rgba(96,165,250,0.2); border-radius:16px; padding: 1.2rem; display:flex; align-items:center; justify-content: space-between; gap: 1rem; }
.cs-cta h3 { color:#f1f5f9; margin-bottom: 0.25rem; }
.cs-cta p { color:#94a3b8; margin: 0; }

@media (max-width: 992px) { .featured-case { grid-template-columns:1fr; } .metrics { grid-template-columns: repeat(2,1fr); } .cs-cta-inner { flex-direction: column; text-align:center; } }

/* Login System */
.login-hero {
    position: relative;
    padding: 140px 0 80px;
    background: radial-gradient(1200px 600px at 10% -10%, rgba(96,165,250,0.15), transparent 60%),
                radial-gradient(800px 500px at 90% 0%, rgba(59,130,246,0.12), transparent 60%),
                #0f172a;
    overflow: hidden;
}

.login-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.login-form-container {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(96,165,250,0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    color: #f1f5f9;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.login-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.login-form .form-group label {
    display: block;
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.login-form .form-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(2,6,23,0.8);
    border: 1px solid rgba(96,165,250,0.3);
    border-radius: 12px;
    color: #f1f5f9;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-form .form-group input:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96,165,250,0.1);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1rem;
    margin-top: 1.2rem;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1.2rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #60a5fa;
}

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

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.checkbox-container input {
    margin-right: 0.5rem;
}

.forgot-password {
    color: #60a5fa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #93c5fd;
}

.btn-login {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.login-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f87171;
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.3);
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(96,165,250,0.2);
}

.login-footer p {
    color: #94a3b8;
}

.login-footer a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: #93c5fd;
}

.login-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.login-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.login-card-1, .login-card-2, .login-card-3 {
    position: absolute;
    background: rgba(15,23,42,0.8);
    border: 1px solid rgba(96,165,250,0.3);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #f1f5f9;
    animation: float 6s ease-in-out infinite;
}

.login-card-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.login-card-2 {
    top: 100px;
    right: 20px;
    animation-delay: 2s;
}

.login-card-3 {
    bottom: 20px;
    left: 50px;
    animation-delay: 4s;
}

.login-card-1 i, .login-card-2 i, .login-card-3 i {
    font-size: 2rem;
    color: #60a5fa;
}

/* Dashboard Styles */
.dashboard-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 120px 0 60px;
    color: #f1f5f9;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.welcome-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.welcome-section h1 span {
    color: #60a5fa;
}

.welcome-section p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
}

.dashboard-stats {
    background: #0f172a;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(96,165,250,0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(96,165,250,0.4);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-content h3 {
    color: #f1f5f9;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-content p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.stat-change {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.stat-change.positive {
    color: #10b981;
    background: rgba(16,185,129,0.1);
}

.stat-change.negative {
    color: #f87171;
    background: rgba(248,113,113,0.1);
}

.dashboard-content {
    background: #0f172a;
    padding: 3rem 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.dashboard-card {
    background: rgba(15,23,42,0.6);
    border: 1px solid rgba(96,165,250,0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(96,165,250,0.2);
}

.card-header h3 {
    color: #f1f5f9;
    font-size: 1.25rem;
    font-weight: 600;
}

.view-all {
    color: #60a5fa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #93c5fd;
}

.reports-list, .keywords-list, .activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.report-item, .keyword-item, .activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(2,6,23,0.8);
    border: 1px solid rgba(96,165,250,0.15);
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.report-item:hover, .keyword-item:hover, .activity-item:hover {
    border-color: rgba(96,165,250,0.3);
}

.report-icon, .activity-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.report-content h4, .keyword-content h4 {
    color: #f1f5f9;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.report-content p, .keyword-content p, .activity-content p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.keyword-rank {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.keyword-change {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.keyword-change.positive {
    color: #10b981;
    background: rgba(16,185,129,0.1);
}

.keyword-change.negative {
    color: #f87171;
    background: rgba(248,113,113,0.1);
}

.activity-content h4 {
    color: #f1f5f9;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.action-btn {
    background: rgba(2,6,23,0.8);
    border: 1px solid rgba(96,165,250,0.3);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    color: #f1f5f9;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.action-btn:hover {
    border-color: rgba(96,165,250,0.5);
    transform: translateY(-2px);
    background: rgba(96,165,250,0.1);
}

.action-btn i {
    font-size: 1.5rem;
    color: #60a5fa;
}

.action-btn span {
    font-size: 0.9rem;
    font-weight: 500;
}

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

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    animation: slideIn 0.3s ease;
}

.settings-modal {
    max-width: 600px;
    max-height: 90vh;
}

.settings-modal .modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
}

.modal-header h3 {
    color: #f1f5f9;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #f1f5f9;
    background: rgba(96, 165, 250, 0.1);
}

.modal-body {
    margin-bottom: 1.5rem;
}

.modal-body p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Settings Form Styles */
.settings-modal .form-group {
    margin-bottom: 1.5rem;
}

.settings-modal .form-group label {
    display: block;
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.settings-modal .form-group input,
.settings-modal .form-group select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(2, 6, 23, 0.8);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 8px;
    color: #f1f5f9;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.settings-modal .form-group input:focus,
.settings-modal .form-group select:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.settings-modal .form-group input.error,
.settings-modal .form-group select.error {
    border-color: #f87171;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.1);
}

.form-help {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.input-error {
    color: #f87171;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.input-error::before {
    content: "⚠";
    font-size: 0.7rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #e2e8f0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.checkbox-item:hover {
    color: #f1f5f9;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    margin-right: 0.5rem;
    accent-color: #60a5fa;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"]:focus {
    outline: 2px solid rgba(96, 165, 250, 0.3);
    outline-offset: 2px;
}

/* Enhanced form interactions */
.settings-modal .form-group input:valid {
    border-color: rgba(16, 185, 129, 0.5);
}

.settings-modal .form-group input:invalid:not(:placeholder-shown) {
    border-color: #f87171;
}

/* Loading states for form */
.settings-modal .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.settings-modal .btn:disabled:hover {
    transform: none;
}

/* API Key Container */
.api-key-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.api-key-container input {
    flex: 1;
    padding-right: 4rem;
}

.api-key-toggle,
.api-key-test {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 2;
}

.api-key-toggle {
    right: 2.5rem;
}

.api-key-toggle:hover,
.api-key-test:hover {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
}

.api-key-test {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
}

.api-key-test:hover {
    background: rgba(96, 165, 250, 0.2);
}

.api-key-test:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.api-key-test:disabled:hover {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
}

.api-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.api-status i {
    font-size: 0.6rem;
}

.api-status.valid {
    color: #10b981;
}

.api-status.invalid {
    color: #f87171;
}

.api-status.testing {
    color: #fbbf24;
}

.api-status.unknown {
    color: #94a3b8;
}

/* Enhanced Interactive Elements */
.report-item, .keyword-item, .activity-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.report-item:hover, .keyword-item:hover, .activity-item:hover {
    transform: translateX(5px);
    border-color: rgba(96, 165, 250, 0.4);
    background: rgba(96, 165, 250, 0.05);
}

.action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.action-btn:disabled:hover {
    border-color: rgba(96, 165, 250, 0.3);
    background: rgba(2, 6, 23, 0.8);
}

/* Loading States */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification i {
    color: #10b981;
    font-size: 1.2rem;
}

/* Enhanced Hover Effects */
.dashboard-card:hover {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.3);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-card:hover .stat-content h3 {
    color: #60a5fa;
}

/* Click Animations */
.action-btn:active {
    transform: scale(0.98);
}

.report-item:active, .keyword-item:active, .activity-item:active {
    transform: scale(0.98);
}

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

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-form-container {
        padding: 2rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        text-align: center;
    }
    
    .dashboard-actions {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .toast-notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
}
/* Contact Page */
.contact-hero {
    position: relative;
    padding: 140px 0 80px;
    background: radial-gradient(1200px 600px at 10% -10%, rgba(96,165,250,0.15), transparent 60%),
                radial-gradient(800px 500px at 90% 0%, rgba(59,130,246,0.12), transparent 60%),
                #0f172a;
    overflow: hidden;
}

.hero-orbs .orb {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.hero-orbs .orb-1 { top: -40px; left: 5%; background: #60a5fa33; }
.hero-orbs .orb-2 { top: 20px; right: 15%; background: #3b82f633; animation-delay: 1s; }
.hero-orbs .orb-3 { bottom: -60px; left: 40%; background: #22d3ee33; animation-delay: 2s; }

.contact-hero .hero-content { text-align: center; color: #f1f5f9; position: relative; z-index: 1; }
.contact-hero h1 { font-size: 2.8rem; font-weight: 700; margin-bottom: 1rem; }
.contact-hero p { color: #94a3b8; font-size: 1.1rem; max-width: 800px; margin: 0 auto; }

.contact-section { background: #0f172a; padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.5rem; align-items: start; }

.contact-form-container, .contact-info-container { background: rgba(15,23,42,0.6); border: 1px solid rgba(96,165,250,0.2); border-radius: 16px; backdrop-filter: blur(18px); padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.form-header h2 { color: #f1f5f9; margin-bottom: 0.5rem; }
.form-header p { color: #94a3b8; }

.contact-form .form-group { margin-bottom: 1rem; }
.contact-form label { display: block; color: #cbd5e1; font-weight: 500; margin-bottom: 0.4rem; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #263241;
    background: #0b1220;
    color: #e2e8f0;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.05s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 4px rgba(96,165,250,0.1);
}
.contact-form input:invalid[focused="true"], .contact-form textarea:invalid[focused="true"] {
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245,158,11,0.12);
}

.btn-ripple { position: relative; overflow: hidden; }
.btn-ripple::after {
    content: '';
    position: absolute; inset: 0; background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 45%);
    transform: scale(0); opacity: 0; transition: transform 0.5s, opacity 0.6s;
}
.btn-ripple:active::after { transform: scale(2.5); opacity: 1; transition: 0s; }

.form-note { margin-top: 0.75rem; color: #64748b; font-size: 0.9rem; }
.form-toast { position: fixed; bottom: 24px; right: 24px; background: #0b1220; color: #e2e8f0; border: 1px solid rgba(96,165,250,0.3); padding: 14px 16px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.35); opacity: 0; transform: translateY(10px); pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease; z-index: 2000; }
.form-toast.show { opacity: 1; transform: translateY(0); }

.contact-info h2 { color: #f1f5f9; margin-bottom: 0.5rem; }
.contact-info p { color: #94a3b8; }
.contact-methods { display: grid; gap: 1rem; margin-top: 1rem; }
.contact-method { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1rem; border: 1px solid rgba(96,165,250,0.15); border-radius: 12px; transition: transform 0.2s ease, border-color 0.2s ease; }
.contact-method:hover { transform: translateY(-2px); border-color: rgba(96,165,250,0.35); }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg,#60a5fa,#3b82f6); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(96,165,250,0.35); }
.contact-details h4 { color: #e2e8f0; margin-bottom: 2px; }
.contact-details p { color: #cbd5e1; }
.contact-details span { color: #64748b; font-size: 0.9rem; }

.quick-stats { margin-top: 2rem; }
.quick-stats h3 { color: #f1f5f9; margin-bottom: 1rem; }
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.stat-item { background: rgba(2,6,23,0.8); border: 1px solid rgba(96,165,250,0.14); border-radius: 14px; padding: 1rem; text-align: center; }
.stat-number { font-size: 1.6rem; font-weight: 800; color: #60a5fa; }
.stat-label { color: #94a3b8; }

@media (max-width: 992px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .contact-hero h1 { font-size: 2rem; } .stats-grid { grid-template-columns: 1fr; } }
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: #0f172a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #60a5fa;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-logo a:hover {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #60a5fa;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #e2e8f0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%2360a5fa" stop-opacity="0.1"/><stop offset="100%" stop-color="%2360a5fa" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.4;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.highlight {
    background: linear-gradient(45deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #e2e8f0;
    border-color: #475569;
}

.btn-secondary:hover {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    border-color: #60a5fa;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.card-3 {
    top: 40%;
    right: 5%;
    animation-delay: 2s;
}

.hero-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

.chart-container {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 150px;
    justify-content: center;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(to top, #60a5fa, #3b82f6);
    border-radius: 10px 10px 0 0;
    animation: growUp 2s ease-out;
}

.chart-bar:nth-child(1) { animation-delay: 0.5s; }
.chart-bar:nth-child(2) { animation-delay: 0.7s; }
.chart-bar:nth-child(3) { animation-delay: 0.9s; }
.chart-bar:nth-child(4) { animation-delay: 1.1s; }
.chart-bar:nth-child(5) { animation-delay: 1.3s; }

/* Services Section */
.services {
    padding: 100px 0;
    background: #1e293b;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.section-header p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(96, 165, 250, 0.2);
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.2);
    border-color: rgba(96, 165, 250, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 32px rgba(96, 165, 250, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.service-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: #0f172a;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #f1f5f9;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    color: #60a5fa;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f1f5f9;
}

.feature-item p {
    color: #94a3b8;
    line-height: 1.6;
}

.why-choose-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.animated-chart {
    position: relative;
    width: 200px;
    height: 200px;
}

.chart-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#60a5fa 0deg 306deg, #475569 306deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotate 2s ease-in-out;
}

.chart-circle::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: #0f172a;
    border-radius: 50%;
}

.chart-text {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    text-align: center;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #f1f5f9;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #020617;
    color: #f1f5f9;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f1f5f9;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.social-links a:hover {
    background: #60a5fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(96, 165, 250, 0.3);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
}

/* Animations */
@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes growUp {
    from {
        height: 0;
    }
    to {
        height: var(--height);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Service Pages */
.service-hero {
    padding: 140px 0 80px;
    background: radial-gradient(1200px 600px at 10% -10%, rgba(96,165,250,0.15), transparent 60%),
                radial-gradient(800px 500px at 90% 0%, rgba(59,130,246,0.12), transparent 60%),
                #0f172a;
    text-align: center;
    color: #f1f5f9;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.3);
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f1f5f9, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-details {
    padding: 80px 0;
    background: #0f172a;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-description h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
}

.service-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 2rem 0 1rem;
}

.service-description p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.process-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #f1f5f9;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
}

.service-benefits {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.service-benefits h3 {
    color: #f1f5f9;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #94a3b8;
}

.benefits-list i {
    color: #60a5fa;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-icon-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

/* Pricing Toggle */
.pricing-toggle-section {
    padding: 2rem 0;
    background: #0f172a;
    text-align: center;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.toggle-label {
    color: #94a3b8;
    font-weight: 500;
    font-size: 1rem;
}

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

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #334155;
    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-color: #60a5fa;
}

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

.discount-badge {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Pricing Display */
.monthly-price {
    display: inline;
}

.annual-price {
    display: none;
}

.toggle-annual .monthly-price {
    display: none;
}

.toggle-annual .annual-price {
    display: inline;
}

/* Modern hover effects */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

/* Glassmorphism enhancement */
.service-card:hover {
    backdrop-filter: blur(25px);
    border-color: rgba(96, 165, 250, 0.3);
}

/* Button hover effects */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Floating cards enhanced animation */
.floating-card {
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.3);
}

/* Chart animation enhancement */
.chart-bar {
    transition: all 0.3s ease;
}

.chart-bar:hover {
    transform: scaleY(1.1);
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3);
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 80px;
    background: #0f172a;
    text-align: center;
    color: #f1f5f9;
}

.pricing-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pricing-hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #94a3b8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item i {
    font-size: 2rem;
    color: #60a5fa;
}

.benefit-item span {
    font-weight: 600;
    color: #e2e8f0;
}

.trust-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.trust-indicator p {
    margin: 0;
    color: #94a3b8;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.pricing-section {
    padding: 80px 0;
    background: #0f172a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.2);
    border-color: rgba(96, 165, 250, 0.4);
}

.pricing-card.featured {
    border-color: #60a5fa;
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.pricing-header p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.old-price {
    color: #64748b;
    text-decoration: line-through;
    font-size: 1.2rem;
}

.currency {
    font-size: 1.5rem;
    color: #60a5fa;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #f1f5f9;
}

.period {
    color: #94a3b8;
    font-size: 1.2rem;
}

.discount-badge {
    background: #10b981;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

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

.feature-category {
    margin-bottom: 1.5rem;
}

.feature-category h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 0.8rem;
}

.feature-category h4 i {
    font-size: 1.2rem;
}

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

.feature-category li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.feature-category li i {
    color: #10b981;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    color: #60a5fa;
    border: 2px solid #60a5fa;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn-outline:hover {
    background: #60a5fa;
    color: white;
    transform: translateY(-2px);
}

.enterprise-section {
    padding: 80px 0;
    background: #0f172a;
}

.enterprise-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.enterprise-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.enterprise-text p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.enterprise-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
}

.enterprise-features .feature-item i {
    color: #10b981;
}

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

.trusted-section {
    padding: 60px 0;
    background: #1e293b;
    text-align: center;
}

.trusted-section h3 {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-item {
    color: #64748b;
    font-weight: 500;
    padding: 1rem;
    border: 1px solid rgba(96, 165, 250, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo-item:hover {
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #0f172a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid rgba(96, 165, 250, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .enterprise-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .enterprise-features {
        grid-template-columns: 1fr;
    }
    
    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}


 
 / *   A d m i n   b a d g e   * / 
 . a d m i n - b a d g e   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f f d 7 0 0 ,   # f f e d 4 e ) ; 
         c o l o r :   # 3 3 3 ; 
         p a d d i n g :   4 p x   8 p x ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - s i z e :   0 . 8 e m ; 
         f o n t - w e i g h t :   b o l d ; 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   4 p x ; 
         m a r g i n - t o p :   8 p x ; 
 } 
 
 . a d m i n - b a d g e   i   { 
         c o l o r :   # b 8 8 6 0 b ; 
 } 
 
 / *   U p g r a d e   m o d a l   s t y l e s   * / 
 . u p g r a d e - o p t i o n s   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r ; 
         g a p :   2 0 p x ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . u p g r a d e - p l a n   { 
         b o r d e r :   2 p x   s o l i d   # e 0 e 0 e 0 ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         p a d d i n g :   2 0 p x ; 
         t e x t - a l i g n :   c e n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . u p g r a d e - p l a n : h o v e r   { 
         b o r d e r - c o l o r :   # 0 0 7 b f f ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 1 5 ) ; 
 } 
 
 . u p g r a d e - p l a n   h 4   { 
         m a r g i n :   0   0   1 0 p x   0 ; 
         c o l o r :   # 3 3 3 ; 
         f o n t - s i z e :   1 . 2 e m ; 
 } 
 
 . p r i c e   { 
         f o n t - s i z e :   2 e m ; 
         f o n t - w e i g h t :   b o l d ; 
         c o l o r :   # 0 0 7 b f f ; 
         m a r g i n - b o t t o m :   1 5 p x ; 
 } 
 
 . f e a t u r e s   { 
         l i s t - s t y l e :   n o n e ; 
         p a d d i n g :   0 ; 
         m a r g i n :   1 5 p x   0 ; 
         t e x t - a l i g n :   l e f t ; 
 } 
 
 . f e a t u r e s   l i   { 
         p a d d i n g :   5 p x   0 ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   8 p x ; 
 } 
 
 . f e a t u r e s   i   { 
         c o l o r :   # 2 8 a 7 4 5 ; 
         w i d t h :   1 6 p x ; 
 } 
 
 . u p g r a d e - p l a n   . b t n   { 
         w i d t h :   1 0 0 % ; 
         m a r g i n - t o p :   1 5 p x ; 
 } 
 
 / *   R e s p o n s i v e   u p g r a d e   m o d a l   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . u p g r a d e - o p t i o n s   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         } 
 }  
 
 
 / *   A d m i n   b a d g e   * / 
 . a d m i n - b a d g e   { 
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f f d 7 0 0 ,   # f f e d 4 e ) ; 
         c o l o r :   # 3 3 3 ; 
         p a d d i n g :   4 p x   8 p x ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         f o n t - s i z e :   0 . 8 e m ; 
         f o n t - w e i g h t :   b o l d ; 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   4 p x ; 
         m a r g i n - t o p :   8 p x ; 
 } 
 
 . a d m i n - b a d g e   i   { 
         c o l o r :   # b 8 8 6 0 b ; 
 } 
 
 / *   U p g r a d e   m o d a l   s t y l e s   * / 
 . u p g r a d e - o p t i o n s   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r   1 f r   1 f r ; 
         g a p :   2 0 p x ; 
         m a r g i n - b o t t o m :   2 0 p x ; 
 } 
 
 . u p g r a d e - p l a n   { 
         b o r d e r :   2 p x   s o l i d   # e 0 e 0 e 0 ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         p a d d i n g :   2 0 p x ; 
         t e x t - a l i g n :   c e n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . u p g r a d e - p l a n : h o v e r   { 
         b o r d e r - c o l o r :   # 0 0 7 b f f ; 
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 1 5 ) ; 
 } 
 
 . u p g r a d e - p l a n   h 4   { 
         m a r g i n :   0   0   1 0 p x   0 ; 
         c o l o r :   # 3 3 3 ; 
         f o n t - s i z e :   1 . 2 e m ; 
 } 
 
 . p r i c e   { 
         f o n t - s i z e :   2 e m ; 
         f o n t - w e i g h t :   b o l d ; 
         c o l o r :   # 0 0 7 b f f ; 
         m a r g i n - b o t t o m :   1 5 p x ; 
 } 
 
 . f e a t u r e s   { 
         l i s t - s t y l e :   n o n e ; 
         p a d d i n g :   0 ; 
         m a r g i n :   1 5 p x   0 ; 
         t e x t - a l i g n :   l e f t ; 
 } 
 
 . f e a t u r e s   l i   { 
         p a d d i n g :   5 p x   0 ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   8 p x ; 
 } 
 
 . f e a t u r e s   i   { 
         c o l o r :   # 2 8 a 7 4 5 ; 
         w i d t h :   1 6 p x ; 
 } 
 
 . u p g r a d e - p l a n   . b t n   { 
         w i d t h :   1 0 0 % ; 
         m a r g i n - t o p :   1 5 p x ; 
 } 
 
 / *   R e s p o n s i v e   u p g r a d e   m o d a l   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . u p g r a d e - o p t i o n s   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         } 
 }  
 
 
 / *   S u b s c r i p t i o n   b a d g e   s t y l e s   * / 
 . s u b s c r i p t i o n - b a d g e   { 
         p a d d i n g :   4 p x   1 2 p x ; 
         b o r d e r - r a d i u s :   2 0 p x ; 
         f o n t - s i z e :   0 . 8 e m ; 
         f o n t - w e i g h t :   b o l d ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 } 
 
 . s u b s c r i p t i o n - b a d g e . f r e e   { 
         b a c k g r o u n d :   # e 9 e c e f ; 
         c o l o r :   # 6 c 7 5 7 d ; 
 } 
 
 . s u b s c r i p t i o n - b a d g e . s t a r t e r   { 
         b a c k g r o u n d :   # d 4 e d d a ; 
         c o l o r :   # 1 5 5 7 2 4 ; 
 } 
 
 . s u b s c r i p t i o n - b a d g e . g r o w t h   { 
         b a c k g r o u n d :   # c c e 5 f f ; 
         c o l o r :   # 0 0 4 0 8 5 ; 
 } 
 
 . s u b s c r i p t i o n - b a d g e . e n t e r p r i s e   { 
         b a c k g r o u n d :   # f 8 d 7 d a ; 
         c o l o r :   # 7 2 1 c 2 4 ; 
 }  
 / *   S u b s c r i p t i o n   b a d g e   s t y l e s   * /  
 . s u b s c r i p t i o n - b a d g e   {  
         p a d d i n g :   4 p x   1 2 p x ;  
         b o r d e r - r a d i u s :   2 0 p x ;  
         f o n t - s i z e :   0 . 8 e m ;  
         f o n t - w e i g h t :   b o l d ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
 }  
  
 . s u b s c r i p t i o n - b a d g e . f r e e   {  
         b a c k g r o u n d :   # e 9 e c e f ;  
         c o l o r :   # 6 c 7 5 7 d ;  
 }  
  
 . s u b s c r i p t i o n - b a d g e . s t a r t e r   {  
         b a c k g r o u n d :   # d 4 e d d a ;  
         c o l o r :   # 1 5 5 7 2 4 ;  
 }  
  
 . s u b s c r i p t i o n - b a d g e . g r o w t h   {  
         b a c k g r o u n d :   # c c e 5 f f ;  
         c o l o r :   # 0 0 4 0 8 5 ;  
 }  
  
 . s u b s c r i p t i o n - b a d g e . e n t e r p r i s e   {  
         b a c k g r o u n d :   # f 8 d 7 d a ;  
         c o l o r :   # 7 2 1 c 2 4 ;  
 }  
 