.hero-section {
    padding-top: 120px;
    background: linear-gradient(160deg, #f8f9fc 0%, #ffffff 100%);
    min-height: 90vh;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    padding-right: 40px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title .highlight {
    display: block;
    font-size: 0.5em;
    color: var(--hover-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-title .main-heading {
    display: block;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background-color: #000;
}

.cta-note {
    color: var(--text-light);
    font-size: 15px;
}

.hero-image {
    position: relative;
}

.main-illustration {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.social-proof {
    background-color: white;
    padding: 32px 0;
    box-shadow: 0 -1px 0 var(--border-color);
    margin-top: 80px;
}

.proof-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.proof-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
    line-height: 1;
}

.proof-text {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.proof-subtext {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
    opacity: 0.8;
}

.proof-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
}

.stars {
    color: #ffd700;
    font-size: 18px;
    letter-spacing: 2px;
    margin: 2px 0;
    line-height: 1;
}

.proof-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.proof-logos img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--background-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.proof-logos img:not(:first-child) {
    margin-left: -8px;
}

.proof-logos:hover img {
    margin-left: 0;
}

.proof-logo {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.proof-logo:hover {
    opacity: 1;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .main-illustration {
        max-width: 80%;
        margin: 0 auto;
    }

    .social-proof {
        margin-top: 40px;
        padding: 24px 0;
    }

    .proof-container {
        flex-direction: column;
        gap: 24px;
    }

    .proof-item {
        width: 100%;
        padding: 0 20px;
    }

    .proof-divider {
        width: 60px;
        height: 1px;
        background: var(--border-color);
    }

    .proof-logos {
        gap: 6px;
    }

    .proof-logos img {
        width: 28px;
        height: 28px;
    }

    .proof-logo {
        height: 20px;
    }
}

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

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.feature-card {
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--hover-color);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.features-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(160deg, #f8f9fc 0%, #ffffff 100%);
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.features-cta-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.features-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.features-cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.features-cta-button:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.features-cta-button:hover svg {
    transform: translateX(4px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .features-cta {
        padding: 32px 20px;
    }

    .features-cta-text {
        font-size: 18px;
    }
}

/* Update Bento Grid Section styles */
.benefits-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

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

.benefits-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -0.02em;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    grid-auto-rows: minmax(220px, auto);
}

.bento-item {
    background: white;
    border-radius: 32px;
    padding: 40px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
    border-color: rgba(0, 0, 0, 0.1);
}

.bento-item:last-child {
    grid-column: span 2;
}

.bento-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
}

.bento-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.bento-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    opacity: 0.9;
}

.bento-stat {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--hover-color);
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat-text {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Update hover backgrounds to be more subtle */
.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
    border-color: rgba(0, 0, 0, 0.1);
}

.bento-item:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.4) 0%, #ffffff 100%);
}

.bento-item:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(240, 255, 244, 0.4) 0%, #ffffff 100%);
}

.bento-item:nth-child(4):hover {
    background: linear-gradient(135deg, rgba(255, 240, 240, 0.4) 0%, #ffffff 100%);
}

.bento-item:last-child:hover {
    background: linear-gradient(135deg, rgba(250, 245, 255, 0.4) 0%, #ffffff 100%);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .benefits-section {
        padding: 80px 0;
    }

    .benefits-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bento-item {
        padding: 32px;
        border-radius: 24px;
    }

    .bento-item.large {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 320px;
    }

    .bento-item:last-child {
        grid-column: span 1;
    }

    .bento-content h3 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .bento-stat {
        bottom: 32px;
        left: 32px;
    }

    .stat-number {
        font-size: 40px;
    }
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--background-color);
}

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

.process-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -0.02em;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 80px;
}

.process-step {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--hover-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.step-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    font-size: 15px;
    color: var(--primary-color);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.step-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--hover-color);
    font-weight: 600;
}

.step-divider {
    display: flex;
    align-items: center;
    color: var(--text-light);
    padding: 0 10px;
    margin-top: 80px;
}

.step-divider svg {
    width: 24px;
    height: 24px;
    opacity: 0.4;
}

.process-cta {
    text-align: center;
    background: linear-gradient(160deg, #f8f9fc 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.process-cta p {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.process-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.process-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.process-button:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.process-button:hover svg {
    transform: translateX(4px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }

    .process-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .process-steps {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 40px;
    }

    .process-step {
        padding: 32px;
    }

    .step-divider {
        display: none;
    }

    .process-cta {
        padding: 32px 20px;
    }

    .process-cta p {
        font-size: 20px;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

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

.portfolio-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.portfolio-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 64px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.portfolio-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.portfolio-item.large {
    grid-column: span 2;
}

.portfolio-image {
    width: 100%;
    height: 100%;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    color: white;
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
    padding-bottom: 40px;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.project-category {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--hover-color);
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.portfolio-overlay h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.project-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.project-link:hover svg {
    transform: translateX(4px);
}

.portfolio-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.cta-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.cta-subtext {
    font-size: 16px;
    color: var(--text-light);
}

.portfolio-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.portfolio-button:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.portfolio-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.portfolio-button:hover svg {
    transform: translateX(4px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .portfolio-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .portfolio-item {
        aspect-ratio: 3/4;
        min-height: 300px;
    }

    .portfolio-item.large {
        grid-column: span 1;
        aspect-ratio: 3/4;
        min-height: 350px;
    }

    .portfolio-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    }

    .portfolio-overlay h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .portfolio-overlay p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .project-category {
        font-size: 16px;
        padding: 8px 16px;
    }

    .project-link {
        font-size: 16px;
    }

    .portfolio-cta {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 32px 24px;
    }

    .cta-text {
        font-size: 20px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--background-color);
}

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

.testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.testimonials-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card.featured {
    background: linear-gradient(145deg, #f8f9fc 0%, #ffffff 100%);
    border-color: rgba(0, 0, 0, 0.12);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
}

.client-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.client-info span {
    font-size: 14px;
    color: var(--text-light);
}

.rating {
    margin-left: auto;
    color: #ffd700;
    font-size: 16px;
    letter-spacing: 1px;
}

blockquote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-stats {
    display: flex;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--hover-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.testimonials-cta {
    text-align: center;
}

.testimonials-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.testimonials-cta .cta-button:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.testimonials-cta .cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.testimonials-cta .cta-button:hover svg {
    transform: translateX(4px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .testimonials-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .client-image {
        width: 48px;
        height: 48px;
    }

    .testimonial-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: var(--background-color);
}

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

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 64px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(145deg, #f8f9fc 0%, #ffffff 100%);
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--hover-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.price {
    margin-bottom: 16px;
}

.price .amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price .period {
    font-size: 16px;
    color: var(--text-light);
    margin-left: 4px;
}

.description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--primary-color);
    font-size: 15px;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--hover-color);
}

.pricing-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: white;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-button.featured {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.pricing-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pricing-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.pricing-button:hover svg {
    transform: translateX(4px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .pricing-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card {
        padding: 32px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-header h3 {
        font-size: 22px;
    }

    .price .amount {
        font-size: 32px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #f8f9fc 0%, #ffffff 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-item svg {
    width: 32px;
    height: 32px;
    color: var(--hover-color);
}

.info-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.info-text p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

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

.form-group {
    position: relative;
}

.form-group.full {
    grid-column: span 2;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fc;
    color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--hover-color);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.submit-button {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    border-radius: 32px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.submit-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(4px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-title {
        font-size: 28px;
        text-align: center;
    }

    .contact-subtitle {
        font-size: 16px;
        text-align: center;
        margin-bottom: 32px;
    }

    .contact-info {
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

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

    .form-group.full {
        grid-column: span 1;
    }

    .submit-button {
        grid-column: span 1;
    }
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #f8f9fc 0%, #ffffff 100%);
}

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

.stats-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.stats-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 64px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.stats-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stats-card.highlight {
    background: linear-gradient(145deg, #f8f9fc 0%, #ffffff 100%);
    border-color: rgba(0, 0, 0, 0.12);
}

.stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.stats-header svg {
    width: 32px;
    height: 32px;
    color: var(--hover-color);
}

.stats-value {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stats-value .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stats-value .label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

.stats-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .stats-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-card {
        padding: 32px;
    }

    .stats-value .number {
        font-size: 36px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--background-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 64px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    text-align: left;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--text-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer {
    height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    height: auto;
    padding: 0 24px 24px;
    opacity: 1;
}

.faq-answer p {
    transform: translateY(0);
    transition: transform 0.3s ease;
    margin-bottom: 8px;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 16px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .faq-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

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

/* Footer Styles */
.footer {
    background-color: #f8fafc;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    height: 48px;
    width: 48px;
}

.footer-desc {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.footer-group h3 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-group ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-group a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-group a:hover {
    color: var(--hover-color);
    transform: translateX(2px);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-light);
    font-size: 14px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--hover-color);
}

.divider {
    color: var(--text-light);
    opacity: 0.5;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 32px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
        margin-bottom: 40px;
    }

    .footer-brand {
        text-align: center;
        align-items: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-group h3 {
        margin-bottom: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 8px;
    }

    .divider {
        display: none;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #f8f9fc 0%, #ffffff 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-label {
    display: inline-block;
    color: var(--hover-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-desc {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--hover-color);
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
}

.about-image {
    position: relative;
}

.about-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-bento-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    background: #f8f9fc;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

/* Update grid spans */
.about-bento-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
}

.about-bento-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(145deg, var(--hover-color) 0%, #0055aa 100%);
    color: white;
}

.about-bento-item:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
}

.about-bento-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-bento-item svg {
    width: 32px;
    height: 32px;
    color: var(--hover-color);
}

.about-bento-item span {
    font-size: 15px;
    font-weight: 500;
}

/* Update mobile styles */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-content {
        order: 1;
    }

    .about-image {
        order: 2;
    }

    .about-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        padding: 24px;
        gap: 16px;
    }

    .about-bento-item {
        padding: 20px;
    }

    /* Update mobile spans */
    .about-bento-item:nth-child(1),
    .about-bento-item:nth-child(3) {
        grid-column: span 2;
    }

    .about-bento-item:nth-child(2) {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .about-bento-grid {
        grid-template-columns: 1fr;
    }

    .about-bento-item:nth-child(1),
    .about-bento-item:nth-child(2),
    .about-bento-item:nth-child(3) {
        grid-column: span 1;
    }
}
