/* Base Styles and Variables */
:root {
    --primary: #FF8F00;
    --primary-light: #FFA726;
    --primary-lighter: #FFB74D;
    --primary-pale: #FFF8E1;
    --secondary: #E65100;
    --dark: #263238;
    --gray: #546E7A;
    --light-gray: #ECEFF1;
    --light: #FFFFFF;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.page-wrapper {
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.inner-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

/* Section Titles */
.section-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 3px;
}

/* Buttons */
.btn-primary, .btn-outline, .get-started {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline:hover {
    background-color: rgba(255, 143, 0, 0.05);
    transform: translateY(-3px);
}

.get-started {
    padding: 10px 20px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50px;
    font-size: 0.9rem;
}

.get-started:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Header and Navigation */
header {
    background-color: var(--light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

header .inner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.logo h1 span {
    color: var(--primary);
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-items li a {
    color: var(--dark);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-items li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-items li a:hover {
    color: var(--primary);
}

.nav-items li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background-color: var(--primary-pale);
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--dark);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-visual {
    flex: 1;
    max-width: 550px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.feature-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 35px 30px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--primary-light);
}

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

.card-icon {
    margin-bottom: 25px;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    margin-bottom: 20px;
    color: var(--dark);
}

.feature-card ul {
    margin-bottom: 25px;
    padding-left: 5px;
}

.feature-card ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.feature-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.card-link {
    margin-top: auto;
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    position: relative;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
}

.card-link:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--primary-pale);
}

.process-flow {
    max-width: 800px;
    margin: 0 auto 50px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.4rem;
    margin-right: 25px;
    box-shadow: var(--shadow);
}

.step-details {
    background-color: var(--light);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex: 1;
}

.step-details h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.action-box {
    background-color: var(--light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.action-box h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--light);
}

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

.benefit-box {
    background-color: var(--light);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    padding: 25px;
    transition: var(--transition);
    border-left: 3px solid var(--primary);
}

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

.benefit-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.benefit-title h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin: 0;
}

.benefit-box p {
    color: var(--gray);
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--primary-pale);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light);
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(255, 143, 0, 0.03);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark);
}

.icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: var(--gray);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--light);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .btn-primary {
    background-color: var(--light);
    color: var(--primary);
}

.final-cta .btn-primary:hover {
    background-color: var(--primary-pale);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.footer-brand span {
    color: var(--primary-light);
}

.footer-brand p {
    color: #B0BEC5;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.link-group h4 {
    color: var(--primary-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-light);
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: #B0BEC5;
    transition: var(--transition);
}

.link-group ul li a:hover {
    color: var(--light);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #78909C;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-text h2 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .process-step {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .step-details {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-items {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--light);
        flex-direction: column;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-items.open {
        right: 0;
    }
    
    .hero-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-logo, 
    .footer-links {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .hero-text h2 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        gap: 30px;
    }
}
