﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Colors */
:root {
    --primary: #1d4ed8;
    --primary-dark: #1e3a8a;
    --accent: #0ea5e9;
    --accent-dark: #0284c7;
    --success: #16a34a;
    --purple: #9333ea;
    --orange: #f97316;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.75rem;
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    gap: 0.5rem;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    background-color: var(--accent);
    color: white;
}

    .btn-primary:hover {
        background-color: var(--accent-dark);
    }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-secondary:hover {
        background: white;
        color: var(--primary);
    }

.btn-outline {
    background: var(--gray-200);
    color: var(--gray-800);
}

    .btn-outline:hover {
        background: var(--gray-300);
    }

.btn-accent {
    background-color: var(--accent);
    color: white;
}

    .btn-accent:hover {
        background-color: var(--accent-dark);
    }

.full-width {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .logo i {
        font-size: 1.5rem;
        color: var(--primary);
    }

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.slogan {
    font-size: 0.875rem;
    color: var(--gray-600);
    display: none;
}

@media (min-width: 768px) {
    .slogan {
        display: block;
    }
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.login-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .login-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
    }

@media (min-width: 1024px) {
    .desktop-menu {
        display: flex;
    }
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.2s;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

    .nav-link:hover {
        color: var(--primary);
    }

.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 12rem;
    background: white;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.dropdown-content a {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.875rem;
}

    .dropdown-content a:hover {
        background: var(--gray-50);
    }

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--gray-700);
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
}

    .mobile-menu.active {
        display: block;
    }

.mobile-nav-link {
    display: block;
    width: 100%;
    padding: 0.5rem 0;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.2s;
}

    .mobile-nav-link:hover {
        color: var(--primary);
    }

.mobile-login-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
}

    .mobile-login-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
    }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 50%, var(--accent) 100%);
    color: white;
    padding: 5rem 0;
}

.hero-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-title {
    margin-bottom: 1.5rem;
}

.accent-text {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #dbeafe;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #bfdbfe;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.hero-visual {
    text-align: center;
}

.hero-image {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 32rem;
    margin: 0 auto;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.icon-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    padding: 1rem;
    font-size: 1.5rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-pulse-delay {
    animation: pulse 2s infinite 0.5s;
}

.animate-pulse-delay-2 {
    animation: pulse 2s infinite 1s;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        color: var(--gray-900);
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.25rem;
        color: var(--gray-600);
        max-width: 48rem;
        margin: 0 auto;
    }

/* Products Section */
.products {
    background: white;
}

.products-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-card {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 2rem;
    transition: box-shadow 0.3s;
}

    .product-card:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

.product-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.product-icon {
    border-radius: 50%;
    padding: 1rem;
    color: white;
    font-size: 1.5rem;
}

    .product-icon.primary {
        background-color: var(--primary);
    }

    .product-icon.accent {
        background-color: var(--accent);
    }

.product-header h3 {
    color: var(--gray-900);
}

.product-header p {
    color: var(--gray-600);
    margin: 0;
}

.product-tagline {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

    .feature-item i {
        color: var(--success);
        margin-top: 0.25rem;
    }

    .feature-item h4 {
        color: var(--gray-900);
        font-weight: 600;
    }

    .feature-item p {
        color: var(--gray-600);
        margin: 0;
    }

/* Features Section */
.features {
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

    .feature-icon.primary {
        background-color: var(--primary);
    }

    .feature-icon.success {
        background-color: var(--success);
    }

    .feature-icon.accent {
        background-color: var(--accent);
    }

.feature-card h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-600);
    white-space: pre-line;
}

/* Benefits Section */
.benefits {
    background: white;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

    .benefit-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .benefit-card.blue {
        background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    }

    .benefit-card.green {
        background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    }

    .benefit-card.purple {
        background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    }

    .benefit-card.orange {
        background: linear-gradient(135deg, #fed7aa, #fdba74);
    }

.benefit-icon {
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.125rem;
}

    .benefit-icon.primary {
        background-color: var(--primary);
    }

    .benefit-icon.success {
        background-color: var(--success);
    }

    .benefit-icon.purple {
        background-color: var(--purple);
    }

    .benefit-icon.orange {
        background-color: var(--orange);
    }

.benefit-card h3 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.benefit-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
    white-space: pre-line;
}

/* Testimonials Section */
.testimonials {
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
}

    .testimonial-card h3 {
        color: var(--gray-900);
        margin-bottom: 1.5rem;
    }

.case-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.case-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check-icon {
    background-color: var(--success);
    color: white;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

.case-item h4 {
    color: var(--gray-900);
    font-weight: 600;
}

.case-item p {
    color: var(--gray-600);
    margin: 0;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    border-radius: 0.5rem;
    padding: 1rem;
}

    .review-item.blue {
        background: #dbeafe;
    }

    .review-item.green {
        background: #dcfce7;
    }

.stars {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    gap: 0.25rem;
}

    .stars i {
        color: #fbbf24;
    }

    .stars span {
        margin-left: 0.5rem;
        font-size: 0.875rem;
        color: var(--gray-600);
    }

.review-item p {
    color: var(--gray-700);
    font-style: italic;
    margin: 0;
}

/* Pricing Section */
.pricing {
    background: white;
}

.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.3s;
    position: relative;
}

    .pricing-card:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .pricing-card.popular {
        background: var(--primary);
        color: white;
        transform: scale(1.05);
    }

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-bottom: 1rem;
}

.pricing-card.popular h3 {
    color: white;
}

.price {
    margin-bottom: 1.5rem;
}

    .price span:first-child {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .price span:last-child {
        color: var(--gray-600);
    }

.pricing-card.popular .price span:last-child {
    color: #bfdbfe;
}

.features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.75rem;
}

    .feature i {
        color: var(--success);
    }

.pricing-card.popular .feature i {
    color: var(--accent);
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
}

    .pricing-footer p {
        color: var(--gray-600);
        margin-bottom: 1.5rem;
    }

/* Contact Section */
.contact {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form-container {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
}

    .contact-form-container h3 {
        color: var(--gray-900);
        margin-bottom: 1.5rem;
    }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        color: var(--gray-700);
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        border: 1px solid var(--gray-300);
        border-radius: 0.375rem;
        font-size: 1rem;
        transition: border-color 0.2s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
        }

.company-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
}

    .info-card h3 {
        color: var(--gray-900);
        margin-bottom: 1.5rem;
    }

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

    .info-item i {
        color: var(--primary);
        margin-top: 0.25rem;
    }

    .info-item h4 {
        color: var(--gray-900);
        font-weight: 600;
    }

    .info-item p {
        color: var(--gray-600);
        margin: 0;
    }

.consultation-card {
    background: var(--primary);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
}

    .consultation-card h3 {
        margin-bottom: 1rem;
    }

    .consultation-card p {
        color: #bfdbfe;
        margin-bottom: 1.5rem;
    }

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-section.company {
    grid-column: span 2;
}

@media (min-width: 1024px) {
    .footer-section.company {
        grid-column: span 1;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

    .footer-logo i {
        font-size: 1.5rem;
        color: var(--primary);
    }

    .footer-logo span {
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
    }

.footer-section p {
    color: var(--gray-400);
    margin-bottom: 1rem;
}

.company-details p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

    .footer-links a {
        color: var(--gray-400);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: white;
        }

.social-links {
    display: flex;
    gap: 1rem;
}

    .social-links a {
        color: var(--gray-400);
        font-size: 1.25rem;
        transition: color 0.2s;
    }

        .social-links a:hover {
            color: white;
        }

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    margin-top: 2rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

    .footer-legal a {
        color: var(--gray-400);
        text-decoration: none;
        font-size: 0.875rem;
        transition: color 0.2s;
    }

        .footer-legal a:hover {
            color: white;
        }

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    min-width: 20rem;
    transform: translateX(calc(100% + 8rem));
    transition: transform 0.3s;
    z-index: 1000;
}

    .toast.show {
        transform: translateX(0);
    }

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.toast-icon {
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.toast.success .toast-icon {
    color: var(--success);
}

.toast.error .toast-icon {
    color: #ef4444;
}

.toast-text {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    color: var(--gray-900);
}

.toast-description {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.toast-close {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.25rem;
    margin-left: 0.5rem;
}

    .toast-close:hover {
        color: var(--gray-600);
    }

/* Login Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.modal-content {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

    .modal-header h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--gray-900);
        margin: 0;
    }

.modal-close {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s;
    font-size: 1.25rem;
}

    .modal-close:hover {
        color: var(--gray-600);
        background: var(--gray-100);
    }

.login-form {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--gray-700);
        margin-bottom: 0.5rem;
    }

    .form-group input {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid var(--gray-300);
        border-radius: 0.375rem;
        font-size: 1rem;
        transition: all 0.2s;
        background: white;
    }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
        }

.login-submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .login-submit-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
    }

.login-options {
    text-align: center;
    margin-top: 1rem;
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

    .forgot-password:hover {
        color: var(--primary-dark);
        text-decoration: underline;
    }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }

    section {
        padding: 3rem 0;
    }

    .hero-buttons {
        align-items: stretch;
    }

    .btn {
        padding: 1rem 1.5rem;
    }
}
