/* Global Styles */
:root {
    --primary: #FF7043;       /* Orange/Coral color */
    --primary-dark: #E64A19;  /* Darker shade */
    --primary-light: #FFCCBC; /* Lighter shade */
    --accent: #4DD0E1;        /* Cyan accent */
    --accent-dark: #00ACC1;
    --text-dark: #263238;     /* Dark blue-grey text */
    --text-light: #ECEFF1;
    --background: #FAFAFA;
    --section-bg: #FFFFFF;
    --card-bg: #FFFFFF;
    --border-radius: 8px;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
}

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

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Rubik', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
}

.accent-text {
    color: var(--primary);
}

/* Buttons */
.primary-button, .secondary-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    font-family: 'Rubik', sans-serif;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.primary-button {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 112, 67, 0.3);
}

.primary-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 112, 67, 0.4);
}

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

.secondary-button:hover {
    background-color: rgba(255, 112, 67, 0.1);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo span {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.logo:hover .logo-icon {
    transform: rotate(10deg);
}

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

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.main-nav a:not(.action-button):hover::after {
    width: 100%;
}

.action-button {
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: var(--transition);
}

.action-button:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 112, 67, 0.3);
}

.menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 6px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 10rem 0 6rem;
    background-image: radial-gradient(circle at top right, rgba(255, 112, 67, 0.1), rgba(255, 112, 67, 0.03));
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 500px;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--section-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background-color: var(--background);
}

.how-it-works-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background-color: var(--primary);
    color: white;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: var(--section-bg);
}

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

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
    margin-bottom: 3rem;
    border-bottom: none;
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.cta-container {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
}

.cta-container h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.cta-container .primary-button {
    background-color: white;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.cta-container .primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 4rem 0 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.link-column h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.link-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.link-column a {
    color: var(--text-light);
    opacity: 0.7;
    transition: var(--transition);
}

.link-column a:hover {
    opacity: 1;
    color: var(--primary);
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-it-works-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-visual {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
        order: -1;
    }
    
    .menu-button {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        padding: 7rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    .menu-button.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-button.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-button.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .cta-container {
        padding: 2rem 1.5rem;
    }
    
    .step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
    }
}
