/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== UTILITY CLASSES ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #111827;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.btn-secondary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

.btn-outline {
    background: transparent;
    color: #6366f1;
    border: 2px solid #e5e7eb;
}

.btn-outline:hover {
    background: #f9fafb;
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.15);
    color: #6366f1;
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* ===== HEADER / NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-logo i {
    color: #6366f1;
    font-size: 1.8rem;
}

.navbar-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: #6b7280;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #6366f1;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1f2937;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111827;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.dashboard-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.3);
}

.dashboard-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ===== TRUST STRIP ===== */
.trust-strip {
    background: #f9fafb;
    padding: 40px 2rem;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-text {
    text-align: center;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 1rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-placeholder {
    padding: 15px 25px;
    background: white;
    border-radius: 8px;
    font-weight: 600;
    color: #9ca3af;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.logo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.logo-placeholder:hover {
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
    background: white;
}

.logo-placeholder:hover::before {
    left: 0;
}

.logo-placeholder > * {
    position: relative;
    z-index: 1;
}

/* ===== SERVICES SECTION ===== */
.services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.service-card:hover h3 {
    color: #6366f1;
}

.service-card i {
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #8b5cf6;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #111827;
}

.service-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* ===== FEATURES SECTION ===== */
.features {
    background: #f9fafb;
    padding: 100px 2rem;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-illustration {
    width: 300px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-illustration:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.25);
}

.feature-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.features-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #111827;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-item {
    cursor: pointer;
}

.feature-item i {
    color: #10b981;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item:hover i {
    transform: scale(1.2);
    color: #6366f1;
}

.feature-item:hover h4 {
    color: #6366f1;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #111827;
}

.feature-item p {
    color: #6b7280;
}

/* ===== PROCESS SECTION ===== */
.process {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 2rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.process-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.process-card:hover .process-number {
    opacity: 0.4;
    transform: scale(1.1);
}

.process-card:hover h3 {
    color: #6366f1;
}

.process-number {
    transition: all 0.3s ease;
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    color: #6366f1;
    opacity: 0.2;
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #111827;
}

.process-card p {
    color: #6b7280;
    line-height: 1.8;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: #f9fafb;
    padding: 100px 2rem;
}

.testimonials .section-header {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
}

.testimonial-card {
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-card:hover .stars i {
    color: #fbbf24;
    transform: scale(1.1);
}

.testimonial-card .stars i {
    transition: all 0.3s ease;
}

.stars {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.stars i {
    margin-right: 3px;
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: #111827;
}

.testimonial-author p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 2rem;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-text {
    margin-top: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.1);
    background: white;
    border-color: #6366f1;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-number {
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-illustration {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.about-illustration.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-illustration:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.25);
}

.about-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-values {
    margin-top: 60px;
}

.about-values h3 {
    text-align: center;
    font-size: 2rem;
    color: #111827;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.value-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
}

.value-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.value-card:hover h4 {
    color: #6366f1;
}

.value-card i {
    transition: all 0.3s ease;
}

.value-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 12px;
}

.value-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 100px 2rem;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta .btn-primary {
    background: white;
    color: #6366f1;
}

.cta .btn-primary:hover {
    background: #f9fafb;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* ===== CONTACT SECTION ===== */
.contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* ===== LEGAL PAGES (PRIVACY / TERMS) ===== */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 2rem 100px;
}

.legal-header {
    text-align: center;
    margin-bottom: 40px;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.08);
    color: #4f46e5;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.legal-header h1 {
    font-size: 2.4rem;
    margin-bottom: 12px;
    color: #111827;
}

.legal-header p {
    color: #6b7280;
    font-size: 1rem;
}

.legal-meta {
    margin-top: 14px;
    font-size: 0.9rem;
    color: #9ca3af;
}

.legal-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 32px 28px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    animation: fadeInUp 0.6s ease forwards;
}

.legal-card h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #111827;
}

.legal-card h3 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 8px;
    color: #111827;
}

.legal-card p {
    color: #4b5563;
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-card ul {
    margin-left: 1.2rem;
    margin-bottom: 12px;
    color: #4b5563;
    font-size: 0.96rem;
}

.legal-card li {
    margin-bottom: 6px;
}

.legal-back {
    margin-top: 32px;
    text-align: center;
}

.legal-back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #6366f1;
}

.legal-back a i {
    transition: transform 0.3s ease;
}

.legal-back a:hover i {
    transform: translateX(-3px);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #111827;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.error-message {
    color: #ef4444;
    font-size: 0.85rem;
    display: block;
    margin-top: 5px;
    min-height: 20px;
}

.success-message {
    background: #ecfdf5;
    color: #065f46;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.success-message i {
    color: #10b981;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #111827;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    color: #6366f1;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #111827;
}

.info-item p,
.info-item a {
    color: #6b7280;
}

.info-item a:hover {
    color: #6366f1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    transition: all 0.3s ease;
}

.social-links a i {
    font-size: 18px;
}

.social-links a:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 2rem 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4,
.footer-section h5 {
    margin-bottom: 15px;
    color: white;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #d1d5db;
}

.footer-section ul li a:hover {
    color: #6366f1;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a i {
    font-size: 18px;
}

.footer-social a:hover {
    background: #6366f1;
    transform: translateY(-3px);
}

/* Newsletter in footer */
.footer-form {
    margin-top: 12px;
}

.footer-input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-input-group input[type="email"] {
    flex: 1;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #374151;
    background: #111827;
    color: #e5e7eb;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-input-group input[type="email"]:hover {
    border-color: #6366f1;
    background: #1f2937;
}

.footer-input-group input[type="email"]:focus {
    outline: none;
    border-color: #6366f1;
    background: #1f2937;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.footer-input-group input[type="email"]::placeholder {
    color: #6b7280;
}

.footer-form small {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #374151;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: #9ca3af;
}

.footer-bottom-left p {
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
}

.footer-divider {
    color: #4b5563;
}

.footer-bottom a {
    color: #9ca3af;
    position: relative;
    padding-bottom: 2px;
}

.footer-bottom a:hover {
    color: #e5e7eb;
}

.footer-bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transition: width 0.3s ease;
}

.footer-bottom a:hover::after {
    width: 100%;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes growIn {
    from {
        height: 0;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .navbar-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 60px 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-image {
        height: 300px;
    }

    .dashboard-placeholder {
        height: 300px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .services {
        padding: 60px 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-illustration {
        width: 250px;
        height: 250px;
    }

    .features-content h2 {
        font-size: 1.8rem;
    }

    .process {
        padding: 60px 1.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .cta {
        padding: 60px 1rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .trust-logos {
        flex-direction: column;
        align-items: center;
    }

    .navbar-container {
        padding: 1rem 1.5rem;
    }

    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid #f3f4f6;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero {
        padding: 40px 1rem;
    }

    .hero-image {
        height: 200px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .testimonials-grid,
    .services-grid,
    .values-grid {
        gap: 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 60px 1rem;
    }

    .cta h2 {
        font-size: 1.3rem;
    }

    .navbar-logo span {
        display: none;
    }

    .value-card,
    .service-card,
    .testimonial-card {
        padding: 30px 20px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }
}
