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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(64px + env(safe-area-inset-top, 0px));
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

/* Removed snowfall animation */

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

@media (min-width: 1024px) {
    .hero {
        min-height: calc(100vh - var(--hero-header-offset));
        max-height: calc(100vh - var(--hero-header-offset));
    }

    .hero .container {
        align-items: center;
    }

    .hero-image-container {
        max-height: min(520px, calc(100vh - var(--hero-header-offset) - 160px));
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    padding-top: max(12px, env(safe-area-inset-top, 0px));
    padding-bottom: 12px;
}

.nav {
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    min-height: 48px;
    position: relative;
}

.nav-brand .logo-image {
    height: 44px;
    width: auto;
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 40px;
    flex-wrap: wrap;
    flex: 1;
}

.nav-links .language-switcher {
    margin-left: auto;
}

.desktop-lang {
    display: flex !important;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
}

.mobile-lang {
    display: none !important;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #059669;
}

.nav-link.active {
    color: #059669;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0f172a;
    border-radius: 4px;
}

.nav-cta {
    margin-left: auto;
    background: #059669;
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #047857;
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.28);
}

.nav-cta:active {
    transform: translateY(0);
}

/* Promo Bar */
.promo-bar {
    background: linear-gradient(90deg, #022c22 0%, #065f46 45%, #059669 100%);
    color: #f8fafc;
    padding: 10px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.promo-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 40%, rgba(255, 255, 255, 0.12), transparent 30%), radial-gradient(circle at 86% 62%, rgba(255, 255, 255, 0.12), transparent 26%);
    pointer-events: none;
}

.promo-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.promo-bar-text {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 600;
    line-height: 1.4;
    color: #f8fafc;
}

.promo-bar-text strong {
    color: #fef9c3;
}

.promo-bar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.promo-copy-btn {
    background: rgba(255, 255, 255, 0.16);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.promo-copy-btn:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.promo-copy-btn:active {
    transform: translateY(0);
}

.promo-copy-btn.copied {
    background: #dcfce7;
    color: #065f46;
    border-color: #bbf7d0;
    box-shadow: 0 8px 18px rgba(5, 150, 105, 0.24);
}

.promo-bar-cta {
    background: #fef9c3;
    color: #065f46;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.promo-bar-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.promo-copy-btn--inline {
    background: #ebfff3;
    color: #065f46;
    border-color: #c4f0d9;
    box-shadow: none;
    padding: 8px 14px;
}

.promo-copy-btn--inline:hover {
    background: #d5f6e5;
    transform: translateY(-1px);
    box-shadow: 0 8px 14px rgba(5, 150, 105, 0.18);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 4px;
    background: #f1ffe9;
    border-radius: 8px;
    padding: 4px;
    border: 1px solid rgba(5, 150, 105, 0.2);
    margin-left: 0;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
}

.lang-btn.active {
    background: #059669;
    color: white;
    box-shadow: 0 2px 4px rgba(5, 150, 105, 0.2);
}

/* Hero Section */
.hero {
    --hero-header-offset: calc(env(safe-area-inset-top, 0px) + 72px);
    padding: clamp(32px, 7vh, 64px) 0 clamp(20px, 6vh, 44px);
    background: linear-gradient(135deg, #f1ffe9 0%, #fcfff8 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas: "content visual";
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-content {
    grid-area: content;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.gradient-text {
    color: #059669;
    font-weight: 800;
}

.hero-description {
    font-size: 20px;
    color: #64748b;
    margin-bottom: 18px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.btn-primary {
    background: #059669;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}


.btn-primary::before {
    content: '🎄';
    margin-right: 4px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
    background: #047857;
}

.hero-note {
    font-size: 14px;
    color: #64748b;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-area: visual;
}

.hero-image-container {
    position: relative;
    max-width: clamp(280px, 38vw, 460px);
    width: 100%;
    max-height: 100%;
}

.hero-example-img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: contain;
}

.hero-example-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(15, 118, 110, 0.16);
    border: 1px solid rgba(5, 150, 105, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 120px;
}

.hero-badge-logo {
    display: block;
    width: clamp(76px, 8vw, 104px);
    height: auto;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-radius: 16px;
    background: #f1ffe9;
    border: 2px solid rgba(5, 150, 105, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.15);
    border-color: rgba(5, 150, 105, 0.2);
    background: #eafae1;
}

.step-number {
    background: #059669;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    position: relative;
    z-index: 1;
}

/* Removed shimmer animation */

.step-content {
    flex: 1;
}

.step-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.step-icon svg,
.step-icon-img {
    width: 48px;
    height: 48px;
    display: block;
    transition: transform 0.3s ease;
}

.step:hover .step-icon svg,
.step:hover .step-icon-img {
    transform: scale(1.1) rotate(2deg);
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

/* Transformation Showcase */
.transformation-showcase {
    width: 100%;
    padding: 48px clamp(32px, 6vw, 96px);
    text-align: center;
    box-sizing: border-box;
}

.transformation-showcase .showcase-title {
    max-width: 960px;
    margin: 0 auto 40px;
}

.showcase-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

/* Transformation Carousel */

.showcase-carousel {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
}

.carousel-viewport {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    align-items: stretch;
    gap: clamp(28px, 4vw, 48px);
    padding: clamp(36px, 6vw, 60px) clamp(48px, 8vw, 120px);
    transition: transform 0.6s ease;
    will-change: transform;
}

.carousel-slide {
    --original-size: 220px;
    --variant-size: calc(var(--original-size) * 1.3);
    position: relative;
    flex: 0 0 clamp(380px, 64vw, 820px);
    background: linear-gradient(180deg, rgba(241, 255, 233, 0.24) 0%, #ffffff 85%);
    border-radius: 36px;
    padding: clamp(44px, 6vw, 68px);
    box-shadow: 0 36px 80px rgba(15, 118, 110, 0.14);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(28px, 5vw, 48px);
    opacity: 0.55;
    transform: scale(0.9) translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    box-shadow: 0 36px 80px rgba(15, 118, 110, 0.22);
}



.carousel-original {
    order: 0;
    width: var(--original-size);
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(15, 118, 110, 0.18);
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-original-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.carousel-examples {
    order: 1;
    width: 100%;
    max-width: clamp(520px, 90vw, 1100px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(var(--variant-size) * 0.8), 1fr));
    gap: clamp(24px, 4vw, 40px);
    align-items: stretch;
    justify-items: center;
}

.carousel-examples img {
    width: 100%;
    /* max-width: var(--variant-size); */
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(15, 118, 110, 0.16);
    background: #ffffff;
    object-fit: cover;
}

.carousel-slide--stacked .carousel-examples {
    grid-template-columns: 1fr;
    /* max-width: calc(var(--variant-size) * 1.3); */
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.25);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
    background: #059669;
    transform: scale(1.2);
}

.carousel-dot:focus-visible {
    outline: 2px solid #059669;
    outline-offset: 2px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 24px;
    padding: clamp(20px, 4vw, 28px) clamp(20px, 5vw, 32px);
    border: 1px solid rgba(15, 118, 110, 0.08);
    box-shadow: 0 18px 50px rgba(15, 118, 110, 0.08);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] {
    box-shadow: 0 24px 70px rgba(15, 118, 110, 0.16);
    border-color: rgba(15, 118, 110, 0.18);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    margin-left: auto;
    font-size: 24px;
    font-weight: 600;
    color: #059669;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #475569;
    line-height: 1.6;
}

.faq-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
    color: #475569;
}

.faq-list li {
    list-style: disc;
}

@media (max-width: 640px) {
    .faq {
        padding: 64px 0;
    }

    .faq-item summary {
        font-size: 18px;
    }
}

@media (max-width: 900px) {
    .carousel-track {
        padding: clamp(30px, 8vw, 48px);
    }

    .carousel-slide {
        flex: 0 0 clamp(340px, 92vw, 680px);
        padding: clamp(70px, 20vw, 140px) clamp(24px, 6vw, 44px);
        gap: clamp(26px, 6vw, 40px);
    }

    .carousel-examples {
        max-width: min(100%, calc(var(--variant-size) * 1.6));
        grid-template-columns: 1fr;
        gap: clamp(18px, 5vw, 30px);
    }
}

@media (max-width: 640px) {
    .carousel-track {
        padding: 24px;
        gap: 16px;
    }

    .carousel-slide {
        flex: 0 0 100%;
        padding: clamp(90px, 44vw, 200px) 20px clamp(36px, 12vw, 54px);
        gap: clamp(22px, 8vw, 34px);
    }

.carousel-examples {
    grid-template-columns: 1fr;
    gap: 14px;
}
}

/* Blog Section */
.blog-promo {
    padding: 80px 0;
    background: linear-gradient(135deg, #fcfff8 0%, #f1ffe9 100%);
}

.blog-promo-container {
    display: flex;
    justify-content: center;
    text-align: center;
}

.blog-promo-content {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.blog-promo-text {
    color: #475569;
    font-size: 18px;
    line-height: 1.6;
}

.blog {
    padding: 100px 0;
    background: #ffffff;
}

.blog.blog-page {
    padding-top: 140px;
}

.blog-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.blog-index {
    margin: 0 auto 56px;
    max-width: 760px;
    padding: 32px 36px;
    background: linear-gradient(180deg, rgba(241, 255, 233, 0.35) 0%, #ffffff 85%);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(15, 118, 110, 0.12);
}

.blog-index-heading {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 20px;
}

.blog-index-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 24px;
}

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

.blog-index-link {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
}

.blog-index-link:hover {
    color: #059669;
}

.blog-index-meta {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0f766e;
}

.blog-index-summary {
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.blog-intro {
    color: #64748b;
    font-size: 18px;
    margin-top: 16px;
}

.blog-articles {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.blog-article {
    background: linear-gradient(180deg, rgba(241, 255, 233, 0.45) 0%, #ffffff 80%);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 28px 80px rgba(15, 118, 110, 0.14);
}

.blog-article-header {
    margin-bottom: 32px;
    text-align: center;
}

.blog-meta {
    color: #059669;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-article-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 12px;
    color: #0f172a;
}

.blog-content {
    max-width: 760px;
    margin: 0 auto;
}

.blog-content p {
    margin-bottom: 20px;
    color: #475569;
    font-size: 17px;
}

.blog-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin: 36px 0 16px;
}

.blog-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 40px 0 16px;
}

.blog-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: #059669;
    margin: 28px 0 12px;
}

.blog-content ul {
    margin: 0 0 24px 24px;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: disc;
}

.blog-content li {
    color: #1f2937;
    line-height: 1.6;
}

.blog-content li strong {
    color: #0f766e;
    font-weight: 700;
}

.blog-content a {
    color: #0f766e;
    text-decoration: underline;
    font-weight: 600;
}

.blog-content a:hover {
    color: #0b5b55;
}

.pricing {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: clamp(28px, 4vw, 40px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.pricing .overline {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #059669;
    margin-bottom: 12px;
    display: inline-block;
}

.pricing h2 {
    font-size: 40px;
    margin-bottom: 8px;
}

.pricing p {
    margin-bottom: 12px;
    color: #334155;
}

.pricing-note {
    margin-bottom: 20px;
    color: #64748b;
    font-size: 14px;
}

.pricing-offer {
    background: #ecfdf3;
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.1);
}

.pricing-offer-badge {
    align-self: flex-start;
    background: linear-gradient(120deg, #065f46, #047857);
    color: #f8fafc;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.18);
}

.pricing-offer-text {
    margin: 0;
    color: #0f172a;
    font-weight: 700;
}

.pricing-offer-em {
    font-size: 20px;
    color: #065f46;
}

.pricing-tagline {
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 18px;
}

.pricing-list {
    list-style: none;
    margin: 16px 0 24px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0f172a;
    font-weight: 700;
    position: relative;
}

.pricing-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #dcfce7;
    color: #047857;
    font-size: 14px;
    flex-shrink: 0;
}

.pricing .btn-primary {
    margin-top: 8px;
    padding-left: 22px;
    padding-right: 22px;
}

@media (max-width: 640px) {
    .pricing-card {
        padding: 24px;
        grid-template-columns: 1fr;
    }

    .pricing h2 {
        font-size: 32px;
    }
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: #f1ffe9;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.trust-item {
    text-align: center;
    padding: 24px;
}

.trust-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.trust-icon svg {
    width: 48px;
    height: 48px;
}

.trust-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.trust-item p {
    color: #64748b;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #1e293b;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #1a1a1a;
    color: white;
}

.footer-brand .logo-image {
    height: 48px;
    width: auto;
    display: block;
    margin-bottom: 8px;
}

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

.footer-brand p {
    color: #64748b;
    font-size: 14px;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #64748b;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: #f1f5f9;
}

.modal-body {
    padding: 24px;
}

.modal-body p {
    color: #64748b;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #dc2626;
}

.form-error {
    margin-top: 12px;
    font-size: 14px;
    color: #dc2626;
}

.success-message {
    text-align: center;
    padding: 24px;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.success-message h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #059669;
}

.success-message p {
    color: #64748b;
}

.loader {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding-top: calc(env(safe-area-inset-top, 0px) + 8px);
        padding-bottom: 16px;
    }

    .promo-bar {
        padding: 12px 0;
    }

    .promo-bar-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .promo-bar-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .promo-bar-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .promo-bar-cta,
    .promo-copy-btn {
        width: 100%;
        justify-content: center;
    }

    .nav {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        padding: 0 12px;
    }

    .nav-brand {
        flex: 0 0 auto;
    }

    .nav-toggle {
        display: inline-flex;
        order: 3;
        margin-left: 8px;
    }

    .nav-cta {
        order: 2;
        width: auto;
        justify-content: center;
        margin-left: 8px;
        flex-shrink: 0;
    }

    .nav-links {
        width: 100%;
        order: 4;
        margin-left: 0;
        justify-content: flex-start;
        gap: 12px;
        flex-direction: column;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 12px 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        position: absolute;
        top: calc(100% + 6px);
        left: 16px;
        right: 16px;
        display: none;
        z-index: 900;
    }

    .nav.nav-open .nav-links {
        display: flex !important;
    }

    .desktop-lang {
        display: none !important;
    }

    .mobile-lang {
        display: flex !important;
        order: 5;
        margin-left: 0;
        width: 100%;
        justify-content: center;
        background: transparent;
        border: none;
    }

    .nav-link {
        font-size: 15px;
        padding: 4px 0;
    }

    .blog {
        padding: 72px 0;
    }

    .blog-intro {
        font-size: 16px;
    }

    .blog-index {
        padding: 28px;
        margin-bottom: 48px;
    }

    .blog-index-heading {
        font-size: 20px;
    }

    .blog-index-link {
        font-size: 17px;
    }

    .blog-index-meta {
        font-size: 12px;
    }

    .blog-articles {
        gap: 48px;
    }

    .blog-article {
        padding: 32px;
    }

    .blog-article-title {
        font-size: 26px;
    }

    .blog-content h4 {
        font-size: 22px;
        margin: 32px 0 14px;
    }

    .blog-promo {
        padding: 64px 0;
    }

    .blog-promo-text {
        font-size: 16px;
    }

    .blog.blog-page {
        padding-top: 120px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "content";
        gap: 24px;
        text-align: center;
        justify-items: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero {
        padding-top: calc(48px + env(safe-area-inset-top, 0px));
        padding-bottom: clamp(44px, 14vw, 72px);
        min-height: auto;
    }

    .hero-content {
        align-items: center;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .hero-image-container {
        max-width: 400px;
    }
    
    .hero-badge {
        top: 12px;
        right: 12px;
        padding: 4px 8px;
        max-width: 96px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .large-demo-container {
        flex-direction: column;
        gap: 24px;
    }
    
    .large-demo-arrow .arrow-container svg {
        transform: rotate(90deg);
    }
    
    .large-demo-image {
        width: 200px;
        height: 200px;
    }
    
    .transformation-showcase {
        padding: 32px 16px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: calc(44px + env(safe-area-inset-top, 0px)) 0 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .hero-badge {
        padding: 2px 6px;
        max-width: 84px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-container {
        padding: 24px 16px;
    }
    
    .demo-image {
        width: 120px;
        height: 120px;
    }

    .blog-article {
        padding: 24px;
    }

    .blog-article-title {
        font-size: 22px;
    }

    .blog-content h4 {
        font-size: 20px;
    }

    .blog-promo {
        padding: 48px 0;
    }

    .blog-promo-text {
        font-size: 15px;
    }

    .blog-index {
        padding: 24px;
    }

    .blog-index-heading {
        font-size: 18px;
    }

    .blog-index-link {
        font-size: 16px;
    }

    .blog-index-meta {
        font-size: 12px;
    }

    .blog.blog-page {
        padding-top: 110px;
    }
}
.carousel-example-image {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    box-shadow: 0 12px 36px rgba(15, 118, 110, 0.12);
    object-fit: contain;
}

.carousel-slide {
    position: relative;
    flex: 0 0 clamp(320px, 56vw, 680px);
    background: linear-gradient(180deg, rgba(241, 255, 233, 0.32) 0%, #ffffff 70%);
    border-radius: 36px;
    padding: 32px;
    box-shadow: 0 36px 80px rgba(15, 118, 110, 0.14);
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
    opacity: 0.55;
    transform: scale(0.9) translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    box-shadow: 0 40px 96px rgba(15, 118, 110, 0.2);
}
.carousel-slide--stacked {
    align-items: center;
}
