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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    --primary-orange: #ff6236;
    --light-orange: #fff0ec;
    --semi-transparent-orange: rgba(255, 98, 54, 0.6);
    --ai-primary: #31c8df;
    --neutral-bg: #f9f9f9;
    --preview-card: #f3f3f3;
    --text-primary: #1a1a1a;
    --text-secondary: rgba(0, 0, 0, 0.5);
    --learn-peach: #ffe9de;
    --learn-sky: #e5fbff;
    --learn-card-border: #f1d6cd;
    --learn-muted: #6b6b6b;
}

/* Top Navigation */
.top-nav {
    backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 16px 20px 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

@media (min-width: 768px) {
    .top-nav {
        padding: 24px 40px 16px;
    }
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.logo {
    width: 70px;
    height: 38px;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .logo {
        width: 92px;
        height: 50px;
    }
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

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

@media (min-width: 768px) {
    .nav-right {
        gap: 24px;
    }
}

.nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-links {
        gap: 24px;
    }
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-links a {
        font-size: 16px;
    }
}

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

.nav-links a.active {
    color: var(--primary-orange);
}

.nav-links a.active:hover {
    background-color: transparent;
    cursor: default;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.2s ease;
    text-align: center;
}

.mobile-menu a:hover {
    background-color: var(--light-orange);
    color: var(--primary-orange);
}

.mobile-menu-btn {
    width: 100%;
    margin-top: 8px;
}

/* Mobile Navigation Responsive */
@media (max-width: 767px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-right {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }
}

@media (min-width: 768px) {
    .hamburger-menu {
        display: none;
    }

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

/* Buttons */
.btn-primary {
    background-color: var(--primary-orange);
    color: #f9f9f9;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 20px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    transition: opacity 0.2s ease;
}

@media (min-width: 768px) {
    .btn-primary {
        font-size: 16px;
        padding: 12px 24px;
    }
}

.btn-primary:hover {
    opacity: 0.9;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
}

/* Navigation Waitlist Button - Exact styling for all pages */
.nav-waitlist-btn {
    background-color: #ff6236;
    color: #f9f9f9;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 20px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
    transition: opacity 0.2s ease;
    box-sizing: border-box;
}

.nav-waitlist-btn:link,
.nav-waitlist-btn:visited,
.nav-waitlist-btn:active {
    background-color: #ff6236;
    color: #f9f9f9;
    text-decoration: none;
}

.nav-waitlist-btn:hover {
    opacity: 0.9;
    color: #f9f9f9;
    text-decoration: none;
}

@media (min-width: 768px) {
    .nav-waitlist-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

.btn-secondary {
    background-color: white;
    border: 2px solid var(--primary-orange);
    border-radius: 100px;
    padding: 12px 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--primary-orange);
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-orange);
    color: white;
}

.btn-secondary .arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.btn-secondary:hover .arrow-icon {
    transform: translateX(2px);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 67px;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background: #ffffff;
}

.hero-illustration {
    width: 348px;
    height: 416px;
    position: relative;
    flex-shrink: 0;
}

.lightbulb {
    position: absolute;
    width: 208px;
    height: 205px;
    left: 170px;
    top: -5px;
    z-index: 2;
}

.file-icon {
    position: absolute;
    width: 313px;
    height: 313px;
    left: 0;
    top: 130px;
    z-index: 1;
}

.file-icon > img:first-child {
    width: 100%;
    height: 100%;
}

.file-content {
    position: absolute;
    width: 120px;
    height: auto;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 665px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary-orange);
    margin-bottom: 18px;
}

.hero-text {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-text .subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: black;
}

.hero-text .note {
    font-size: 14px;
    font-weight: 300;
    color: black;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 420px;
}

.email-form .btn-primary {
    width: 100%;
}

.email-input {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.33);
    border-radius: 8px;
    padding: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: black;
    width: 100%;
    min-height: 44px;
}

.email-input::placeholder {
    color: rgba(0, 0, 0, 0.33);
}

/* Decorative Circle */
.decorative-circle {
    position: absolute;
    width: 148px;
    height: 148px;
    left: calc(50% - 470px);
    top: 420px;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden;
}

.decorative-circle img {
    width: 148px;
    height: 148px;
    object-fit: cover;
    border-radius: 50%;
}

/* Info Section */
.info-section {
    padding: 80px 140px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
}

.info-card {
    background: linear-gradient(135deg, #ffe9de 0%, #fff5f0 50%, #ffe9de 100%);
    border-radius: 30px;
    padding: 60px 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.info-card h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
    margin-bottom: 8px;
}

.info-content {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: #1a1a1a;
    text-align: center;
}

.info-content p {
    margin-bottom: 20px;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.highlight {
    color: var(--primary-orange);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 54px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: black;
}

.steps-container {
    padding: 0 72px;
    display: flex;
    flex-direction: column;
    gap: 196px;
}

.step {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.step-content {
    max-width: 450px;
}

.step-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.number-circle {
    background-color: var(--primary-orange);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-info {
    flex: 1;
}

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

.step-title h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-orange);
}

.step-title .icon {
    width: 42px;
    height: 42px;
}

.step-info p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: black;
}

.step-image {
    width: 600px;
    height: auto;
    border-radius: 22px;
    box-shadow: 0px 2.763px 8.289px 0px var(--semi-transparent-orange);
    overflow: hidden;
}

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

/* Step 2 Specific Styles */
.step-2 {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.step-2-left {
    display: flex;
    gap: 20px;
    max-width: 450px;
}

.step-bar {
    width: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
    min-height: 200px;
    flex-shrink: 0;
}

.step-2-images {
    display: flex;
    flex-direction: column;
    max-width: 650px;
    flex: 1;
    position: relative;
}

.ai-editor {
    border-radius: 18px;
    box-shadow: 0px 2.227px 6.68px 0px rgba(49, 200, 223, 0.4);
    width: 100%;
    height: auto;
}

.step-2-images > div {
    position: relative;
    width: 100%;
    height: 280px;
    margin-top: -80px;
}

.patent-img-1 {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 18px;
    box-shadow: 0px 4px 12px 0px rgba(49, 200, 223, 0.3);
    width: 320px;
    height: 320px;
    object-fit: contain;
    background: white;
    padding: 20px;
    z-index: 1;
}

.patent-img-2 {
    position: absolute;
    right: 0;
    top: 30px;
    border-radius: 18px;
    box-shadow: 0px 4px 12px 0px rgba(49, 200, 223, 0.3);
    width: 320px;
    height: 320px;
    object-fit: contain;
    background: white;
    padding: 20px;
    z-index: 2;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 18px;
    max-width: 100%;
}

.cta-subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: black;
    margin-bottom: 18px;
}

.email-form-center {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    max-width: 600px;
    margin: 0 auto 18px;
}

.email-form-center .email-input {
    border-radius: 8px;
    padding: 12px 16px;
    flex: 1;
}

.email-form-center .btn-primary {
    padding: 12px 32px;
    white-space: nowrap;
    border-radius: 8px;
}

.cta-note {
    font-size: 14px;
    font-weight: 300;
    color: black;
}

/* Footer */
.footer {
    backdrop-filter: blur(2px);
    background-color: #f4f4f4;
    border-top: 1px solid #ececec;
    padding: 32px 40px 20px;
}

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

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 418px;
}

.footer-logo {
    width: 120px;
    height: 64px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-tagline, .footer-copyright {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    text-align: left;
    padding: 0 8px;
}

.footer-copyright {
    padding-bottom: 8px;
}

.footer-disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    line-height: 1.4;
    color: rgba(122, 122, 122, 0.6);
    text-align: left;
}

.footer-links {
    display: flex;
    gap: 40px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.footer-links a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    cursor: pointer;
}

.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-social img {
    height: 28px;
    cursor: pointer;
}

.footer-social a:nth-child(2) img {
    width: 56px;
}

.footer-social a:nth-child(3) img {
    width: 40px;
}

/* Learn Page */
body.learn-page,
body.learn-article-page {
    background-color: #ffffff;
    color: var(--text-primary);
}

.learn-main {
    padding-bottom: 120px;
}

.learn-hero {
    background: linear-gradient(315deg, rgba(218, 245, 249, 0.60) 27%, rgba(255, 247, 245, 0) 51%, rgba(255, 227.44, 219.87, 0.60) 81%, rgba(255, 208, 195, 0.60) 91%, rgba(255, 207.87, 194.74, 0.60) 100%);
    position: relative;
    overflow: visible;
}

.learn-hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 40%, #ffffff 100%);
    pointer-events: none;
    z-index: 1;
}

.learn-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 120px;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .learn-hero__container {
        padding: 120px 40px 200px;
    }
}

.learn-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .learn-hero__grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 40px;
    }
}

.learn-hero__content h1 {
    font-size: clamp(32px, 7vw, 44px);
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 16px;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.learn-hero__subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: var(--learn-muted);
    max-width: 420px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.learn-hero__cta {
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(255, 98, 54, 0.25);
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.learn-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 98, 54, 0.3);
}

.learn-hero__cta-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: white;
    color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.learn-hero__cta-icon svg {
    width: 14px;
    height: 14px;
}

.learn-hero__illustration {
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.learn-hero__bulb {
    width: 100%;
    max-width: 240px;
    height: auto;
}

@media (min-width: 480px) {
    .learn-hero__bulb {
        max-width: 320px;
    }
}

@media (min-width: 640px) {
    .learn-hero__bulb {
        max-width: 400px;
    }
}

@media (min-width: 768px) {
    .learn-hero__bulb {
        max-width: 480px;
    }
}

.learn-hero__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
}

@media (min-width: 480px) {
    .learn-hero__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .learn-hero__cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        margin-top: 36px;
    }
}

.learn-hero__card:nth-child(1) {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

.learn-hero__card:nth-child(2) {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.learn-hero__card:nth-child(3) {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.7s forwards;
}

.learn-hero__card {
    background: white;
    border: 1px solid var(--learn-card-border);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.learn-hero__card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff3ee;
    border: 1px solid #ffd6c8;
    color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.learn-hero__card-icon svg {
    width: 20px;
    height: 20px;
}

.learn-hero__card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 6px;
}

.learn-hero__card p {
    font-size: 12px;
    color: var(--learn-muted);
    line-height: 1.5;
}

.learn-search {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 0;
}

@media (min-width: 768px) {
    .learn-search {
        padding: 32px 40px 0;
    }
}

.learn-search__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.learn-search__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-orange);
}

.learn-search__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.search-input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1.5px solid #e0e0e0;
    border-radius: 999px;
    padding: 10px 18px;
    min-width: 0;
    flex: 1;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 480px) {
    .search-input {
        max-width: 420px;
    }
}

.search-input:focus-within {
    border-color: var(--primary-orange);
    box-shadow: 0 2px 12px rgba(255, 98, 54, 0.12);
}

.search-input svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.search-input input {
    border: none;
    background: transparent;
    font-size: 14px;
    color: #1f1f1f;
    outline: none;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
}

.search-input input::placeholder {
    color: #9a9a9a;
}

.learn-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.learn-filters span {
    font-size: 13px;
    color: #7a7a7a;
    font-weight: 500;
}

.learn-filters select {
    border: 1.5px solid #e4e4e4;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    background: white;
    font-family: 'DM Sans', sans-serif;
    color: #4a4a4a;
    cursor: pointer;
    transition: border-color 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a4a' d='M3 5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.learn-filters select:hover {
    border-color: #ccc;
}

.learn-filters select:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.learn-search__count {
    font-size: 13px;
    color: #8a8a8a;
    margin-top: 12px;
}

.learn-articles {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px 0;
}

@media (min-width: 768px) {
    .learn-articles {
        padding: 18px 40px 0;
    }
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .article-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.article-card {
    background: #f7f7f7;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #ededed;
    min-height: 320px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card--clickable {
    cursor: pointer;
}

.article-card--clickable:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.article-card--clickable:hover .article-card__cta {
    background: #e5562f;
}

.article-card__thumb {
    background: #d2d2d2;
    border-radius: 12px;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.article-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-card__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.4) 60%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.article-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.article-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.article-card__tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 4px 8px;
}

.article-card__tag--primary {
    background: #ffe8df;
    color: #c94d32;
}

.article-card__tag--secondary {
    background: #e8f6fb;
    color: #2a7b8d;
}

.article-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
}

.article-card__summary {
    font-size: 12px;
    color: var(--learn-muted);
    line-height: 1.5;
}

.article-card__meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.article-card__time {
    font-size: 11px;
    color: #9a9a9a;
}

.article-card__cta {
    border: none;
    background: var(--primary-orange);
    color: white;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    text-decoration: none;
}

.article-card__cta svg {
    width: 12px;
    height: 12px;
}

.article-empty {
    grid-column: 1 / -1;
    background: #fafafa;
    border: 1px dashed #e1e1e1;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    font-size: 14px;
    color: #8a8a8a;
}

.learn-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 20px 0;
}

@media (min-width: 768px) {
    .learn-pagination {
        padding: 32px 40px 0;
    }
}

.pagination-track {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f1f1;
    border-radius: 999px;
    padding: 6px 8px;
}

.pagination-dot {
    width: 20px;
    height: 6px;
    border-radius: 999px;
    background: #d4d4d4;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-dot:hover {
    background: #bbb;
}

.pagination-dot.active {
    background: var(--primary-orange);
    width: 28px;
}

.pagination-prev,
.pagination-next {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ffd3c5;
    color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-prev:hover:not(.disabled),
.pagination-next:hover:not(.disabled) {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.pagination-prev.disabled,
.pagination-next.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-prev svg,
.pagination-next svg {
    width: 14px;
    height: 14px;
}

/* Learn Article Page */
.article-main {
    padding-bottom: 80px;
}

.article-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 40px 0;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f2f2f2;
    color: #6b6b6b;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 32px;
    margin-top: 24px;
    align-items: start;
}

.article-content {
    min-width: 0;
}

.article-badge {
    display: inline-flex;
    align-items: center;
    background: #ffe8df;
    color: var(--primary-orange);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.article-title {
    font-size: 30px;
    font-weight: 700;
    color: #1f1f1f;
    margin: 12px 0 10px;
    line-height: 1.2;
}

.article-title span {
    color: var(--primary-orange);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.article-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 4px 8px;
}

.article-tag--process {
    background: #ffe8df;
    color: #c94d32;
}

.article-tag--strategy {
    background: #e8f0ff;
    color: #2a5bc4;
}

.article-tag--funding {
    background: #fff3e0;
    color: #c17a00;
}

.article-tag--beginner {
    background: #e7f7ea;
    color: #2b7a3a;
}

.article-tag--intermediate {
    background: #e8f6fb;
    color: #2a7b8d;
}

.article-tag--expert {
    background: #f3e8ff;
    color: #7a3ab8;
}

.article-meta__time {
    font-size: 11px;
    color: #8a8a8a;
}

.article-hero__image {
    margin: 20px 0 24px;
    border-radius: 16px;
    overflow: hidden;
    background: #d2d2d2;
    height: 240px;
}

.article-hero__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.article-body {
    font-size: 14px;
    line-height: 1.7;
    color: #3b3b3b;
}

.article-body p {
    margin-bottom: 14px;
}

.article-body ul,
.article-body ol {
    margin: 10px 0 18px 18px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-callout {
    background: #fff3ef;
    border: 1px solid #ffd3c5;
    border-radius: 14px;
    padding: 16px 18px;
    margin: 18px 0 24px;
}

.article-callout__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.article-section {
    margin-top: 22px;
}

.article-section__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.article-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.article-list {
    margin-left: 18px;
}

.article-steps {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    counter-reset: step;
}

.article-steps > li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 18px;
}

.article-steps > li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ffe8df;
    color: #c94d32;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Nested lists inside article-steps should use default bullets */
.article-steps ul {
    list-style: disc;
    margin-left: 18px;
    margin-top: 8px;
}

.article-steps ul li {
    padding-left: 0;
    margin-bottom: 6px;
}

.article-steps ul li::before {
    display: none;
}

.article-steps h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 6px;
}

.article-compare {
    margin: 12px 0 18px;
    border: 1px solid #ededed;
    border-radius: 12px;
    overflow-x: auto;
    background: #ffffff;
}

.article-compare table {
    width: 100%;
    border-collapse: collapse;
}

@media (min-width: 560px) {
    .article-compare table {
        min-width: 560px;
    }
}

.article-compare th,
.article-compare td {
    padding: 10px 12px;
    font-size: 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    color: #5a5a5a;
    vertical-align: top;
}

.article-compare th {
    background: #f6f6f6;
    color: #1f1f1f;
    font-weight: 600;
}

.article-compare tr:last-child td {
    border-bottom: none;
}

.article-myths {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.article-myth {
    background: #fafafa;
    border: 1px solid #ededed;
    border-radius: 12px;
    padding: 12px 14px;
}

.article-myth p {
    margin-bottom: 8px;
}

.article-myth p:last-child {
    margin-bottom: 0;
}

.article-myth__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-right: 6px;
}

.article-myth__label--myth {
    color: #c94d32;
}

.article-myth__label--fact {
    color: #2b7a3a;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: #1f1f1f;
}

.related-info-btn {
    position: relative;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.related-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #d8d8d8;
    color: #9a9a9a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.related-info-btn:hover .related-icon {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: #fff5f2;
}

.related-tooltip {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background: #fff8f5;
    color: #4a4a4a;
    border: 1px solid #ffd3c5;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    box-shadow: 0 4px 16px rgba(255, 98, 54, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s ease;
    z-index: 100;
}

.related-tooltip::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 12px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ffd3c5;
}

.related-tooltip::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 13px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff8f5;
}

.related-tooltip p {
    margin: 0 0 6px;
}

.related-tooltip p:last-child {
    margin-bottom: 0;
}

.related-tooltip strong {
    color: var(--primary-orange);
}

.related-info-btn:hover .related-tooltip,
.related-info-btn:focus .related-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.related-card {
    background: #f6f6f6;
    border-radius: 14px;
    padding: 12px;
    border: 1px solid #ededed;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.related-card__image {
    height: 120px;
    border-radius: 10px;
    background: #cfcfcf;
    overflow: hidden;
}

.related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.related-card__body h3 {
    font-size: 12px;
    font-weight: 600;
    color: #1f1f1f;
    margin-top: 8px;
    line-height: 1.4;
}

.related-card--compact .related-card__image {
    height: 80px;
}

.article-more {
    margin-top: 36px;
}

.article-more__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.article-more__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.article-more__header h2 {
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
}

.article-more__cta {
    background: #f2f2f2;
    border: none;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #6b6b6b;
    cursor: pointer;
}

.article-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.article-card--compact {
    min-height: 260px;
    padding: 12px;
}

.article-card--compact .article-card__thumb {
    height: 96px;
}

.article-card--compact .article-card__title {
    font-size: 14px;
}

.article-card--compact .article-card__summary {
    font-size: 11px;
}

.article-footer {
    margin-top: 48px;
    background: #f4f4f4;
    border-top: 1px solid #ececec;
}

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

.article-footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: #8a8a8a;
}

.article-footer__brand img {
    width: 80px;
    height: auto;
}

.article-footer__links {
    display: flex;
    gap: 20px;
    font-size: 11px;
}

.article-footer__links a {
    color: #8a8a8a;
    text-decoration: none;
}

.article-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* For Entrepreneurs Page */
.entrepreneurs-page {
    background-color: #ffffff;
}

.ent-hero {
    background: linear-gradient(315deg, rgba(218, 245, 249, 0.60) 27%, rgba(255, 247, 245, 0) 51%, rgba(255, 227.44, 219.87, 0.60) 81%, rgba(255, 208, 195, 0.60) 91%, rgba(255, 207.87, 194.74, 0.60) 100%);
    padding: 80px 20px 120px;
    text-align: center;
    position: relative;
    overflow: visible;
}

@media (min-width: 768px) {
    .ent-hero {
        padding: 120px 40px 200px;
    }
}

.ent-hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 40%, #ffffff 100%);
    pointer-events: none;
    z-index: 1;
}

.ent-hero__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ent-hero__label {
    font-size: clamp(18px, 5vw, 32px);
    font-weight: 500;
    color: rgba(76, 87, 98, 0.60);
    font-family: 'DM Sans', sans-serif;
    word-wrap: break-word;
    margin-bottom: 8px;
}

.ent-hero__title {
    font-size: clamp(40px, 10vw, 72px);
    font-weight: 600;
    color: #FF6236;
    font-family: 'DM Sans', sans-serif;
    word-wrap: break-word;
    margin-bottom: 20px;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.ent-hero__subtitle {
    font-size: clamp(18px, 4vw, 26px);
    font-weight: 400;
    color: rgba(76, 87, 98, 0.60);
    font-family: 'DM Sans', sans-serif;
    word-wrap: break-word;
    line-height: 1.3;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

@media (min-width: 768px) {
    .ent-hero__subtitle {
        margin-bottom: 40px;
    }
}

.ent-hero__flow {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

@media (min-width: 768px) {
    .ent-hero__flow {
        padding: 60px 0;
    }
}

.ent-hero__flow-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

@media (min-width: 640px) {
    .ent-hero__flow-main {
        flex-direction: row;
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .ent-hero__flow-main {
        gap: 72px;
    }
}

/* Entrance Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ent-hero__flow-text {
    position: static;
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 500;
    color: #1A1A1A;
    font-family: 'DM Sans', sans-serif;
    word-wrap: break-word;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
    text-align: center;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .ent-hero__flow-text {
        position: absolute;
        top: 20px;
        left: 0;
        margin-bottom: 0;
    }
}

.ent-hero__card {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@media (min-width: 640px) {
    .ent-hero__card {
        width: 150px;
        height: 150px;
    }
}

.ent-hero__card:nth-child(1) {
    animation-delay: 0.4s;
}

.ent-hero__card:nth-child(3) {
    animation-delay: 0.6s;
}

.ent-hero__card:nth-child(5) {
    animation-delay: 0.8s;
}

.ent-hero__card:last-of-type {
    margin-left: 0;
}

.ent-hero__card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    object-fit: contain;
    opacity: 0.85;
    z-index: 0;
}

@media (min-width: 640px) {
    .ent-hero__card-icon {
        width: 200px;
        height: 200px;
    }
}

.ent-hero__card-label {
    position: relative;
    z-index: 1;
    font-size: clamp(40px, 10vw, 72px);
    font-weight: 500;
    color: #1A1A1A;
    font-family: 'DM Sans', sans-serif;
    word-wrap: break-word;
}

.ent-hero__flow-arrow {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    color: rgba(26, 26, 26, 0.80);
    font-family: 'DM Sans', sans-serif;
    word-wrap: break-word;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

@media (max-width: 639px) {
    .ent-hero__flow-arrow {
        transform: rotate(90deg);
    }
}

.ent-hero__flow-arrow:nth-child(2) {
    animation-delay: 0.5s;
}

.ent-hero__flow-arrow:nth-child(4) {
    animation-delay: 0.7s;
}

.ent-hero__flow-note {
    position: static;
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 500;
    color: #1A1A1A;
    font-family: 'DM Sans', sans-serif;
    word-wrap: break-word;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
    text-align: center;
    margin-top: 16px;
}

@media (min-width: 640px) {
    .ent-hero__flow-note {
        position: absolute;
        bottom: 20px;
        right: 0;
        margin-top: 0;
    }
}

/* Features Section */
.ent-features {
    padding: 60px 20px;
    background: white;
}

@media (min-width: 768px) {
    .ent-features {
        padding: 80px 40px;
    }
}

.ent-features__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ent-features__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 60px;
}

.ent-features__label {
    font-size: clamp(18px, 5vw, 32px);
    font-weight: 500;
    color: rgba(76, 87, 98, 0.60);
    font-family: 'DM Sans', sans-serif;
    text-align: center;
}

.ent-features__title {
    font-size: clamp(36px, 9vw, 72px);
    font-weight: 600;
    color: #FF6236;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.ent-features__section-title {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 500;
    color: #000000;
    font-family: 'DM Sans', sans-serif;
    white-space: normal;
    margin-bottom: 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .ent-features__section-title {
        white-space: nowrap;
        margin-bottom: 24px;
    }
}

/* Mobile Dropdown */
.ent-features__dropdown-container {
    display: block;
    width: 100%;
    max-width: 500px;
    margin-bottom: 32px;
}

@media (min-width: 1024px) {
    .ent-features__dropdown-container {
        display: none;
    }
}

.ent-features__dropdown {
    width: 100%;
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
    background-color: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23FF6236' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
    transition: all 0.2s ease;
    min-height: 44px;
}

.ent-features__dropdown:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 98, 54, 0.1);
}

.ent-features__dropdown:hover {
    border-color: var(--primary-orange);
}

.ent-features__grid {
    display: none;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

@media (min-width: 1024px) {
    .ent-features__grid {
        display: grid;
    }
}

@media (min-width: 1024px) {
    .ent-features__grid {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        margin-bottom: 60px;
    }
}

.ent-features__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.ent-features__dots-column {
    display: none;
}

@media (min-width: 1024px) {
    .ent-features__dots-column {
        display: flex;
        align-items: center;
        padding-top: 11px;
        margin-bottom: 24px;
    }
}

.ent-features__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.ent-feature-btn {
    padding: 14px 24px;
    background: #F1F1F1;
    border-radius: 100px;
    outline: 2px solid rgba(181, 181, 181, 0.20);
    outline-offset: -2px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 500;
    color: #4A4A4A;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: normal;
    text-align: center;
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .ent-feature-btn {
        padding: 14px 20px;
        white-space: normal;
        width: 240px;
        min-width: 240px;
        min-height: 50px;
    }
}

.ent-feature-btn.active {
    background: #FFE2DA;
    color: #FF6236;
    outline-color: rgba(255, 98, 54, 0.20);
}

.ent-feature-btn:hover {
    background: #FFE2DA;
    color: #FF6236;
    outline-color: rgba(255, 98, 54, 0.20);
}

.ent-features__dots {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.ent-features__dots .dot {
    width: 6px;
    height: 6px;
    background: rgba(138, 138, 138, 0.32);
    border-radius: 9999px;
}

/* Feature Showcase */
.ent-feature-showcase {
    background: linear-gradient(133deg, #FFE2DA 51%, #E9F6F8 100%);
    border-radius: 16px;
    outline: 3px solid rgba(255, 98, 54, 0.20);
    outline-offset: -3px;
    padding: 47px 27px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .ent-feature-showcase {
        flex-direction: column;
        padding: 24px 16px;
        gap: 24px;
    }
}

.ent-feature-showcase__preview {
    flex-shrink: 0;
}

.ent-feature-showcase__preview img,
.ent-feature-showcase__preview video {
    width: 732px;
    height: 474px;
    border-radius: 12px;
    object-fit: contain;
    background: #f9f9f9;
}

@media (max-width: 768px) {
    .ent-feature-showcase__preview {
        background: #f5f5f5;
        border-radius: 16px;
        padding: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }

    .ent-feature-showcase__preview img,
    .ent-feature-showcase__preview video {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
}

.ent-showcase__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.ent-showcase__header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.ent-showcase__status {
    background: var(--primary-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.ent-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ent-showcase__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ent-showcase__item--full {
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 8px;
}

.ent-showcase__icon {
    width: 40px;
    height: 40px;
    background: #fff5f2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ent-showcase__item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.ent-showcase__item p {
    font-size: 13px;
    font-weight: 400;
    color: var(--learn-muted);
    line-height: 1.5;
}

.ent-feature-showcase__info {
    width: 433px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (max-width: 768px) {
    .ent-feature-showcase__info {
        width: 100%;
        gap: 16px;
    }
}

.ent-feature-showcase__info h3 {
    font-size: 40px;
    font-weight: 500;
    color: #1A1A1A;
    font-family: 'DM Sans', sans-serif;
}

@media (max-width: 768px) {
    .ent-feature-showcase__info h3 {
        font-size: 24px;
    }
}

.ent-feature-showcase__info p {
    font-size: 24px;
    font-weight: 400;
    color: #1A1A1A;
    font-family: 'DM Sans', sans-serif;
    line-height: 31.2px;
}

@media (max-width: 768px) {
    .ent-feature-showcase__info p {
        font-size: 16px;
        line-height: 22px;
    }
}

/* Feature Videos */
.feature-video {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-video video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    background: #f5f5f5;
    min-height: 300px;
}

.video-placeholder-text {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--learn-muted);
    padding: 12px;
}

.feature-video--empty {
    width: 732px;
    height: 474px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    position: relative;
}

@media (max-width: 768px) {
    .feature-video--empty {
        width: 100%;
        height: auto;
        min-height: 250px;
        border-radius: 8px;
    }
}

.feature-video__coming-soon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.feature-video__coming-soon p {
    font-size: 32px;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.40);
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    margin: 0;
}

.feature-info {
    width: 100%;
}

/* Every Stage Section */
.ent-stage {
    padding: 60px 114px;
    background: #ffffff;
}

.ent-stage__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.ent-stage__header {
    max-width: 449px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.ent-stage__label {
    font-size: 32px;
    font-weight: 500;
    color: rgba(76, 87, 98, 0.60);
    font-family: 'DM Sans', sans-serif;
    text-align: center;
}

.ent-stage__title {
    font-size: 72px;
    font-weight: 600;
    color: #FF6236;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.ent-stage__subtitle {
    font-size: 26px;
    font-weight: 400;
    color: rgba(76, 87, 98, 0.60);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.4;
    text-align: center;
}

.ent-stage__grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    gap: 24px;
    grid-auto-rows: 320px;
    justify-content: center;
}

.ent-stage__card {
    width: 300px;
    height: 320px;
    border-radius: 20px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.08);
    padding: 24px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Card Color Variants */
.ent-stage__card--cyan {
    background: linear-gradient(136deg, #F8F8F8 0%, #C2EAED 100%);
}

.ent-stage__card--pink {
    background: linear-gradient(136deg, #F8F8F8 0%, #FFD0C3 100%);
}

.ent-stage__card--beige {
    background: linear-gradient(136deg, #F8F8F8 0%, #FFD0C3 100%);
}

/* Large card variant */
.ent-stage__card--large {
    grid-row: span 2;
    height: 664px;
}

/* Background decorative icon */
.ent-stage__card-bg-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    opacity: 1;
}

.ent-stage__card-bg-icon svg {
    width: 100%;
    height: auto;
    max-height: 100%;
}

.ent-stage__card-bg-icon img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom left;
}

.ent-stage__card h3 {
    font-size: 28px;
    font-weight: 500;
    color: #000000;
    font-family: 'DM Sans', sans-serif;
    line-height: 36px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ent-stage__card p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(26, 26, 26, 0.60);
    font-family: 'DM Sans', sans-serif;
    line-height: 22px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Industries Section */
.ent-industries {
    padding: 40px 20px;
    background: white;
}

@media (min-width: 768px) {
    .ent-industries {
        padding: 60px 40px;
    }
}

@media (min-width: 1024px) {
    .ent-industries {
        padding: 60px 114px;
    }
}

.ent-industries__container {
    max-width: 1284px;
    margin: 0 auto;
    text-align: center;
}

.ent-industries__label {
    font-size: 18px;
    font-weight: 400;
    color: rgba(76, 87, 98, 0.60);
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
}

@media (min-width: 768px) {
    .ent-industries__label {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .ent-industries__label {
        font-size: 32px;
    }
}

.ent-industries__title {
    font-size: 36px;
    font-weight: 500;
    color: #FF6236;
    margin-bottom: 32px;
    font-family: 'DM Sans', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

@media (min-width: 768px) {
    .ent-industries__title {
        font-size: 48px;
        margin-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    .ent-industries__title {
        font-size: 72px;
    }
}

.ent-industries__tags {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .ent-industries__tags {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }

    .ent-industries__tags > span {
        grid-column: span 2;
    }

    .ent-industries__tags > span:nth-child(7) {
        grid-column: 2 / 4;
    }

    .ent-industries__tags > span:nth-child(8) {
        grid-column: 4 / 6;
    }
}

.ent-industry__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    outline: 2px solid;
    outline-offset: -2px;
    transition: all 0.2s ease;
    cursor: pointer;
    width: 100%;
}

@media (min-width: 768px) {
    .ent-industry__tag {
        padding: 18px 14px;
        border-radius: 16px;
        font-size: 18px;
        width: auto;
    }
}

.ent-industry__tag svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .ent-industry__tag svg {
        width: 24px;
        height: 24px;
    }
}

.ent-industry__tag:hover {
    transform: translateY(-2px);
}

.ent-industry__tag--orange {
    background: #FFF8F6;
    color: #FF6236;
    outline-color: rgba(255, 98, 54, 0.20);
}

.ent-industry__tag--orange.active {
    background: #FF6236;
    color: white;
    outline-color: #FF6236;
}

.ent-industry__tag--cyan {
    background: #F5F7FE;
    color: #31C8DF;
    outline-color: rgba(49, 200, 223, 0.20);
}

.ent-industry__tag--cyan.active {
    background: #31C8DF;
    color: white;
    outline-color: #31C8DF;
}

.ent-industries__description {
    margin-top: 24px;
    margin-bottom: 24px;
    min-height: 60px;
}

@media (min-width: 768px) {
    .ent-industries__description {
        margin-top: 40px;
        min-height: 80px;
    }
}

.industry-description {
    animation: fadeIn 0.3s ease-in;
}

.industry-description p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(26, 26, 26, 0.80);
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 12px;
}

@media (min-width: 768px) {
    .industry-description p {
        font-size: 20px;
        line-height: 1.6;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .industry-description p {
        font-size: 24px;
    }
}

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

.ent-industries__note {
    font-size: 24px;
    font-weight: 400;
    color: rgba(76, 87, 98, 0.60);
    font-family: 'DM Sans', sans-serif;
    margin-top: 24px;
}

/* Handled With Care Section */
.ent-care {
    padding: 40px 20px;
    background: white;
}

@media (min-width: 768px) {
    .ent-care {
        padding: 50px 40px;
    }
}

@media (min-width: 1024px) {
    .ent-care {
        padding: 57px 131px;
    }
}

.ent-care__container {
    max-width: 1284px;
    margin: 0 auto;
    text-align: center;
}

.ent-care__label {
    font-size: 16px;
    font-weight: 500;
    color: rgba(76, 87, 98, 0.60);
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
}

@media (min-width: 768px) {
    .ent-care__label {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .ent-care__label {
        font-size: 30px;
        margin-bottom: 0;
    }
}

.ent-care__title {
    font-size: 36px;
    font-weight: 600;
    color: #FF6236;
    line-height: 1.2;
    margin-bottom: 32px;
    font-family: 'DM Sans', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

@media (min-width: 768px) {
    .ent-care__title {
        font-size: 52px;
        margin-bottom: 48px;
    }
}

@media (min-width: 1024px) {
    .ent-care__title {
        font-size: 68px;
        line-height: 82px;
        margin-bottom: 57px;
    }
}

.ent-care__grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .ent-care__grid {
        gap: 48px;
    }
}

@media (min-width: 1024px) {
    .ent-care__grid {
        gap: 76px;
        align-items: center;
    }
}

.ent-care__card {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .ent-care__card {
        max-width: 340px;
        gap: 20px;
    }
}

.ent-care__icon {
    background: #DBF5F8;
    border-radius: 12px;
    outline: 1px solid rgba(47, 186, 206, 0.20);
    outline-offset: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    width: 100px;
    height: 100px;
}

@media (min-width: 768px) {
    .ent-care__icon {
        padding: 19px;
        width: 114px;
        height: 118px;
    }
}

.ent-care__icon svg {
    width: 60px;
    height: 64px;
}

@media (min-width: 768px) {
    .ent-care__icon svg {
        width: 76px;
        height: 80px;
    }
}

.ent-care__card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 768px) {
    .ent-care__card-content {
        gap: 11px;
    }
}

.ent-care__card h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .ent-care__card h3 {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .ent-care__card h3 {
        font-size: 38px;
        line-height: 49px;
    }
}

.ent-care__card p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(26, 26, 26, 0.60);
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    line-height: 1.5;
    padding: 0 12px;
}

@media (min-width: 768px) {
    .ent-care__card p {
        font-size: 18px;
        line-height: 1.6;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .ent-care__card p {
        font-size: 23px;
    }
}

/* Waitlist Modal */
.waitlist-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: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.2s ease;
}

.waitlist-modal.active {
    display: flex;
}

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

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

.waitlist-modal__content {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.3s ease;
}

.waitlist-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--text-secondary);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.waitlist-modal__close:hover {
    background: #f0f0f0;
    color: var(--text-primary);
}

.waitlist-modal__header {
    text-align: center;
    margin-bottom: 20px;
}

.waitlist-modal__icon {
    width: 60px;
    height: 60px;
    background: var(--light-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.waitlist-modal__icon svg {
    width: 32px;
    height: 32px;
}

.waitlist-modal__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 6px;
}

.waitlist-modal__subtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--learn-muted);
    line-height: 1.4;
}

.waitlist-modal__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.waitlist-modal__input {
    background-color: white;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    width: 100%;
    min-height: 44px;
    transition: all 0.2s ease;
}

.waitlist-modal__input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 98, 54, 0.1);
}

.waitlist-modal__input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.waitlist-modal__button {
    background-color: var(--primary-orange);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
}

.waitlist-modal__button:hover {
    background-color: #e5562f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 98, 54, 0.3);
}

.waitlist-modal__button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.waitlist-modal__message {
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

.waitlist-modal__message--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.waitlist-modal__message--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.waitlist-modal__note {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Referral Link Display Styles */
.referral-link-container {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.referral-link-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    background-color: #f9f9f9;
    color: #333;
}

.copy-link-btn {
    padding: 12px 24px;
    background-color: #FF6236;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.copy-link-btn:hover {
    background-color: #FF6236;
}

.copy-success-message {
    text-align: center;
    color: #155724;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Share Buttons */
.share-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    background-color: white;
    min-height: 44px;
}

.share-btn:hover {
    border-color: #2FBACF;
    color: #2FBACF;
}

.share-btn--twitter:hover {
    background-color: #1DA1F2;
    border-color: #1DA1F2;
    color: white;
}

.share-btn--facebook:hover {
    background-color: #4267B2;
    border-color: #4267B2;
    color: white;
}

.share-btn--linkedin:hover {
    background-color: #0077B5;
    border-color: #0077B5;
    color: white;
}

.share-btn--email:hover {
    background-color: #EA4335;
    border-color: #EA4335;
    color: white;
}

.share-btn svg {
    flex-shrink: 0;
}

/* Waitlist Stats Cards */
.waitlist-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 12px;
}

.waitlist-stat-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
}

.waitlist-stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 6px;
}

.waitlist-stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #666;
    line-height: 1.3;
}

/* Waitlist Incentive Banner */
.waitlist-incentive {
    background: #FFF5F0;
    border: 1px solid #FFE5D9;
    border-radius: 12px;
    padding: 10px 14px;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #FF6236;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.waitlist-incentive::before {
    content: 'ℹ️';
    font-size: 16px;
}

/* Leaderboard Section */
.waitlist-leaderboard {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.waitlist-leaderboard__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.waitlist-leaderboard__list {
    max-height: 250px;
    overflow-y: auto;
}

.waitlist-leaderboard__item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 6px;
    transition: background 0.2s;
}

.waitlist-leaderboard__item:hover {
    background: #f9f9f9;
}

.waitlist-leaderboard__rank {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    min-width: 40px;
}

.waitlist-leaderboard__name {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #1a1a1a;
}

.waitlist-leaderboard__loading,
.waitlist-leaderboard__empty {
    text-align: center;
    padding: 32px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #999;
}

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

    .referral-link-container {
        flex-direction: column;
    }

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

    .waitlist-stat-number {
        font-size: 32px;
    }

    .waitlist-incentive {
        font-size: 13px;
    }

    .waitlist-modal__content {
        padding: 24px;
        max-height: 95vh;
    }

    .waitlist-modal__header {
        margin-bottom: 16px;
    }

    .waitlist-stat-card {
        padding: 16px;
    }

    .waitlist-leaderboard {
        margin-top: 24px;
        padding-top: 16px;
    }

    .waitlist-leaderboard__list {
        max-height: 200px;
    }
}

/* New Homepage Design */
.hero-section-new {
    background: #fafafa;
    padding: 100px 40px;
}

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

.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon svg {
    width: 200px;
    height: 200px;
}

.hero-right h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.hero-note {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hero-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
}

.hero-email-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

.hero-email-input::placeholder {
    color: #999;
}

/* Info Section New */
.info-section-new {
    background: #fff0ec;
    padding: 80px 140px;
}

.info-card-new {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-card-new h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 24px;
}

.info-card-new p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.info-card-new strong {
    font-weight: 700;
}

.btn-learn-more {
    background: transparent;
    border: 1.5px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 10px 20px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-learn-more:hover {
    background: var(--primary-orange);
    color: white;
}

/* How It Works New */
.how-it-works-new {
    background: white;
    padding: 80px 40px;
}

.how-container {
    max-width: 1000px;
    margin: 0 auto;
}

.how-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.how-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.how-step {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
}

.how-step:last-child {
    margin-bottom: 0;
}

.how-step-left {
    display: flex;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.how-step-right {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.how-step-right img {
    width: 100%;
    height: auto;
    display: block;
}

/* Final CTA New */
.final-cta-new {
    background: white;
    padding: 100px 40px;
    text-align: center;
}

.final-cta-new h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 16px;
    line-height: 1.2;
}

.final-cta-new .cta-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 16px;
    justify-content: center;
}

.cta-email-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

.cta-email-input::placeholder {
    color: #999;
}

.btn-primary-cta {
    background: var(--primary-orange);
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-primary-cta:hover {
    background: #e5562f;
}

.final-cta-new .cta-note {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Footer New */
.footer-new {
    background: #fafafa;
    padding: 60px 40px 40px;
    text-align: center;
}

.footer-content {
    margin-bottom: 24px;
}

.footer-logo-new {
    width: 80px;
    height: auto;
    margin: 0 auto 16px;
}

.footer-logo-new img {
    width: 100%;
    height: auto;
}

.footer-tagline-new {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-copyright-new {
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links-row a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-social-new {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.footer-social-new a {
    display: inline-block;
}

.footer-disclaimer-new {
    font-size: 10px;
    color: var(--text-secondary);
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.7;
}

/* ================================
   V2 LANDING PAGE STYLES
   ================================ */

/* Hero Section V2 */
.hero-section-v2 {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
    overflow: visible;
    background: linear-gradient(315deg, rgba(218, 245, 249, 0.60) 27%, rgba(255, 247, 245, 0) 51%, rgba(255, 227.44, 219.87, 0.60) 81%, rgba(255, 208, 195, 0.60) 91%, rgba(255, 207.87, 194.74, 0.60) 100%);
}

@media (min-width: 768px) {
    .hero-section-v2 {
        min-height: 600px;
        padding: 120px 40px 200px;
    }
}

.hero-lightbulb {
    position: absolute;
    right: -200px;
    top: -100px;
    width: 600px;
    height: 600px;
    z-index: 0;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
    pointer-events: none;
}

@media (min-width: 480px) {
    .hero-lightbulb {
        width: 800px;
        height: 800px;
        right: -250px;
        top: -150px;
    }
}

@media (min-width: 768px) {
    .hero-lightbulb {
        width: 1000px;
        height: 1000px;
        right: calc(-5% + 50px);
        top: calc(5% - 350px);
    }
}

@media (min-width: 1024px) {
    .hero-lightbulb {
        right: calc(5% + 75px);
        top: calc(5% - 415px);
        width: 1440px;
        height: 1440px;
    }
}

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

.hero-lightbulb dotlottie-player {
    width: 100%;
    height: 100%;
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 40%, #ffffff 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-bg-blob {
    position: absolute;
    border-radius: 10000px;
    z-index: 0;
}

.hero-bg-blob--pink {
    width: 375.27px;
    height: 375.27px;
    right: 100px;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 158.35, 131.62, 0.60) 0%, rgba(255, 228.58, 221.27, 0.60) 100%);
    box-shadow: 50px 50px 50px rgba(0, 0, 0, 0.1);
    filter: blur(25px);
}

.hero-bg-blob--blue {
    width: 107.44px;
    height: 58.28px;
    top: 150px;
    right: 100px;
    background: linear-gradient(90deg, rgba(255, 158, 132, 0.48) 0%, rgba(255, 158.35, 131.62, 0.60) 100%);
    box-shadow: 28px 28px 28px rgba(0, 0, 0, 0.05);
    filter: blur(14px);
    transform: rotate(-195deg);
}

.hero-bg-blob--pink::before {
    content: '';
    position: absolute;
    width: 107.44px;
    height: 58.28px;
    left: -500px;
    top: 50px;
    background: linear-gradient(90deg, rgba(255, 158, 132, 0.48) 0%, rgba(255, 158.35, 131.62, 0.60) 100%);
    box-shadow: 28px 28px 28px rgba(0, 0, 0, 0.05);
    border-radius: 10000px;
    filter: blur(14px);
    transform: rotate(-345deg);
}

.hero-bg-blob--pink::after {
    content: '';
    position: absolute;
    width: 107.81px;
    height: 48.56px;
    left: -450px;
    bottom: 100px;
    background: linear-gradient(90deg, rgba(255, 158, 132, 0.48) 0%, rgba(255, 158.35, 131.62, 0.60) 100%);
    box-shadow: 28px 28px 28px rgba(0, 0, 0, 0.05);
    border-radius: 10000px;
    filter: blur(14px);
    transform: rotate(-180deg);
}

.hero-bg-blob--blue::before {
    content: '';
    position: absolute;
    width: 107.81px;
    height: 58.28px;
    right: -250px;
    top: 200px;
    background: linear-gradient(90deg, rgba(255, 158, 132, 0.48) 0%, rgba(255, 158.35, 131.62, 0.60) 100%);
    box-shadow: 28px 28px 28px rgba(0, 0, 0, 0.05);
    border-radius: 10000px;
    filter: blur(14px);
}

.hero-bg-blob--blue::after {
    content: '';
    position: absolute;
    width: 116.04px;
    height: 58.28px;
    left: 200px;
    top: -150px;
    background: linear-gradient(90deg, rgba(255, 158, 132, 0.48) 0%, rgba(255, 158.35, 131.62, 0.60) 100%);
    box-shadow: 28px 28px 28px rgba(0, 0, 0, 0.05);
    border-radius: 10000px;
    filter: blur(14px);
    transform: rotate(-270deg);
}

.hero-content-v2 {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    animation: fadeInUp 0.8s ease-out;
}

@media (min-width: 768px) {
    .hero-content-v2 {
        max-width: 700px;
        padding: 0;
    }
}

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

.hero-content-v2 h1 {
    font-size: clamp(32px, 8vw, 72px);
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: 'DM Sans', sans-serif;
    word-wrap: break-word;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (min-width: 768px) {
    .hero-content-v2 h1 {
        margin-bottom: 20px;
    }
}

.hero-content-v2 h1 .underline-text {
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.hero-content-v2 h1 .underline-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineSlide 0.8s ease-out 0.8s forwards;
}

@keyframes underlineSlide {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.hero-subtitle-v2 {
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 400;
    color: #4A4A4A;
    line-height: 1.5;
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-badges {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .hero-badges {
        margin-bottom: 32px;
    }
}

.hero-badge {
    padding: 0 12px;
    background: transparent;
    border: none;
    font-size: clamp(14px, 3.5vw, 20px);
    font-weight: 500;
    color: #4A4A4A;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .hero-badge {
        padding: 0 20px;
    }
}

.hero-badge:hover {
    color: #FF6236;
}

.hero-badge:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: #D9D9D9;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .hero-badge:not(:last-child)::after {
        width: 2px;
        height: 24px;
    }
}

.hero-divider {
    width: 100%;
    max-width: 616px;
    height: 1px;
    background: rgba(74, 74, 74, 0.20);
    border-radius: 2px;
    margin: 0 auto 24px;
    animation: scaleIn 0.6s ease-out 0.5s both;
}

@media (min-width: 768px) {
    .hero-divider {
        margin: 0 auto 32px;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

.hero-email-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 616px;
    margin: 0 auto 12px;
    padding: 16px 20px;
    background: rgba(32.47, 32.47, 32.47, 0.12);
    border-radius: 100px;
    backdrop-filter: blur(20px);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
    align-items: stretch;
    justify-content: space-between;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 480px) {
    .hero-email-form {
        flex-direction: row;
        gap: 0;
        padding: 12px 24px;
        align-items: center;
    }
}

.hero-email-form:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-email-input {
    flex: 1;
    padding: 8px 0;
    border: none;
    background: transparent;
    font-size: clamp(16px, 4vw, 20px);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    outline: none;
    text-align: center;
    min-height: 44px;
}

@media (min-width: 480px) {
    .hero-email-input {
        padding: 0;
        text-align: left;
    }
}

.hero-email-input::placeholder {
    color: #8A8A8A;
}

.hero-submit-btn {
    padding: 12px 16px !important;
    white-space: nowrap;
    font-size: clamp(16px, 4vw, 20px) !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 500 !important;
    color: #F9FAFB !important;
    word-wrap: break-word;
    background: #FF6236 !important;
    border-radius: 100px !important;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

@media (min-width: 480px) {
    .hero-submit-btn {
        padding: 14px 18px !important;
    }
}

.hero-submit-btn:hover {
    transform: scale(1.05);
    background: #FF7750 !important;
}

.hero-submit-btn:active {
    transform: scale(0.98);
}

.hero-note {
    font-size: 14px;
    animation: fadeInUp 0.8s ease-out 0.7s both;
    color: #8A8A8A;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

/* Info Section V2 */
.info-section-v2 {
    padding: 30px 20px;
    background: #ffffff;
}

@media (min-width: 768px) {
    .info-section-v2 {
        padding: 80px 40px;
    }
}

.info-card-v2 {
    max-width: 800px;
    margin: 0 auto;
    background: #F5F5F5;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
    .info-card-v2 {
        border-radius: 32px;
        padding: 60px 80px;
    }
}

.info-label {
    font-size: 14px;
    color: #9b9b9b;
    margin-bottom: 12px;
}

.info-card-v2 h2 {
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.3;
}

.info-card-v2 h2:not(:first-of-type) {
    margin-top: 24px;
}

.info-description {
    font-size: clamp(16px, 3.5vw, 20px);
    color: #1A1A1A;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .info-description {
        margin-bottom: 24px;
    }
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-learn-more:hover {
    background: #e5562f;
}

.btn-learn-more .arrow-icon {
    width: 20px;
    height: 20px;
}

/* How It Works V2 */
.how-it-works-v2 {
    padding: 60px 20px;
    background: white;
}

@media (min-width: 768px) {
    .how-it-works-v2 {
        padding: 80px 40px;
    }
}

.section-header-v2 {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 14px;
    color: #9b9b9b;
    margin-bottom: 12px;
}

.section-header-v2 h2 {
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 600;
    color: #1A1A1A;
    font-family: 'DM Sans', sans-serif;
    word-wrap: break-word;
    line-height: 1.3;
}

.steps-container-v2 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

@media (min-width: 768px) {
    .steps-container-v2 {
        gap: 80px;
    }
}

.step-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

@media (min-width: 768px) {
    .step-v2 {
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .step-v2 {
        gap: 60px;
    }
}

.step-v2.step-visible {
    opacity: 1;
    transform: translateY(0);
}

.step-v2:nth-child(1) {
    transition-delay: 0.1s;
}

.step-v2:nth-child(2) {
    transition-delay: 0.2s;
}

.step-v2:nth-child(3) {
    transition-delay: 0.3s;
}

@media (min-width: 768px) {
    .step-v2:nth-child(even) {
        grid-template-columns: 1.5fr 1fr;
    }

    .step-v2:nth-child(even) .step-text-v2 {
        order: 2;
    }

    .step-v2:nth-child(even) .step-preview-v2 {
        order: 1;
    }
}

.step-text-v2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-v2 .step-text-v2 {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-v2:nth-child(even) .step-text-v2 {
    transform: translateX(30px);
}

.step-v2.step-visible .step-text-v2 {
    opacity: 1;
    transform: translateX(0);
}

.step-v2 .step-preview-v2 {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-v2.step-visible .step-preview-v2 {
    opacity: 1;
    transform: scale(1);
}

.step-number-v2 {
    width: 48px;
    height: 48px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.step-v2.step-visible .step-number-v2 {
    animation: pulse 0.6s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.step-text-v2 h3 {
    font-size: clamp(22px, 5vw, 28px);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.step-text-v2 p {
    font-size: clamp(15px, 3vw, 16px);
    color: #6b6b6b;
    line-height: 1.6;
}

.step-preview-v2 {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .step-preview-v2 {
        border-radius: 24px;
        padding: 24px;
    }
}

.step-preview-v2 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    max-width: 100%;
}

@media (min-width: 768px) {
    .step-preview-v2 img {
        border-radius: 12px;
    }
}

/* Final CTA V2 */
.final-cta-v2 {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

@media (min-width: 768px) {
    .final-cta-v2 {
        padding: 100px 40px;
    }
}

.final-cta-v2 h2 {
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 600;
    color: #1A1A1A;
    font-family: 'DM Sans', sans-serif;
    word-wrap: break-word;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-subtitle-v2 {
    font-size: clamp(16px, 4vw, 20px);
    color: #4A4A4A;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    margin-bottom: 32px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .cta-subtitle-v2 {
        margin-bottom: 40px;
    }
}

.cta-email-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 616px;
    margin: 0 auto 12px;
    padding: 16px 20px;
    background: rgba(32.47, 32.47, 32.47, 0.12);
    border-radius: 100px;
    backdrop-filter: blur(20px);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
    align-items: stretch;
    justify-content: space-between;
}

@media (min-width: 480px) {
    .cta-email-form {
        flex-direction: row;
        gap: 0;
        padding: 12px 24px;
        align-items: center;
    }
}

.cta-email-input {
    flex: 1;
    padding: 8px 0;
    border: none;
    background: transparent;
    font-size: clamp(16px, 4vw, 20px);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    outline: none;
    text-align: center;
    min-height: 44px;
}

@media (min-width: 480px) {
    .cta-email-input {
        padding: 0;
        text-align: left;
    }
}

.cta-email-input::placeholder {
    color: #8A8A8A;
}

.cta-submit-btn {
    padding: 12px 16px !important;
    white-space: nowrap;
    font-size: clamp(16px, 4vw, 20px) !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 500 !important;
    color: #F9FAFB !important;
    word-wrap: break-word;
    background: #FF6236 !important;
    border-radius: 100px !important;
}

@media (min-width: 480px) {
    .cta-submit-btn {
        padding: 14px 18px !important;
    }
}

.cta-note-v2 {
    font-size: 14px;
    color: #8A8A8A;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

/* Footer V2 */
.footer-v2 {
    padding: 40px 20px 32px;
    background: #F9FAFB;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

@media (min-width: 768px) {
    .footer-v2 {
        padding: 60px 40px 40px;
    }
}

.footer-logo-v2 {
    width: 100px;
    margin: 0 auto 24px;
}

@media (min-width: 768px) {
    .footer-logo-v2 {
        width: 120px;
        margin: 0 auto 32px;
    }
}

.footer-logo-v2 img {
    width: 100%;
    height: auto;
}

.footer-social-v2 {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .footer-social-v2 {
        gap: 20px;
        margin-bottom: 32px;
    }
}

.footer-social-v2 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.footer-social-v2 a:hover {
    opacity: 0.7;
}

.footer-links-v2 {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .footer-links-v2 {
        gap: 24px;
        margin-bottom: 32px;
    }
}

.footer-link-v2 {
    font-size: 13px;
    color: #6b6b6b;
    text-decoration: none;
    transition: color 0.2s ease;
}

@media (min-width: 768px) {
    .footer-link-v2 {
        font-size: 14px;
    }
}

.footer-link-v2:hover {
    color: #FF6236;
}

.footer-tagline-v2 {
    font-size: 14px;
    color: #6b6b6b;
    margin-bottom: 12px;
}

.footer-copyright-v2 {
    font-size: 13px;
    color: #9b9b9b;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-section {
        flex-direction: column;
        gap: 40px;
    }

    .info-section {
        padding: 80px;
    }

    .info-card {
        padding: 40px 80px;
    }

    .steps-container {
        padding: 0 40px;
    }

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

    .step-image, .step-images {
        max-width: 100%;
    }

    .final-cta {
        padding: 80px 200px;
    }

    .footer-container {
        flex-direction: column;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .ent-feature-showcase {
        grid-template-columns: 1fr;
    }

    .ent-stage__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ent-care__grid {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .info-section {
        padding: 60px 40px;
    }

    .info-card {
        padding: 30px 40px;
    }

    .section-header h2 {
        font-size: 40px;
    }

    .final-cta {
        padding: 60px 40px;
    }

    .learn-hero__container,
    .learn-search,
    .learn-articles,
    .learn-pagination {
        padding-left: 24px;
        padding-right: 24px;
    }

    .learn-hero__grid {
        gap: 24px;
    }

    .learn-search__controls {
        flex-direction: column;
        align-items: stretch;
    }

    .article-hero__container,
    .article-more__container,
    .article-footer__container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .article-layout {
        gap: 24px;
    }

    .article-title {
        font-size: 24px;
    }

    .article-hero__image {
        height: 200px;
    }

    .article-grid--compact {
        grid-template-columns: 1fr;
    }

    .article-footer__container {
        flex-direction: column;
        align-items: flex-start;
    }

    .ent-hero__title {
        font-size: 40px;
    }

    .ent-hero__card-label {
        font-size: 22px;
    }

    .ent-features__title,
    .ent-stage__title,
    .ent-industries__title,
    .ent-care__title {
        font-size: 36px;
    }

    .ent-showcase__grid {
        grid-template-columns: 1fr;
    }

    .ent-stage__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        grid-auto-rows: auto;
    }

    .ent-stage__card {
        width: 100%;
        height: auto;
        min-height: 220px;
        padding: 20px 16px;
        gap: 8px;
    }

    .ent-stage__card h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .ent-stage__card p {
        font-size: 13px;
        line-height: 18px;
    }

    .ent-stage__card-bg-icon {
        width: 50%;
        height: 50%;
        opacity: 0.8;
    }

    .ent-stage {
        padding: 20px 20px 40px;
    }

    .ent-stage__header {
        margin-bottom: 32px;
    }

    .ent-stage__container {
        gap: 32px;
    }

    .ent-care__grid {
        flex-direction: column;
        align-items: center;
    }

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

    .info-section-new {
        padding: 60px 40px;
    }

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

    .how-step-left {
        flex-direction: row;
    }

    .cta-form {
        flex-direction: column;
    }

    .cta-email-input,
    .btn-primary-cta {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-right h1 {
        font-size: 40px;
    }

    .hero-form {
        flex-direction: column;
    }

    .hero-email-input {
        width: 100%;
    }

    .info-card-new h2 {
        font-size: 28px;
    }

    .how-header h2 {
        font-size: 32px;
    }

    .final-cta-new h2 {
        font-size: 32px;
    }

    .footer-links-row {
        flex-direction: column;
        gap: 16px;
    }

    /* V2 Responsive Styles */
    .hero-content-v2 h1 {
        font-size: 48px;
    }

    .hero-lightbulb {
        width: 720px;
        height: 720px;
        right: calc(-10% + 75px);
        top: calc(5% - 315px);
    }

    .hero-divider {
        width: 90%;
        max-width: 616px;
    }

    .hero-email-form {
        max-width: 85%;
        flex-direction: column;
        gap: 16px;
        padding: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .hero-email-input {
        padding: 16px 20px;
        text-align: center;
        background: rgba(32.47, 32.47, 32.47, 0.12);
        backdrop-filter: blur(20px);
        box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
        border-radius: 100px;
    }

    .hero-email-form:hover {
        transform: none;
        box-shadow: none;
    }

    .cta-email-form {
        max-width: 90%;
        flex-direction: column;
        gap: 16px;
        padding: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .cta-email-input {
        padding: 16px 20px;
        text-align: center;
        background: rgba(32.47, 32.47, 32.47, 0.12);
        backdrop-filter: blur(20px);
        box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
        border-radius: 100px;
    }

    .info-card-v2 {
        padding: 40px 24px;
    }

    .info-card-v2 h2 {
        font-size: 28px;
    }

    .section-header-v2 h2,
    .final-cta-v2 h2 {
        font-size: 32px;
    }

    .step-v2 {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }

    .step-v2:nth-child(even) .step-text-v2,
    .step-v2:nth-child(even) .step-preview-v2 {
        order: initial;
    }

    .step-text-v2 h3 {
        font-size: 24px;
    }
}

/* Scroll animation styles */
.ent-feature-showcase.visible,
.ent-stage__title.visible,
.ent-industries__title.visible,
.ent-care__title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Legal Pages */
.legal-page {
    min-height: calc(100vh - 200px);
    background: linear-gradient(to bottom, #F9FAFB 0%, #ffffff 300px);
    padding: 0;
}

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

@media (min-width: 768px) {
    .legal-container {
        padding: 80px 60px 100px;
    }
}

.legal-container h1 {
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 700;
    color: #FF6236;
    margin-bottom: 16px;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.2;
}

.legal-date {
    font-size: 15px;
    color: #9b9b9b;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f0f0f0;
}

.legal-container h2 {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 600;
    color: #1A1A1A;
    margin-top: 40px;
    margin-bottom: 16px;
    font-family: 'DM Sans', sans-serif;
    padding-top: 16px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .legal-container h2 {
        margin-top: 56px;
        margin-bottom: 20px;
    }
}

.legal-container h2:first-of-type {
    margin-top: 32px;
}

.legal-container h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1A1A1A;
    margin-top: 32px;
    margin-bottom: 16px;
    font-family: 'DM Sans', sans-serif;
}

.legal-container p {
    font-size: clamp(15px, 3vw, 17px);
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 16px;
    max-width: 900px;
}

@media (min-width: 768px) {
    .legal-container p {
        line-height: 1.9;
        margin-bottom: 20px;
    }
}

.legal-container ul {
    margin-left: 32px;
    margin-bottom: 24px;
    max-width: 900px;
}

.legal-container li {
    font-size: 17px;
    line-height: 1.9;
    color: #4A4A4A;
    margin-bottom: 12px;
    padding-left: 8px;
}

.legal-container li::marker {
    color: #FF6236;
}

.legal-container strong {
    font-weight: 600;
    color: #1A1A1A;
}

.legal-container a {
    color: #FF6236;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.legal-container a:hover {
    border-bottom-color: #FF6236;
}

.legal-contact {
    background: linear-gradient(135deg, #FFF5F2 0%, #F0F9FA 100%);
    border-left: 5px solid #FF6236;
    padding: 32px;
    margin-top: 24px;
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(255, 98, 54, 0.08);
    max-width: 900px;
}

.legal-contact p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.8;
}

.legal-contact strong {
    font-size: 18px;
    display: block;
    margin-bottom: 8px;
    color: #FF6236;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 60px 24px 80px;
    }

    .legal-container h1 {
        font-size: 40px;
    }

    .legal-container h2 {
        font-size: 26px;
        margin-top: 40px;
    }

    .legal-container p,
    .legal-container li {
        font-size: 16px;
    }

    .legal-container ul {
        margin-left: 24px;
    }

    .legal-contact {
        padding: 24px;
    }
}
