/* ===================================
   Front Row Website Styles
   Brand Colors:
   - Mountain Blue: #6CACE4
   - Mountain Purple: #5B1C91
   - Rock Black: #000000
   - Salt White: #FFFFFF
   =================================== */

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

:root {
    --mountain-blue: #6CACE4;
    --mountain-purple: #5B1C91;
    --rock-black: #000000;
    --salt-white: #FFFFFF;
    --light-gray: #F5F5F5;
    --card-gray: #1A1A1A;
    --text-gray: #666666;
    --purple-light: #8B4DC9;
    --border-color: #E0E0E0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--rock-black);
    background-color: var(--salt-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    background-color: var(--salt-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

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

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--mountain-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--mountain-blue);
    color: var(--salt-white);
}

.btn-primary:hover {
    background-color: #5A9BD6;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--mountain-purple);
    color: var(--salt-white);
}

.btn-secondary:hover {
    background-color: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--mountain-purple);
    color: var(--mountain-purple);
}

.btn-outline:hover {
    background-color: var(--mountain-purple);
    color: var(--salt-white);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-icon {
    margin-right: 8px;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    background: linear-gradient(135deg, var(--mountain-purple) 0%, var(--mountain-blue) 100%);
    color: var(--salt-white);
    padding: 100px 0 80px;
    text-align: center;
}

.hero-logo {
    margin-bottom: 3rem;
}

.hero-logo-img {
    height: 250px;
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(90deg, #FFFFFF 0%, #E0E0E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===================================
   Sections
   =================================== */

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--rock-black);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Features Overview
   =================================== */

.features-overview {
    background-color: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--salt-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--mountain-purple);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===================================
   Steps Section
   =================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--mountain-purple), var(--mountain-blue));
    color: var(--salt-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--rock-black);
}

.step p {
    color: var(--text-gray);
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* ===================================
   Testimonials
   =================================== */

.testimonials {
    background-color: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--salt-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--rock-black);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ===================================
   Download CTA
   =================================== */

.download-cta {
    background: linear-gradient(135deg, var(--mountain-purple) 0%, var(--mountain-blue) 100%);
    color: var(--salt-white);
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.download-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===================================
   Page Header
   =================================== */

.page-header {
    background: linear-gradient(135deg, var(--mountain-purple) 0%, var(--mountain-blue) 100%);
    color: var(--salt-white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ===================================
   Features Detail
   =================================== */

.feature-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.feature-detail-item.reverse {
    direction: rtl;
}

.feature-detail-item.reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    background-color: var(--mountain-blue);
    color: var(--salt-white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--rock-black);
}

.feature-detail-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
    position: relative;
}

.feature-list li::before {
    content: "✓";
    color: var(--mountain-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.feature-detail-visual {
    background-color: var(--light-gray);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.visual-placeholder {
    font-size: 1.5rem;
    color: var(--text-gray);
    text-align: center;
}

/* ===================================
   How It Works Detailed Steps
   =================================== */

.how-it-works-section {
    background-color: var(--salt-white);
}

.how-it-works-section.alt {
    background-color: var(--light-gray);
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--rock-black);
}

.section-intro p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.steps-detailed {
    max-width: 800px;
    margin: 0 auto;
}

.step-detailed {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-number-large {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--mountain-purple), var(--mountain-blue));
    color: var(--salt-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--rock-black);
}

.step-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.step-content ul {
    list-style: none;
}

.step-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    position: relative;
}

.step-content ul li::before {
    content: "•";
    color: var(--mountain-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mountain-blue), transparent);
    margin: 60px 0;
}

/* ===================================
   Additional Features Grid
   =================================== */

.additional-features {
    background-color: var(--light-gray);
}

.features-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card-small {
    background-color: var(--salt-white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.feature-card-small h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--mountain-purple);
}

.feature-card-small p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ===================================
   FAQ Section
   =================================== */

.faq-section,
.faq-preview {
    background-color: var(--salt-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 12px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--mountain-purple);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===================================
   About Page
   =================================== */

.about-section {
    background-color: var(--salt-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--rock-black);
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-visual {
    background-color: var(--light-gray);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Mission & Vision */
.mission-vision {
    background-color: var(--light-gray);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.mv-card {
    background-color: var(--salt-white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--mountain-purple);
}

.mv-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Values */
.values-section {
    background-color: var(--salt-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--mountain-purple);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Stats */
.stats-section {
    background: linear-gradient(135deg, var(--mountain-purple) 0%, var(--mountain-blue) 100%);
    color: var(--salt-white);
    text-align: center;
}

.stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-large {
    text-align: center;
}

.stat-large .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-large .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Team */
.team-section {
    background-color: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: var(--salt-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.member-photo {
    width: 120px;
    height: 120px;
    background-color: var(--light-gray);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.team-member h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--rock-black);
}

.member-role {
    color: var(--mountain-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.member-bio {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Press */
.press-section {
    background-color: var(--salt-white);
}

.press-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.press-quote {
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--mountain-blue);
}

.press-quote p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.press-source {
    color: var(--mountain-purple);
    font-weight: 600;
}

/* Join Section */
.join-section {
    background-color: var(--light-gray);
    text-align: center;
}

.join-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-section p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* ===================================
   Contact Page
   =================================== */

.contact-section {
    background-color: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--rock-black);
}

.contact-form-container p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-form {
    background-color: var(--salt-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--rock-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--mountain-blue);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.form-message.success {
    background-color: #D4EDDA;
    color: #155724;
}

.form-message.error {
    background-color: #F8D7DA;
    color: #721C24;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background-color: var(--salt-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--mountain-purple);
}

.contact-info-card p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--mountain-blue);
    font-weight: 600;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--mountain-purple);
    font-weight: 600;
}

.social-link:hover {
    color: var(--mountain-blue);
}

/* Business Contact */
.business-contact {
    background-color: var(--salt-white);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.business-card {
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 12px;
    text-align: center;
}

.business-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--rock-black);
}

.business-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    background: linear-gradient(135deg, var(--mountain-purple) 0%, var(--mountain-blue) 100%);
    color: var(--salt-white);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background-color: var(--rock-black);
    color: var(--salt-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--mountain-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

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

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 968px) {
    .hero-logo-img {
        height: 180px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-detail-item,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-detail-item.reverse {
        direction: ltr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .step-detailed {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--salt-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-cta,
    .download-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn,
    .download-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        height: 120px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.testimonial-card,
.step,
.faq-item {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

