/* Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Inter', system-ui, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #0f172a;
    font-feature-settings: 'cv11', 'ss01';
    font-variation-settings: 'opsz' 32;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utilities */
.section-padding {
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 6rem 0;
    }
}

.gradient-bg {
    background: linear-gradient(135deg, #eff6ff 0%, #fef7ff 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #dc53f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

.slide-down {
    animation: slideDown 0.5s ease-out;
}

.scale-in {
    animation: scaleIn 0.3s ease-out;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
    gap: 0.5rem;
}

.btn:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.5);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-secondary {
    background-color: #f1f5f9;
    color: #0f172a;
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

.btn-ghost {
    color: #334155;
    background: transparent;
}

.btn-ghost:hover {
    background-color: #f1f5f9;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.btn .icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Header */
.header {
    background-color: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #0f172a;
}

.logo-img {
    width: 2rem;
    height: 2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Logo Color Styles */
.logo-easy {
    color: #0f172a;
}

.logo-check {
    color: #2563eb;
}

/* Footer Logo Colors */
.footer .logo-easy {
    color: white;
}

.nav {
    display: none;
}

@media (min-width: 1024px) {
    .nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.header-actions {
    display: none;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
    }
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    width: 1.5rem;
    height: 0.125rem;
    background-color: #64748b;
    transition: all 0.2s ease;
}

.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 Section */
.hero {
    padding: 6rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-demo {
        margin-top: 2rem;
    }
}

.hero-text {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

@media (max-width: 900px) {
    .hero-text {
        text-align: center;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 900px) {
    .hero-actions {
        justify-content: center;
    }
}

@media (min-width: 640px) {
    .hero-actions {
        /* No override needed, keep row direction for all screens */
    }
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.customer-avatars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avatar-group {
    display: flex;
    margin-right: 0.5rem;
}

.avatar {
    width: 2rem;
    height: 2rem;
    background-color: #2563eb;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: -0.5rem;
}

.avatar:first-child {
    margin-left: 0;
}

.customer-count {
    font-size: 0.875rem;
    color: #64748b;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    width: 1rem;
    height: 1rem;
    color: #fbbf24;
}

.rating-text {
    font-size: 0.875rem;
    color: #64748b;
}

.demo-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.demo-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.demo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.demo-subtitle {
    color: #64748b;
}

.demo-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: #eff6ff;
    border-radius: 0.5rem;
}

.step-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
}

/* Stats Section */
.stats {
    background-color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Features Section */
.features {
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background-color: #eff6ff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* Main Features Section (for detailed features page) */
.main-features {
    background-color: white;
}

.main-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .main-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.main-feature-card {
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    padding: 3rem;
    transition: all 0.3s ease;
}

.main-feature-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.feature-icon-large {
    width: 4rem;
    height: 4rem;
    background-color: #eff6ff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-large svg {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
}

.feature-title-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.feature-description-large {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.feature-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-details li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
}

.feature-details li:before {
    content: "✓";
    color: #22c55e;
    font-weight: 600;
    width: 1rem;
    text-align: center;
}

/* Additional Features Section */
.additional-features {
    background: linear-gradient(135deg, #eff6ff 0%, #fef7ff 100%);
}

.additional-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.additional-feature {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.06);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s;
}

.additional-feature:hover {
    box-shadow: 0 8px 32px 0 rgba(30, 41, 59, 0.12);
}

.additional-feature-icon {
    margin-bottom: 1.25rem;
}

.additional-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.additional-feature-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* Comparison Table */
.comparison {
    background-color: white;
}

.comparison-table {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background-color: #f8fafc;
    font-weight: 600;
    color: #0f172a;
}

.comparison-header > div {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 1.5rem;
}

.comparison-feature {
    font-weight: 500;
    color: #0f172a;
    border-right: 1px solid #e2e8f0;
}

.comparison-traditional {
    color: #ef4444;
    text-align: center;
    border-right: 1px solid #e2e8f0;
}

.comparison-easycheck {
    color: #22c55e;
    text-align: center;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #eff6ff 0%, #fef7ff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 1.125rem;
    color: #334155;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
}

.author-location {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    background-color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    }
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #334155;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.2s ease;
}

.social-link:hover {
    background-color: #2563eb;
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.office-locations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.office strong {
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.office p {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.copyright {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-social-proof {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 1rem;
    }
    
    .comparison-traditional,
    .comparison-easycheck {
        text-align: left;
    }
    
    .main-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background-color: white;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

/* Mobile Navigation */
.mobile-nav {
    margin-bottom: 2rem;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-item {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #64748b;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #2563eb;
    background-color: #f1f5f9;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.features-section {
    padding: 4rem 0;
}

.additional-features-section {
    padding: 4rem 0;
    background: #f8faff;
}

.pricing-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.06);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s;
    border: 1px solid #e2e8f0;
}

.pricing-card.featured {
    border: 2px solid #2563eb;
    box-shadow: 0 8px 32px 0 rgba(37, 99, 235, 0.10);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    box-shadow: 0 2px 8px 0 rgba(37, 99, 235, 0.10);
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.plan-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.plan-description {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.pricing-features {
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #334155;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-action {
    margin-top: auto;
    width: 100%;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.pricing-features-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.features-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.06);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
}

.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.06);
    padding: 2rem 1.5rem;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.faq-answer {
    color: #334155;
    font-size: 1rem;
    line-height: 1.6;
}

.story-section {
    padding: 4rem 0;
}

.story-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.story-text, .values-grid {
    width: 100%;
    max-width: 1200px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.story-paragraph {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-image {
    flex: 1 1 300px;
    text-align: center;
}

.story-img {
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.08);
}

.value-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    display: block;
    margin: 0 auto;
}

/* Demo Section Styles */
.demo-section {
    background-color: #ffffff;
}

.demo-container {
    margin-top: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.demo-container > div {
    border-radius: 1rem;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

.hero-content.demo-hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3rem;
}

.hero-text.demo-hero-center {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-actions.demo-hero-center {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: center;
}
