/* ===================================
   CSS Reset and Base Styles
   =================================== */

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

:root {
    /* Brand Colors */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --accent-color: #7c3aed;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Typography */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --font-size-xlarge: 24px;
    --font-size-h1: 48px;
    --font-size-h2: 36px;
    --font-size-h3: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    /* Semantic state colors */
    --color-error: #e53e3e;
    --color-warning: #fbbf24;
    --color-success-bg: #f0fdf4;
    --color-success-border: #86efac;
    --color-success-text: #166534;
    --color-error-bg: #fef2f2;
    --color-error-border: #fca5a5;
    --color-error-text: #991b1b;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

.site-header {
    background: var(--bg-white);
    padding: var(--spacing-sm) 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.main-nav {
    display: flex;
    gap: 6px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    padding: 6px 8px;
    border-radius: 6px;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.main-nav .nav-admin-link {
    color: var(--text-light);
    font-size: 13px;
}

/* Dropdown menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-toggle::after {
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-top: 1px;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 6px 0;
    min-width: 170px;
    z-index: 100;
    margin-top: 4px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 8px 16px !important;
    border-radius: 0 !important;
    font-size: 14px;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-light) !important;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-dark);
    position: relative;
    transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background: var(--text-dark);
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.cta-button,
.cta-button-large {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover,
.cta-button-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button-large {
    padding: 16px 32px;
    font-size: var(--font-size-large);
}

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

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: relative;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-bg.svg') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-headline {
    font-size: var(--font-size-h1);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subheadline {
    font-size: var(--font-size-large);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    line-height: 1.7;
}

/* ===================================
   Section Titles
   =================================== */

.section-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

/* ===================================
   Features Section
   =================================== */

.features {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

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

.feature-card {
    text-align: center;
    padding: var(--spacing-md);
}

.feature-image {
    margin-bottom: var(--spacing-md);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

/* ===================================
   Story Section
   =================================== */

.story {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

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

.story-text h2 {
    font-size: var(--font-size-h2);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.story-text p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Differentiators Section
   =================================== */

.differentiators {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

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

.diff-item {
    text-align: center;
    padding: var(--spacing-md);
}

.diff-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.diff-item h3 {
    font-size: var(--font-size-xlarge);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.diff-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   How It Works Section
   =================================== */

.how-it-works {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

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

.step {
    text-align: center;
    padding: var(--spacing-md);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
}

.step h3 {
    font-size: var(--font-size-xlarge);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    margin-bottom: var(--spacing-md);
}

.testimonial-quote p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: var(--font-size-large);
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text-dark);
    font-size: var(--font-size-base);
}

.author-info span {
    color: var(--text-light);
    font-size: var(--font-size-small);
}

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

.faq {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--bg-white);
    margin-bottom: var(--spacing-sm);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md);
    background: none;
    border: none;
    text-align: left;
    font-size: var(--font-size-large);
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Pricing Section
   =================================== */

.pricing {
    padding: var(--spacing-xl) 0;
    background: var(--bg-white);
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: var(--font-size-large);
    margin-top: calc(-1 * var(--spacing-md));
    margin-bottom: var(--spacing-lg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color), var(--shadow-lg);
    transform: scale(1.03);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: var(--font-size-small);
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--spacing-md);
}

.pricing-header h3 {
    font-size: var(--font-size-h3);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.pricing-price {
    margin-bottom: var(--spacing-xs);
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.price-period {
    display: block;
    font-size: var(--font-size-small);
    color: var(--text-light);
    margin-top: 4px;
}

.pricing-description {
    color: var(--text-light);
    font-size: var(--font-size-small);
    margin-top: var(--spacing-xs);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    flex: 1;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: var(--font-size-small);
    position: relative;
    padding-left: 28px;
}

.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

.pricing-features li:first-child {
    font-weight: 600;
    color: var(--primary-color);
    padding-left: 0;
}

.pricing-features li:first-child::before {
    display: none;
}

.pricing-card:first-child .pricing-features li:first-child {
    font-weight: 400;
    color: var(--text-dark);
    padding-left: 28px;
}

.pricing-card:first-child .pricing-features li:first-child::before {
    display: block;
}

.pricing-cta {
    display: block;
    text-align: center;
    margin-top: var(--spacing-md);
    width: 100%;
}

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

.pricing-cta-outline:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.popular {
        transform: none;
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
}

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

.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: var(--font-size-h2);
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: var(--font-size-large);
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

/* Demo Request Form */
.demo-form {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.demo-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

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

.demo-form .form-group-full {
    margin-bottom: var(--spacing-md);
}

.demo-form label {
    font-size: var(--font-size-small);
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.9;
}

.demo-form label .required {
    color: var(--color-warning);
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    padding: 10px 14px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: var(--font-size-base);
    font-family: var(--font-main);
    transition: border-color 0.2s, background 0.2s;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.18);
}

.demo-form select option {
    background: var(--primary-dark);
    color: white;
}

.demo-form textarea {
    resize: vertical;
    min-height: 80px;
}

.demo-submit {
    display: block;
    width: 100%;
    cursor: pointer;
    border: 2px solid white;
}

.demo-submit:hover {
    background: white;
    color: var(--primary-color);
}

.demo-status {
    margin-top: var(--spacing-sm);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: var(--font-size-small);
    text-align: center;
}

.demo-status.success {
    background: rgba(74, 222, 128, 0.2);
    border: 1px solid rgba(74, 222, 128, 0.4);
}

.demo-status.error {
    background: rgba(248, 113, 113, 0.2);
    border: 1px solid rgba(248, 113, 113, 0.4);
}

@media (max-width: 600px) {
    .demo-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Contact Modal
   =================================== */

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal[hidden] {
    display: none;
}

.contact-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.contact-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.contact-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}

.contact-modal-close:hover {
    color: var(--text-dark);
}

.contact-modal-content h2 {
    margin: 0 0 4px;
    font-size: 24px;
    color: var(--text-dark);
}

.contact-modal-subtitle {
    margin: 0 0 24px;
    color: var(--text-light);
    font-size: var(--font-size-small);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

#contact-form .form-group label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

#contact-form .form-group input,
#contact-form .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

#contact-form .form-group input:focus,
#contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#contact-form .required {
    color: var(--color-error);
}

.captcha-group label {
    font-weight: 600;
    color: var(--primary-color);
}

#contact-form .contact-submit {
    width: 100%;
    margin-top: 8px;
}

.contact-status {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: var(--font-size-small);
    text-align: center;
    display: none;
}

.contact-status.success {
    display: block;
    background: var(--color-success-bg);
    border: 1px solid var(--color-success-border);
    color: var(--color-success-text);
}

.contact-status.error {
    display: block;
    background: var(--color-error-bg);
    border: 1px solid var(--color-error-border);
    color: var(--color-error-text);
}

@media (max-width: 600px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-modal-content {
        padding: 24px;
    }
}

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

.site-footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-small);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s ease;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-small);
}

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

@media (max-width: 768px) {
    :root {
        --font-size-h1: 36px;
        --font-size-h2: 28px;
        --font-size-h3: 20px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        padding: var(--spacing-sm) 0;
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: var(--spacing-lg) 0;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .features-grid,
    .diff-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }
}
