.new-home-page {
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #fff;
    width: 100%;
    position: relative;
}

.hero-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    position: relative;
    padding-inline: 20px;
    overflow: hidden;
    min-height: 100vh;
}

.hero-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.3) 40%,
        rgba(255, 255, 255, 0.6) 60%,
        rgba(255, 255, 255, 0.8) 80%,
        rgba(255, 255, 255, 1) 100%
    );
    z-index: 5;
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 180px;
    position: relative;
    z-index: 10;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 780px;
    text-align: center;
    z-index: 15;
    position: relative;
}

.hero-text h1 {
    font-size: 72px;
    color: #000;
    letter-spacing: -1.44px;
    line-height: 68px;
    font-weight: 500;
    margin-bottom: 12px;
    font-family: var(--font-serif);
}

.hero-text p {
    font-family: var(--font-ui);
    color: #484848;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 28px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    height: 36px;
    color: #fff;
    border: none;
    padding: 6.5px 14px;
    border-radius: 12px;
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 49px;
    margin-bottom: 200px;
    position: relative;
    z-index: 15;
}

.product-preview {
    height: auto;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 50px;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 42px;
    }
}

/* Feature Sections */
.features-container {
    max-width: 1024px;
    margin: 0 auto;
}

.feature-section {
    padding-block: 172px;
}

.feature-section:last-child {
    margin-bottom: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.feature-text {
    width: 100%;
}

.feature-header {
    font-family: var(--font-serif);
    font-size: 54px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #000;
    letter-spacing: -1.08px;
}

.feature-subheader {
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 400;
    color: #484848;
}

.feature-explainer {
    font-family: var(--font-ui);
    font-size: 20px;
    color: #484848;
    font-weight: 400;
    max-width: 1024px;
    text-align: center;
    margin: 10px auto 18px auto;
}

.feature-media {
    flex: 0 0 auto;
    width: 100%;
    max-width: 1024px;
}

.video-progress-container {
    width: 100%;
    margin-bottom: 16px;
}

.video-progress-bar {
    width: 100%;
    height: 6px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.progress-pill {
    height: 6px;
    width: 16px;
    background: #e0e0e0;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    transition: width 0.3s ease;
}

.progress-pill::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: #000;
    border-radius: 40px;
    transition: width 0.3s ease;
}

.progress-pill.pill-1 {
    animation: pillGrow1 8s ease-out infinite;
}

.progress-pill.pill-1::before {
    animation: fillPill1 8s ease-out infinite;
}

.progress-pill.pill-2 {
    animation: pillGrow2 8s ease-out infinite;
}

.progress-pill.pill-2::before {
    animation: fillPill2 8s ease-out infinite;
}

.progress-pill.pill-3 {
    animation: pillGrow3 8s ease-out infinite;
}

.progress-pill.pill-3::before {
    animation: fillPill3 8s ease-out infinite;
}

.progress-pill.pill-4 {
    animation: pillGrow4 8s ease-out infinite;
}

.progress-pill.pill-4::before {
    animation: fillPill4 8s ease-out infinite;
}

/* Pill 1: Active 0-25% (0-2s) */
@keyframes fillPill1 {
    0% {
        width: 0%;
    }
    25% {
        width: 100%;
    }
    25.01%,
    100% {
        width: 0%;
    }
}

@keyframes pillGrow1 {
    0% {
        width: 16px;
    }
    2.5% {
        width: 56px;
    }
    22.5% {
        width: 56px;
    }
    25%,
    100% {
        width: 16px;
    }
}

/* Pill 2: Active 25-50% (2-4s) */
@keyframes fillPill2 {
    0%,
    25% {
        width: 0%;
    }
    25.01% {
        width: 0%;
    }
    50% {
        width: 100%;
    }
    50.01%,
    100% {
        width: 0%;
    }
}

@keyframes pillGrow2 {
    0%,
    25% {
        width: 16px;
    }
    27.5% {
        width: 56px;
    }
    47.5% {
        width: 56px;
    }
    50%,
    100% {
        width: 16px;
    }
}

/* Pill 3: Active 50-75% (4-6s) */
@keyframes fillPill3 {
    0%,
    50% {
        width: 0%;
    }
    50.01% {
        width: 0%;
    }
    75% {
        width: 100%;
    }
    75.01%,
    100% {
        width: 0%;
    }
}

@keyframes pillGrow3 {
    0%,
    50% {
        width: 16px;
    }
    52.5% {
        width: 56px;
    }
    72.5% {
        width: 56px;
    }
    75%,
    100% {
        width: 16px;
    }
}

/* Pill 4: Active 75-100% (6-8s) */
@keyframes fillPill4 {
    0%,
    75% {
        width: 0%;
    }
    75.01% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes pillGrow4 {
    0%,
    75% {
        width: 16px;
    }
    77.5% {
        width: 56px;
    }
    97.5% {
        width: 56px;
    }
    100% {
        width: 16px;
    }
}

.video-container {
    width: 1024px;
    height: 580px;
    border-radius: 24px;
    border: 1px solid #eee;
    overflow: hidden;
    position: relative;
    background: #f1f1f1;
}

.feature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-container {
        padding: 80px 32px;
    }

    .feature-content {
        gap: 60px;
    }

    .video-container {
        width: 800px;
        height: 450px;
    }

    .feature-header {
        font-size: 3rem;
    }

    .feature-subheader {
        font-size: 1.375rem;
    }
}

@media (max-width: 968px) {
    .feature-content {
        gap: 32px;
    }

    .feature-explainer {
        padding: 0 24px;
        text-align: center;
    }

    .video-progress-container {
        padding: 0 24px;
    }

    .video-container {
        width: 100%;
        max-width: 800px;
        height: auto;
        aspect-ratio: 16/9;
    }

    .feature-section {
        margin-bottom: 120px;
    }
}

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

    .feature-header {
        font-size: 2.5rem;
    }

    .feature-subheader {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }

    .feature-explainer {
        font-size: 15px;
        padding: 0 16px;
    }

    .video-progress-container {
        padding: 0 16px;
    }

    .video-container {
        border-radius: 12px;
    }

    .feature-section {
        margin-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .features-container {
        padding: 40px 16px;
    }

    .feature-header {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .feature-subheader {
        font-size: 1.125rem;
        margin-bottom: 20px;
    }

    .feature-explainer {
        font-size: 14px;
        padding: 0 8px;
    }

    .video-progress-container {
        padding: 0 8px;
    }

    .feature-content {
        gap: 20px;
    }

    .video-container {
        border-radius: 8px;
    }
}

/* Testimonials Section */
.testimonials-section {
    width: 100%;
    padding-block: 172px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-container {
    width: 100%;
    max-width: 1068px;
    margin: 0 auto;
}

.testimonials-title {
    font-family: var(--font-serif);
    font-size: 54px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 17px;
    letter-spacing: -1.08px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-block: 128px;
    max-height: 720px;
    overflow: hidden;
    position: relative;
}

.testimonials-grid::before,
.testimonials-grid::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 50px;
    pointer-events: none;
    z-index: 10;
}

.testimonials-grid::before {
    top: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

.testimonials-grid::after {
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

.testimonials-column {
    height: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    contain: layout style paint;
}

.testimonials-track {
    display: flex;
    flex-direction: column;
    gap: 24px;
    will-change: transform;
    backface-visibility: hidden;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 24px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow:
        0 0 0.4px 0.5px rgba(0, 0, 0, 0.05),
        0 2.5px 4px 0 rgba(0, 0, 0, 0.06),
        0 0.5px 1px 0 rgba(0, 0, 0, 0.06);
}

.testimonial-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background-color: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.testimonial-info h4 {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.testimonial-info p {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
}

.testimonial-text {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #374151;
    margin: 0;
    flex: 1;
    overflow: hidden;
    word-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 1024px) {
    .testimonials-title {
        font-size: 48px;
        margin-bottom: 60px;
    }

    .testimonials-grid {
        height: 500px;
        gap: 24px;
    }

    .testimonial-card {
        padding: 24px;
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 20px;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        height: 400px;
        gap: 16px;
    }

    .testimonial-card {
        padding: 20px;
        min-height: 160px;
    }

    .testimonial-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 16px;
    }

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

    .testimonials-grid {
        height: 350px;
    }

    .testimonial-card {
        padding: 16px;
        min-height: 140px;
        gap: 16px;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }

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

    .testimonial-author h4 {
        font-size: 15px;
    }

    .testimonial-author p {
        font-size: var(--text-size-13);
    }
}

/* FAQ Section */
.faq-section {
    padding: 172px 0px;
}

.faq-container {
    max-width: 1024px;
    margin: 0 auto;
}

.faq-title {
    font-family: var(--font-serif);
    font-size: 54px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
    letter-spacing: -1.08px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #d7d7d7;
}

.faq-item:first-child {
    border-top: 1px solid #d7d7d7;
}

.faq-question {
    width: 100%;
    padding: 28px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: #000;
    letter-spacing: -0.85px;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #6b7280;
}

.faq-question span:first-child {
    flex: 1;
    text-align: left;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin-left: 24px;
    flex-shrink: 0;
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-icon.expanded svg {
    transform: rotate(45deg);
}

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

.faq-answer.expanded {
    max-height: 200px;
}

.faq-answer-content {
    padding: 0 0 32px 0;
}

.faq-answer-content p {
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
}

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

    .faq-container {
        padding: 0 16px;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 32px;
        letter-spacing: -0.96px;
    }

    .faq-question {
        padding: 24px 0;
        font-size: 18px;
    }

    .faq-icon {
        margin-left: 16px;
    }

    .faq-icon svg {
        width: 12px;
        height: 12px;
    }

    .faq-answer.expanded {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 16px;
    }

    .faq-answer-content p {
        font-size: 14px;
    }

    .faq-icon svg {
        width: 10px;
        height: 10px;
    }
}
