/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff; /* Changed from #333 */
    background-color: #101615; /* Changed from default */
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff; /* Changed from #2d3748 */
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #8a8a8a; /* Changed from #666 */
}

a {
    color: #00e0c6; /* Changed from #667eea */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00b8a9; /* Changed from #5a67d8 */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #00e0c6; /* Changed from linear-gradient */
    color: #101615; /* Changed from white */
}

.btn-primary:hover {
    background: #00b8a9; /* Changed from #5a67d8 */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 224, 198, 0.3); /* Changed shadow color */
}

.btn-secondary {
    background: transparent;
    color: #00e0c6; /* Changed from #667eea */
    border: 2px solid #00e0c6; /* Changed from #667eea */
}

.btn-secondary:hover {
    background: #00e0c6; /* Changed from #667eea */
    color: #101615; /* Changed from white */
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(16, 22, 21, 0.95); /* Changed from rgba(255, 255, 255, 0.95) */
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #00e0c6; /* New */
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(16, 22, 21, 0.98); /* Changed from rgba(255, 255, 255, 0.98) */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00e0c6; /* Changed from #667eea */
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #8a8a8a; /* Changed from #4a5568 */
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #00e0c6; /* Changed from #667eea */
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #00e0c6; /* Changed from #667eea */
    border-radius: 1px;
}

.btn-register {
    background: #00e0c6; /* Changed from linear-gradient */
    color: #101615; /* Changed from white */
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-register:hover {
    background: #00b8a9; /* Changed from #5a67d8 */
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #00e0c6; /* Changed from #4a5568 */
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #101615;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    z-index: 999;
}

.nav-mobile.active {
    left: 0;
}

.nav-mobile .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid #1a2423;
}

.nav-mobile .nav-link:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #101615 0%, #1a2423 100%); /* Changed from light gradient */
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before { /* New */
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 224, 198, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff; /* Changed from #2d3748 */
    background: linear-gradient(135deg, #00e0c6 0%, #00b8a9 100%); /* Changed from light gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #8a8a8a; /* Changed from #4a5568 */
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-img {
    text-align: center;
    position: relative;
}

.hero-img img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 224, 198, 0.2); /* Changed shadow color */
    border: 2px solid #00e0c6; /* New */
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #181f1e; /* Changed from white */
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff; /* Changed from #2d3748 */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #1a2423; /* Changed from white */
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Changed shadow color */
    border: 1px solid #00e0c6; /* Changed from #f7fafc */
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 224, 198, 0.2); /* Changed shadow color */
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #00e0c6; /* Changed from linear-gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #101615; /* Changed from white */
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff; /* Changed from #2d3748 */
}

.feature-card p {
    color: #8a8a8a; /* Changed from #718096 */
    line-height: 1.6;
}

/* ===== About Page Sections ===== */
/* Mission */
.mission-section {
    padding: 80px 0;
    background: #181f1e;
}

.mission-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text h2 {
    color: #00e0c6;
    margin-bottom: 1rem;
}

.mission-text p {
    color: #8a8a8a;
}

.mission-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 224, 198, 0.15);
    border: 1px solid rgba(0, 224, 198, 0.3);
}

/* Values */
.values-section {
    padding: 80px 0;
    background: #101615;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #181f1e;
    border: 1px solid #1a2423;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 224, 198, 0.18);
}

.value-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #00e0c6;
    color: #101615;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i { font-size: 1.6rem; }

.value-card h3 { color: #fff; margin-bottom: 0.5rem; }
.value-card p { color: #8a8a8a; }

/* Story */
.story-section {
    padding: 80px 0;
    background: #181f1e;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.story-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 224, 198, 0.15);
    border: 1px solid rgba(0, 224, 198, 0.3);
}

.story-text h2 {
    color: #00e0c6;
    margin-bottom: 1rem;
}

.story-text p { color: #8a8a8a; }

/* Team */
.team-section {
    padding: 80px 0;
    background: #101615;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #181f1e;
    border: 1px solid #1a2423;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
}

.member-photo { margin-bottom: 1rem; }
.member-img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(0, 224, 198, 0.2);
}

.member-role {
    color: #00e0c6;
    margin: 0.25rem 0 0.5rem;
    font-weight: 500;
}

.member-bio { color: #8a8a8a; }

/* About Stats */
.about-stats {
    padding: 80px 0;
    background: #181f1e;
}

.about-stats .stat-item {
    background: #101615;
    border: 1px solid #1a2423;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

/* CTA */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #00e0c6 0%, #00b8a9 100%);
    color: #101615;
    text-align: center;
}

.cta-content h2 { color: #101615; margin-bottom: 0.5rem; }
.cta-content p { color: rgba(16, 22, 21, 0.9); margin-bottom: 1rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Services Page ===== */
/* Main services hero */
.main-services {
    padding: 80px 0;
    background: #101615;
}

.service-hero {
    background: linear-gradient(135deg, rgba(0,224,198,0.12), rgba(0,184,169,0.06));
    border: 1px solid rgba(0,224,198,0.25);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.service-hero h2 { color: #00e0c6; margin-bottom: 0.75rem; }
.service-hero p { color: #8a8a8a; }

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #181f1e;
    border: 1px solid #1a2423;
    border-radius: 20px;
    padding: 1.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card.large {
    grid-column: span 2;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 224, 198, 0.18);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #00e0c6;
    color: #101615;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i { font-size: 1.5rem; }
.service-card h3 { color: #fff; margin-bottom: 0.5rem; }
.service-card p { color: #8a8a8a; margin-bottom: 0.75rem; }

.service-features { list-style: none; margin: 0 0 1rem 0; padding: 0; }
.service-features li { color: #8a8a8a; margin: 0.25rem 0; }

.service-cta { margin-top: 0.75rem; }

/* Advanced features */
.advanced-features { padding: 80px 0; background: #181f1e; }
.features-showcase { display: grid; gap: 2rem; }

.feature-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
    background: #101615;
    border: 1px solid #1a2423;
    border-radius: 20px;
    padding: 1.5rem;
}

.feature-item.reverse { grid-template-columns: 1fr 1.2fr; }
.feature-content h3 { color: #00e0c6; margin-bottom: 0.5rem; }
.feature-content p { color: #8a8a8a; margin-bottom: 0.75rem; }

.feature-highlights { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.highlight {
    background: rgba(0,224,198,0.15);
    color: #00e0c6;
    border: 1px solid rgba(0,224,198,0.25);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.9rem;
}

.feature-img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(0,224,198,0.25);
}

/* Pricing */
.pricing-section { padding: 80px 0; background: #101615; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

.pricing-card {
    background: #181f1e;
    border: 1px solid #1a2423;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
}

.pricing-card .price { color: #00e0c6; font-size: 2rem; font-weight: 700; margin: 0.25rem 0 1rem; }
.pricing-card .price span { font-size: 0.9rem; color: #8a8a8a; }

.pricing-card .pricing-features { list-style: none; padding: 0; margin: 0 0 1rem 0; text-align: left; }
.pricing-card .pricing-features li { color: #8a8a8a; margin: 0.35rem 0; }

.pricing-card.featured {
    border-color: #00e0c6;
    box-shadow: 0 18px 36px rgba(0, 224, 198, 0.18);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    background: #00e0c6;
    color: #101615;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== Contact Page ===== */
.contact-section { padding: 80px 0; background: #101615; }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.contact-info {
    background: #181f1e;
    border: 1px solid #1a2423;
    border-radius: 20px;
    padding: 1.75rem;
}

.contact-info h2 { color: #00e0c6; margin-bottom: 0.75rem; }
.contact-info p { color: #8a8a8a; }

.contact-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.contact-method { display: flex; gap: 0.75rem; align-items: flex-start; background: #101615; border: 1px solid #1a2423; padding: 1rem; border-radius: 16px; }
.method-icon { width: 40px; height: 40px; border-radius: 50%; background: #00e0c6; color: #101615; display: flex; align-items: center; justify-content: center; }
.method-details h3 { color: #fff; margin-bottom: 0.25rem; }
.method-details p { color: #8a8a8a; }

.social-contact { margin-top: 1.25rem; }
.social-contact h3 { color: #fff; margin-bottom: 0.5rem; }
.social-contact .social-links { gap: 0.75rem; }

.contact-form-container { background: #181f1e; border: 1px solid #1a2423; border-radius: 20px; padding: 1.75rem; }
.form-header h2 { color: #00e0c6; margin-bottom: 0.25rem; }
.form-header p { color: #8a8a8a; margin-bottom: 1rem; }

.contact-form .form-group label { color: #00e0c6; font-weight: 500; display: block; margin-bottom: 0.35rem; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; background: #1a2423; border: 1px solid #00e0c6; color: #fff; border-radius: 12px; padding: 10px 12px; }
.contact-form textarea { resize: vertical; }
.contact-form .checkbox-label { color: #8a8a8a; display: inline-flex; align-items: center; gap: 0.5rem; }
.submit-btn { margin-top: 0.75rem; }

/* FAQ */
.faq-section { padding: 80px 0; background: #181f1e; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.faq-item { background: #101615; border: 1px solid #1a2423; border-radius: 16px; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1rem; cursor: pointer; }
.faq-question h3 { color: #fff; font-size: 1rem; }
.faq-question i { color: #00e0c6; transition: transform 0.2s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; padding: 0 1rem; }
.faq-item.active .faq-answer { max-height: 200px; padding-bottom: 1rem; }
.faq-answer p { color: #8a8a8a; }

/* Office */
.office-section { padding: 80px 0; background: #101615; }
.office-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.office-info h3 { color: #00e0c6; margin-bottom: 0.5rem; }
.office-info p { color: #8a8a8a; margin-bottom: 0.5rem; }
.map-img { width: 100%; border-radius: 16px; border: 1px solid rgba(0,224,198,0.25); }

/* Responsive for Contact */
@media (max-width: 900px) {
  .contact-content, .office-content { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
}

/* ===== Login Page ===== */
.login-section { padding: 80px 0; background: #101615; }
.login-container { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }

.login-form-container { background: #181f1e; border: 1px solid #1a2423; border-radius: 20px; padding: 1.75rem; }
.login-form-container .form-header h1 { color: #00e0c6; margin-bottom: 0.25rem; }
.login-form-container .form-header p { color: #8a8a8a; margin-bottom: 1rem; }

.input-group { display: flex; align-items: center; gap: 0.5rem; background: #1a2423; border: 1px solid #00e0c6; border-radius: 12px; padding: 10px 12px; }
.input-group i { color: #00e0c6; }
.input-group input { flex: 1; background: transparent; border: 0; color: #fff; outline: none; }
.password-toggle { background: transparent; border: 0; color: #8a8a8a; cursor: pointer; }

.form-options { display: flex; justify-content: space-between; align-items: center; margin: 0.5rem 0 1rem; }
.forgot-password { color: #00e0c6; }

.divider { display: flex; align-items: center; justify-content: center; gap: 0.75rem; color: #8a8a8a; margin: 1rem 0; }
.divider::before, .divider::after { content: ""; display: block; height: 1px; background: #1a2423; width: 100%; max-width: 120px; }

.btn-social { display: flex; gap: 0.5rem; align-items: center; justify-content: center; width: 100%; margin-bottom: 0.5rem; background: #181f1e; border: 1px solid #1a2423; color: #fff; }
.btn-google { border-color: #db4437; }
.btn-apple { border-color: #999; }

.form-footer { margin-top: 1rem; color: #8a8a8a; }
.form-footer a { color: #00e0c6; }

.login-info { background: #181f1e; border: 1px solid #1a2423; border-radius: 20px; padding: 1.75rem; }
.info-content h2 { color: #00e0c6; margin-bottom: 1rem; }
.benefits-list { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
.benefit-item { display: flex; gap: 0.75rem; background: #101615; border: 1px solid #1a2423; padding: 0.75rem 1rem; border-radius: 12px; }
.benefit-icon { width: 36px; height: 36px; border-radius: 50%; background: #00e0c6; color: #101615; display: flex; align-items: center; justify-content: center; }
.benefit-text h3 { color: #fff; font-size: 1rem; margin-bottom: 0.25rem; }
.benefit-text p { color: #8a8a8a; }

.stats-preview { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 1rem; }
.stats-preview .stat-item { background: #101615; border: 1px solid #1a2423; border-radius: 16px; padding: 1rem; text-align: center; }

@media (max-width: 900px) {
  .login-container { grid-template-columns: 1fr; }
}

/* ===== Global Live Chat Widget ===== */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 2000; }
.chat-button { width: 56px; height: 56px; border-radius: 50%; background: #00e0c6; color: #101615; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(0,224,198,0.35); cursor: pointer; }
.chat-button i { font-size: 22px; }

.chat-popup { position: fixed; right: 24px; bottom: 90px; width: 320px; background: #181f1e; border: 1px solid #1a2423; border-radius: 16px; box-shadow: 0 18px 36px rgba(0,0,0,0.45); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.2s ease; z-index: 2000; }
.chat-popup.active { opacity: 1; visibility: visible; transform: translateY(0); }

.chat-header { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: #101615; border-bottom: 1px solid #1a2423; }
.chat-header h3 { color: #00e0c6; font-size: 1rem; }
.close-chat { background: transparent; border: 0; color: #8a8a8a; font-size: 20px; cursor: pointer; }

.chat-messages { max-height: 260px; overflow-y: auto; padding: 12px; display: grid; gap: 8px; }
.message { padding: 8px 10px; border-radius: 10px; font-size: 0.95rem; line-height: 1.4; }
.message.bot { background: #101615; color: #8a8a8a; border: 1px solid #1a2423; }
.message.user { background: rgba(0,224,198,0.15); color: #00e0c6; border: 1px solid rgba(0,224,198,0.25); justify-self: end; }

.chat-input { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid #1a2423; background: #181f1e; }
.chat-input input { flex: 1; background: #1a2423; border: 1px solid #00e0c6; color: #fff; border-radius: 10px; padding: 8px 10px; }
.chat-input button { background: #00e0c6; color: #101615; border: 0; border-radius: 10px; padding: 8px 10px; cursor: pointer; }

/* ===== Login: Security Features ===== */
.security-section { padding: 80px 0; background: #181f1e; }
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}
.security-feature {
    background: #101615;
    border: 1px solid #1a2423;
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.security-feature .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #00e0c6;
    color: #101615;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}
.security-feature .feature-icon i { font-size: 1.25rem; }
.security-feature h3 { color: #fff; font-size: 1.05rem; margin: 0.25rem 0; }
.security-feature p { color: #8a8a8a; line-height: 1.5; }

@media (max-width: 768px) {
  .security-features { grid-template-columns: 1fr; }
  .security-feature { align-items: center; text-align: center; }
}

/* ===== Register Page ===== */
.register-section { padding: 80px 0; background: #101615; }
.register-container { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }

.register-form-container { background: #181f1e; border: 1px solid #1a2423; border-radius: 20px; padding: 1.75rem; }
.register-form-container .form-header h1 { color: #00e0c6; margin-bottom: 0.25rem; }
.register-form-container .form-header p { color: #8a8a8a; margin-bottom: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.register-benefits { background: #181f1e; border: 1px solid #1a2423; border-radius: 20px; padding: 1.75rem; }
.register-benefits h2 { color: #00e0c6; margin-bottom: 1rem; }
.benefit-content h3 { color: #fff; font-size: 1rem; margin-bottom: 0.25rem; }
.benefit-content p { color: #8a8a8a; }
.terms-link, .privacy-link { color: #00e0c6; }

@media (max-width: 900px) {
  .register-container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* App Preview Section */
.app-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, #00e0c6 0%, #00b8a9 100%); /* Changed from light gradient */
    color: #101615; /* Changed from white */
}

.app-preview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #101615; /* Changed from white */
}

.app-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(16, 22, 21, 0.9); /* Changed from rgba(255, 255, 255, 0.9) */
    line-height: 1.6;
}

/* App buttons container */
.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-btn {
    background: #101615; /* Changed from rgba(255, 255, 255, 0.2) */
    color: #00e0c6; /* Changed from white */
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.app-btn:hover {
    background: #181f1e; /* Changed from rgba(255, 255, 255, 0.3) */
    transform: translateY(-2px);
}

.mockup-img {
    text-align: center;
}

.mockup-img img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(16, 22, 21, 0.3); /* Changed shadow color */
}

/* Statistics Section */
.stats {
    padding: 80px 0;
    background: #1a2423; /* Changed from #f7fafc */
}

.stats-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card { /* New */
    background: #181f1e;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #00e0c6;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00e0c6; /* Changed from #667eea */
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #8a8a8a; /* Changed from #718096 */
    font-weight: 500;
}

/* Footer */
.footer {
    background: #101615; /* Changed from #2d3748 */
    color: #8a8a8a; /* Changed from white */
    padding: 60px 0 20px;
    border-top: 1px solid #00e0c6; /* New */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 { /* Changed to h3 */
    color: #00e0c6; /* Changed from white */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #8a8a8a; /* Changed from #a0aec0 */
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: #00e0c6; /* Changed from #667eea */
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #00e0c6; /* Changed from rgba(255, 255, 255, 0.1) */
    color: #101615; /* Changed from white */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 224, 198, 0.3); /* Changed shadow color */
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1a2423; /* Changed from #4a5568 */
    color: #8a8a8a; /* Changed from #a0aec0 */
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #101615 0%, #1a2423 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #8a8a8a;
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card {
    background: #181f1e;
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #1a2423;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-title {
    color: #00e0c6;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: #8a8a8a;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: #00e0c6;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: #1a2423;
    border: 1px solid #00e0c6;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #00b8a9;
    box-shadow: 0 0 0 3px rgba(0, 224, 198, 0.1);
}

.form-input::placeholder {
    color: #8a8a8a;
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background: #181f1e;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #00e0c6;
}

.dashboard-card h3 {
    color: #00e0c6;
    margin-bottom: 1rem;
}

.dashboard-card p {
    color: #8a8a8a;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-active {
    background: rgba(0, 224, 198, 0.2);
    color: #00e0c6;
    border: 1px solid #00e0c6;
}

.status-completed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid #10b981;
}

.status-pending {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border: 1px solid #f59e0b;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Background Circles */
.background-circles {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.circle {
    position: absolute;
    border: 2px solid rgba(0, 224, 198, 0.1);
    border-radius: 50%;
}

.circle-1 {
    width: 340px;
    height: 340px;
    top: -170px;
    right: -170px;
}

.circle-2 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
}

.circle-3 {
    width: 750px;
    height: 750px;
    top: -375px;
    right: -375px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .nav-mobile {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .app-preview-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
}
