/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Up+ Branding */
    /* Official brand colors */
    --primary-color: #f59100; /* Orange - primary color for buttons/links on white */
    --primary-dark: #d17d00; /* Darker orange for hover */
    --primary-light: #ffa533; /* Lighter orange for accents */
    --accent-light-green: #9fe870; /* Light green for dark backgrounds */
    --accent-light-green-dark: #8dd85f; /* Darker light green for hover on dark */
    --brand-dark-green: #163300; /* Dark green background */
    --brand-green: #1f4d00; /* Slightly lighter dark green for gradients */
    --secondary-color: #2C3E50;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #F8F9FA;
    --bg-white: #fff;
    --white: #fff;
    --border-color: #E0E0E0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Ensure Inter font is used everywhere */
* {
    font-family: var(--font-family);
}

/* Explicitly set for form elements */
input,
textarea,
select,
button {
    font-family: var(--font-family);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.lead {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-hover);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 50px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: color 0.3s ease;
    padding: var(--spacing-xs) 0;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-link.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.nav-link.cta-button:hover {
    background-color: var(--primary-dark);
    color: white;
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    padding: calc(80px + var(--spacing-xl)) var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, var(--brand-dark-green) 0%, var(--brand-green) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero .hero-title,
.hero .hero-subtitle {
    color: white;
}

.hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.hero .btn-primary {
    background-color: var(--accent-light-green);
    color: var(--brand-dark-green);
    font-weight: 700;
}

.hero .btn-primary:hover {
    background-color: var(--accent-light-green-dark);
    color: var(--brand-dark-green);
}

.hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
}

.hero .btn-secondary:hover {
    background-color: white;
    color: var(--brand-dark-green);
    border-color: white;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

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

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
}

.placeholder-content {
    color: var(--brand-dark-green);
    font-size: 1.5rem;
    font-weight: 600;
}

/* Section Styles */
.section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.125rem;
}

/* About Section */
.about-section {
    background-color: var(--bg-white);
}

.subsidiary-note {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

.up-coop-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.up-coop-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.benefit-card {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    background-color: var(--bg-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.benefit-icon i {
    font-size: 3rem;
}

.benefit-card h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* Models Section */
.models-section {
    background-color: var(--bg-light);
}

.models-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.model-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}

.model-card:hover {
    box-shadow: var(--shadow-hover);
}

.model-header {
    background: linear-gradient(135deg, var(--brand-dark-green) 0%, var(--brand-green) 100%);
    padding: var(--spacing-md);
    color: var(--accent-light-green);
}

.model-header h3 {
    color: var(--accent-light-green);
    margin: 0;
    font-weight: 700;
}

.model-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
}

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

.model-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.model-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.detail-section h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.detail-section ul {
    list-style: none;
    padding-left: 0;
}

.detail-section li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--text-light);
}

.detail-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Success Section */
.success-section {
    background-color: var(--bg-white);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.success-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.country-flag {
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: center;
    align-items: center;
}

.country-flag .fi {
    font-size: 4rem;
    width: 4rem;
    height: 3rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.success-card h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: var(--spacing-sm);
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.live-since {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.campaign-examples {
    text-align: left;
    margin-top: var(--spacing-md);
}

.campaign-examples h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.campaign-examples ul {
    list-style: none;
    padding-left: 0;
}

.campaign-examples li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    font-size: 0.9rem;
    color: var(--text-light);
}

.campaign-examples li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Features Section */
.features-section {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background-color: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.feature-icon i {
    font-size: 3rem;
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* Redemption Section */
.redemption-section {
    background-color: var(--bg-white);
}

.redemption-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.redemption-features {
    margin: var(--spacing-md) 0;
}

.redemption-feature {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
}

.check-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.check-icon i {
    font-size: 1.5rem;
}

.redemption-feature h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.redemption-feature p {
    margin: 0;
    font-size: 0.95rem;
}

.redemption-benefits {
    margin-top: var(--spacing-md);
}

.redemption-benefits h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.redemption-benefits ul {
    list-style: none;
    padding-left: 0;
}

.redemption-benefits li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--text-light);
}

.redemption-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

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

.redemption-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-hover);
    object-fit: cover;
}

/* How It Works Section */
.how-it-works-section {
    background-color: var(--bg-light);
}

.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    width: 100%;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 100%;
    text-align: center;
    padding: var(--spacing-md);
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-sm);
    box-shadow: 0 4px 10px rgba(245, 145, 0, 0.3);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon i {
    font-size: 2.5rem;
}

.step-content h3 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.step-content p {
    font-size: 0.95rem;
    margin: 0;
}

.process-arrow {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.process-arrow svg {
    width: 40px;
    height: 40px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateX(0);
    }
    50% {
        opacity: 0.7;
        transform: translateX(5px);
    }
}

.process-benefits {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.process-benefits h3 {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.benefits-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.benefit-item {
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.form-group label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(245, 145, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-message {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    font-weight: 600;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--spacing-md);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    min-width: 100px;
    margin-bottom: var(--spacing-sm);
    display: block;
    object-fit: contain;
    max-width: 200px;
    opacity: 1;
    visibility: visible;
}

.parent-company {
    margin-top: var(--spacing-xs);
    font-size: 0.85rem;
}

.parent-company a {
    color: var(--accent-light-green);
    font-weight: 600;
}

.parent-company a:hover {
    color: var(--accent-light-green-dark);
}

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

.footer-section li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.5);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container,
    .redemption-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .model-content {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        flex-direction: column;
        width: 100%;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .process-arrow svg {
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-md);
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-backdrop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-backdrop.active {
        display: block;
        opacity: 1;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        min-height: auto;
        padding: calc(80px + var(--spacing-md)) var(--spacing-md) var(--spacing-lg);
    }
    
    .section {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .benefits-grid,
    .features-grid,
    .success-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .process-arrow {
        animation: none !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background-color: var(--bg-white);
    margin: auto;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.3s ease;
}

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

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.modal-content h2 {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.modal-body {
    color: var(--text-light);
}

.modal-body h3 {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    font-size: 1.25rem;
}

.modal-body ul {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.modal-body li {
    margin-bottom: var(--spacing-xs);
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .contact-section,
    .btn,
    .modal {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

