/* Reset and Base Styles */
@font-face {
    font-family: 'Inter';
    src: url('../../fonts/iconfonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Inter';
    font-weight: 500;
    line-height: 1.6;
    color: #333;
    background-color: #f0f4f8;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Inter';
    src: url('../../fonts/iconfonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

.hidden {
    display: none !important;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* iPhone Access Hero Section */
.iphone-access-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    position: relative;
    background-color: white;
}

.iphone-access-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    position: relative;
    overflow: visible;
}

/* Hero Content */
.hero-content {
    flex: 0 0 520px;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s ease forwards;
    align-self: center;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e8f2ff;
    border: 1px solid #d0e4ff;
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 20px;
    font-size: 10px;
    font-weight: 600;
    color: #4a7fc1;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background-color: #dae8ff;
    transform: translateY(-2px);
}

.hero-badge i {
    font-size: 12px;
}

/* Hero Title */
.hero-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 28px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
}

.hero-title-highlight {
    color: #6b9aff;
    margin-left: 10px;
}

.hero-title-badge {
    display: inline-block;
    background-color: #6b9aff;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-left: 10px;
    white-space: nowrap;
}

/* Hero Features */
.hero-features {
    list-style: none;
    margin-bottom: 32px;
}

.hero-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.hero-feature-item:nth-child(1) {
    animation: fadeInLeft 0.6s ease 0.3s forwards;
}

.hero-feature-item:nth-child(2) {
    animation: fadeInLeft 0.6s ease 0.4s forwards;
}

.hero-feature-item:nth-child(3) {
    animation: fadeInLeft 0.6s ease 0.5s forwards;
}

.hero-feature-item:nth-child(4) {
    animation: fadeInLeft 0.6s ease 0.6s forwards;
}

.hero-feature-item:nth-child(5) {
    animation: fadeInLeft 0.6s ease 0.7s forwards;
}

.hero-feature-item:hover {
    transform: translateX(4px);
}

.hero-feature-item i {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8f2ff;
    color: #6b9aff;
    border-radius: 50%;
    font-size: 10px;
    margin-top: 3px;
}

.hero-feature-text {
    flex: 1;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.hero-feature-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hero-download {
    width: 230px;
    height: 65px;
    background: #fff;
    margin-right: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
    border: solid 2px #cccc;
}

.hero-download:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-download i {
    font-size: 28px;
    color: #1a1a1a;
}
.hero-download .download-icon {
    position: absolute;
    top: 23%;
    left: 45%;
    width: 12%;
    height: auto;
    transform: translateY(-70px);
    transition: all 0.5s;
}

.hero-download:hover .download-icon {
    transform: translateY(0px) scale(1.2);
}

.hero-download:hover .download-text-box {
    transform: translateY(70px) scale(1.2);
}

.hero-download .download-text-box {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    flex-direction: column;
    padding: 10px 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.hero-download-text {
    display: flex;
    flex-direction: column;
    margin-left: 8px;
}

.hero-download-text img {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-download-text strong {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

.hero-download-text span {
    font-size: 11px;
    color: #999;
}

.hero-pricing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff8c6b;
    color: #ffffff;
    font-size: 22px;
    padding: 30px 32px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 200px;
    height: 65px;
    border: solid 2px #ccc;
    width: 230px;
}

.hero-pricing-btn:hover {
    background-color: #ff9d7f;
    transform: translateY(-2px);
}

/* Hero Footer Text */
.hero-footer-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #999;
    cursor: pointer;
}

.hero-footer-text i {
    font-size: 16px;
    color: #999;
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s ease 0.3s forwards;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 161px;
    left: -350px;
    width: 1146px;
    height: 660px;
    z-index: -1;
    background: url('../../img/iphone-access/banner-background.png');
    pointer-events: none;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 60px;
    padding: 15px;
    overflow: hidden;
}

/* .hero-image-wrapper:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 80px rgba(90, 122, 158, 0.35);
  } */

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    z-index: 10;
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .hero-title {
        font-size: 34px;
    }

    .iphone-access-hero .container {
        gap: 60px;
    }

    .hero-content {
        flex: 0 0 480px;
    }

    .hero-image-wrapper {
        max-width: 460px;
        height: 540px;
    }
}

@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-content {
        flex: 0 0 440px;
    }

    .hero-image-wrapper {
        max-width: 400px;
        height: 480px;
    }
}
@media screen and (max-width: 900px) {
    .iphone-access-hero .container {
        flex-direction: column;
        gap: 50px;
    }
    .hero-image::before {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .iphone-access-hero .container {
        flex-direction: column;
        gap: 50px;
    }

    .hero-content {
        flex: 1;
        max-width: 100%;
    }

    .hero-title {
        font-size: 30px;
        flex-wrap: wrap;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-download,
    .hero-pricing-btn {
        justify-content: center;
        text-align: center;
    }

    .hero-image-wrapper {
        max-width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .iphone-access-hero {
        padding: 40px 0;
    }

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

    .hero-title-badge {
        font-size: 9px;
        padding: 3px 10px;
    }

    .hero-feature-text {
        font-size: 14px;
    }

    .hero-download {
        padding: 12px 20px;
    }

    .hero-pricing-btn {
        padding: 12px 28px;
        font-size: 24px;
    }

    .hero-image-wrapper {
        border-radius: 40px;
        padding: 12px;
    }

    .hero-image-wrapper img {
        border-radius: 30px;
    }
}


/* Professional Choice Section */
.professional-choice-section {
    padding-top: 100px;
    background-color: #f8f9fb;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.3;
}

.section-description {
    font-size: 16px;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
    opacity: 1;
    transform: translateY(0px);
    transition: 0.8s;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.stat-card {
    background-color: #f8f9fb;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.stat-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.1s forwards;
}

.stat-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.stat-card:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

.stat-card:nth-child(4) {
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.stat-card:nth-child(5) {
    animation: fadeInUp 0.6s ease 0.5s forwards;
}

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

.stat-card:hover {
    background-color: #e8f2ff;
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(107, 154, 255, 0.15);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2AC0C1;
    margin-bottom: 8px;
    line-height: 1;
    transform: scale(1.1);
    transition: all 0.3s ease;
}
.stat-number:hover {
    color: #6b9aff;
    transform: scale(1);
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Features Showcase */
.features-showcase {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.showcase-image {
    width: 100%;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

/* Responsive Design for Professional Choice Section */
@media screen and (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-card:nth-child(4),
    .stat-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media screen and (max-width: 768px) {
    .professional-choice-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 50px;
    }

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

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

    .showcase-image {
        border-radius: 16px;
    }

    .hero-image::before {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 26px;
    }

    .section-description {
        font-size: 14px;
    }

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

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

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

    .showcase-image {
        border-radius: 12px;
    }
}


/* Unlock Scenarios Section */
.unlock-scenarios-section {
    padding: 100px 0;
    background-color: white;
}

/* Scenarios Grid */
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.scenario-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.scenario-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.1s forwards;
}

.scenario-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.scenario-card:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

.scenario-card:nth-child(4) {
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.scenario-card:nth-child(5) {
    animation: fadeInUp 0.6s ease 0.5s forwards;
}

.scenario-card:nth-child(6) {
    animation: fadeInUp 0.6s ease 0.6s forwards;
}

.scenario-card:nth-child(7) {
    animation: fadeInUp 0.6s ease 0.7s forwards;
}

.scenario-card:nth-child(8) {
    animation: fadeInUp 0.6s ease 0.8s forwards;
}

.scenario-card:hover {
    transform: translateY(-8px);
}

/* Scenario Image */
.scenario-image {
    width: 100%;
    height: 192px;
    background-color: #f0f2f5;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.scenario-card:nth-child(1) .scenario-image {
    background-color: #3685FF;
}

.scenario-card:nth-child(1) .scenario-image:hover {
    background-color: #f0f2f5;
}

.scenario-card:nth-child(2) .scenario-image:hover,
.scenario-card:nth-child(3) .scenario-image:hover,
.scenario-card:nth-child(4) .scenario-image:hover,
.scenario-card:nth-child(5) .scenario-image:hover,
.scenario-card:nth-child(6) .scenario-image:hover,
.scenario-card:nth-child(7) .scenario-image:hover,
.scenario-card:nth-child(8) .scenario-image:hover {
    background-color: #3685FF;
}

.scenario-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.scenario-card:hover .scenario-image img {
    transform: scale(1.1);
}

/* Scenario Title */
.scenario-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

/* Section Notice */
.section-notice {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #fff8e6;
    border: 1px solid #ffe4a3;
    border-radius: 12px;
    padding: 20px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.section-notice i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffb800;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    margin-top: 2px;
}

.notice-text {
    flex: 1;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.notice-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive Design for Unlock Scenarios Section */
@media screen and (max-width: 1200px) {
    .scenarios-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media screen and (max-width: 768px) {
    .unlock-scenarios-section {
        padding: 60px 0;
    }

    .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .scenario-card {
        padding: 20px;
    }

    .scenario-image {
        height: 200px;
        margin-bottom: 16px;
        padding: 0 16px;
    }

    .scenario-image img {
        width: 185px;
        height: 100%;
    }

    .scenario-title {
        font-size: 14px;
    }

    .section-notice {
        padding: 16px 20px;
    }

    .notice-text {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .scenarios-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .scenario-card {
        padding: 16px;
    }

    .scenario-image {
        height: 240px;
        padding: 0 20px;
    }

    .scenario-image img {
        width: 185px;
        height: 100%;
    }

    .section-notice {
        flex-direction: column;
        gap: 12px;
    }

    .section-notice i {
        margin-top: 0;
    }
}


/* Features Detail Section */
.features-detail-section {
    padding: 100px 0;
    background-color: #f8f9fb;
}

.feature-detail-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

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

.feature-detail-row.reverse {
    flex-direction: row-reverse;
}

.feature-detail-content {
    flex: 1;
    max-width: 520px;
}

.feature-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 24px;
}

.feature-detail-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-detail-note {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    padding: 16px 20px;
    background-color: #f8f9fb;
    border-left: 4px solid #6b9aff;
    border-radius: 8px;
}

.feature-detail-note strong {
    color: #1a1a1a;
    font-weight: 600;
}

.feature-detail-image {
    flex: 1;
    max-width: 600px;
    transition: all 0.5s ease;
}

.feature-detail-image:hover {
    transform: translateY(-8px);
}

.feature-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    transition: transform 0.5s ease;
}

.feature-detail-image:hover img {
    transform: scale(1.05);
}

/* More Features Section */
.more-features-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.more-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.more-feature-card {
    border-radius: 20px;
    padding: 40px 40px 0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
}

.more-feature-card:nth-child(1) {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    background-color: #E6F7F5;
}

.more-feature-card:nth-child(2) {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    background-color: #F3F0FF;
}

.more-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.more-feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffff;
    color: #000000;
    border-radius: 16px;
    font-size: 28px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.more-feature-card:hover .more-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.3);
}

.more-feature-card:nth-child(1) .more-feature-icon .iconfont {
    font-size: 28px;
    color: #2AC0C1;
}

.more-feature-card:nth-child(2) .more-feature-icon .iconfont {
    font-size: 28px;
    color: #6C88FB;
}

.more-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
    min-height: 42px;
}

.more-feature-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
    flex-grow: 1;
}

.more-feature-image {
    width: calc(100% + 80px);
    height: 240px;
    margin-left: -40px;
    margin-right: -40px;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    background-color: #e8e8ea;
    flex-shrink: 0;
}

.more-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.more-feature-card:hover .more-feature-image img {
    transform: scale(1.1);
}

/* Responsive Design for Features Detail Section */
@media screen and (max-width: 1024px) {
    .feature-detail-row {
        gap: 60px;
        margin-bottom: 80px;
    }

    .feature-detail-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .features-detail-section {
        padding: 60px 0;
    }

    .feature-detail-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .feature-detail-row.reverse {
        flex-direction: column;
    }

    .feature-detail-content {
        max-width: 100%;
    }

    .feature-detail-title {
        font-size: 28px;
    }

    .feature-detail-description {
        font-size: 15px;
    }

    .feature-detail-image {
        max-width: 100%;
    }

    .more-features-section {
        padding: 60px 0;
    }

    .more-features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 40px;
        max-width: 100%;
    }

    .more-feature-card {
        padding: 32px 32px 0;
    }

    .more-feature-title {
        font-size: 22px;
    }

    .more-feature-image {
        width: calc(100% + 64px);
        margin-left: -32px;
        margin-right: -32px;
    }
}

@media screen and (max-width: 480px) {
    .features-detail-section {
        padding: 40px 0;
    }

    .feature-detail-row {
        margin-bottom: 40px;
    }

    .feature-detail-title {
        font-size: 24px;
    }

    .feature-detail-description {
        font-size: 14px;
    }

    .feature-detail-note {
        font-size: 13px;
        padding: 12px 16px;
    }

    .more-features-section {
        padding: 40px 0;
    }

    .more-feature-card {
        padding: 24px 24px 0;
    }

    .more-feature-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .more-feature-title {
        font-size: 20px;
    }

    .more-feature-description {
        font-size: 14px;
    }

    .more-feature-image {
        height: 200px;
        width: calc(100% + 48px);
        margin-left: -24px;
        margin-right: -24px;
    }
}


/* Eassiy Standard Section */
.eassiy-standard-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5a 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.eassiy-standard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.eassiy-standard-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 80%, rgba(107, 154, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.eassiy-standard-section .container {
    position: relative;
    z-index: 1;
}

.standard-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(78, 205, 196, 0.15);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 32px;
    font-size: 12px;
    font-weight: 600;
    color: #4ecdc4;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease 0.2s forwards;
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.standard-badge:hover {
    background-color: rgba(78, 205, 196, 0.25);
    transform: translateY(-2px);
}

.standard-badge i {
    font-size: 14px;
}

.standard-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.standard-title-highlight {
    background: linear-gradient(90deg, #4ecdc4 0%, #6b9aff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.standard-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 48px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.standard-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.standard-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.standard-feature-item:hover {
    color: #4ecdc4;
    transform: translateY(-4px);
}

.standard-feature-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2) 0%, rgba(107, 154, 255, 0.2) 100%);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 10px;
    font-size: 18px;
    color: #4ecdc4;
    transition: all 0.3s ease;
}

.standard-feature-item:hover i {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.3) 0%, rgba(107, 154, 255, 0.3) 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.3);
}

.standard-lab-image {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease 1s forwards;
}

.standard-lab-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.standard-lab-image img {
    width: 100%;
    height: auto;
    display: block;
}

.lab-badge {
    position: absolute;
    bottom: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 16px;
    padding: 20px 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.lab-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 48px rgba(78, 205, 196, 0.3);
}

.lab-badge i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a3a0 100%);
    border-radius: 12px;
    font-size: 24px;
    color: #ffffff;
}

.lab-badge-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lab-badge-text strong {
    font-size: 20px;
    font-weight: 700;
    color: #4ecdc4;
    line-height: 1;
}

.lab-badge-text span {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

/* Responsive Design for Eassiy Standard Section */
@media screen and (max-width: 1024px) {
    .standard-title {
        font-size: 42px;
    }

    .standard-features {
        gap: 32px;
    }
}

@media screen and (max-width: 768px) {
    .eassiy-standard-section {
        padding: 60px 0;
    }

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

    .standard-description {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .standard-features {
        gap: 24px;
        margin-bottom: 50px;
    }

    .standard-feature-item {
        font-size: 14px;
    }

    .standard-feature-item i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .standard-lab-image {
        border-radius: 16px;
    }

    .lab-badge {
        bottom: 20px;
        right: 20px;
        padding: 16px 20px;
    }

    .lab-badge i {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .lab-badge-text strong {
        font-size: 18px;
    }

    .lab-badge-text span {
        font-size: 10px;
    }
}

@media screen and (max-width: 480px) {
    .eassiy-standard-section {
        padding: 40px 0;
    }

    .standard-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .standard-title {
        font-size: 28px;
    }

    .standard-description {
        font-size: 14px;
    }

    .standard-features {
        flex-direction: column;
        gap: 16px;
    }

    .standard-lab-image {
        border-radius: 12px;
    }

    .lab-badge {
        bottom: 16px;
        right: 16px;
        padding: 12px 16px;
        gap: 12px;
    }

    .lab-badge i {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .lab-badge-text strong {
        font-size: 16px;
    }
}


/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: #f8f9fb;
    text-align: center;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #e8f2ff;
    border: 1px solid #d0e4ff;
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 24px;
    font-size: 11px;
    font-weight: 600;
    color: #6b9aff;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.testimonials-badge:hover {
    background-color: #dae8ff;
    transform: translateY(-2px);
}

.testimonials-badge i {
    font-size: 12px;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin: 40px 0;
    opacity: 0.5;
}

.media-logo {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    transition: all 0.3s ease;
}

.media-logo:hover {
    color: #6b9aff;
    transform: translateY(-2px);
}

.testimonials-intro {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.testimonial-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.4s forwards;
    color: oklch(59.6% .145 163.225);
}

.testimonial-card:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.6s forwards;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-source {
    font-size: 18px;
    font-weight: 700;
    color: #6b9aff;
    letter-spacing: 1px;
}

.testimonial-card:nth-child(2) .testimonial-source {
    color: oklch(59.6% .145 163.225);
}

.testimonial-card:nth-child(3) .testimonial-source {
    color: oklch(54.1% .281 293.009);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    font-size: 14px;
    color: #4ecdc4;
}

.testimonial-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #e8f8f5;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 600;
    color: #4ecdc4;
    letter-spacing: 0.5px;
}

.testimonial-verified i {
    font-size: 10px;
}

/* User Reviews Grid */
.user-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.user-review-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.user-review-card:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.8s forwards;
}

.user-review-card:nth-child(2) {
    animation: fadeInUp 0.6s ease 1s forwards;
}

.user-review-card:nth-child(3) {
    animation: fadeInUp 0.6s ease 1.2s forwards;
}

.user-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.user-review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.user-review-rating i {
    font-size: 16px;
    color: #00B67A;
}

.user-review-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.user-review-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #999;
}

.user-review-author i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e8f2ff;
    color: #6b9aff;
    border-radius: 50%;
    font-size: 12px;
}

/* Responsive Design for Testimonials Section */
@media screen and (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-card.featured {
        transform: translateY(0);
    }

    .testimonial-card.featured:hover {
        transform: translateY(-8px);
    }

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

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

    .media-logos {
        gap: 20px;
        margin: 32px 0;
    }

    .media-logo {
        font-size: 14px;
    }

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

    .testimonials-grid {
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .user-review-card {
        padding: 24px;
    }
}

@media screen and (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .media-logos {
        gap: 16px;
        flex-direction: column;
    }

    .media-logo {
        font-size: 13px;
    }

    .testimonials-intro {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 20px;
    }

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

    .user-review-card {
        padding: 20px;
    }

    .user-review-text {
        font-size: 14px;
    }
}


/* Tech Specs Section */
.tech-specs-section {
    padding: 100px 0;
    background-color: #f8f9fb;
}

.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.tech-spec-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.tech-spec-card:nth-child(1) {
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.tech-spec-card:nth-child(2) {
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.tech-spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.tech-spec-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.tech-spec-header i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6b9aff 0%, #8b9eff 100%);
    color: #ffffff;
    border-radius: 10px;
    font-size: 20px;
    transition: all 0.3s ease;
}

.tech-spec-card:hover .tech-spec-header i {
    transform: scale(1.1) rotate(5deg);
}

.tech-spec-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.tech-spec-item {
    margin-bottom: 24px;
}

.tech-spec-item:last-child {
    margin-bottom: 0;
}

.tech-spec-item p {
    word-break: break-all;
}

.tech-spec-label {
    font-size: 12px;
    font-weight: 700;
    color: #6b9aff;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tech-spec-value {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Responsive Design for Tech Specs Section */
@media screen and (max-width: 768px) {
    .tech-specs-section {
        padding: 60px 0;
    }

    .tech-specs-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 40px;
    }

    .tech-spec-card {
        padding: 32px;
    }

    .tech-spec-header {
        margin-bottom: 24px;
    }

    .tech-spec-title {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .tech-specs-section {
        padding: 40px 0;
    }

    .tech-spec-card {
        padding: 24px;
    }

    .tech-spec-header i {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .tech-spec-title {
        font-size: 16px;
    }

    .tech-spec-item {
        margin-bottom: 20px;
    }

    .tech-spec-label {
        font-size: 11px;
    }

    .tech-spec-value {
        font-size: 14px;
    }
}


/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background-color: #f8f9fb;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.faq-item:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.1s forwards;
}

.faq-item:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.faq-item:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

.faq-item:nth-child(4) {
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.faq-item:nth-child(5) {
    animation: fadeInUp 0.6s ease 0.5s forwards;
}

.faq-item:nth-child(6) {
    animation: fadeInUp 0.6s ease 0.6s forwards;
}

.faq-item:hover {
    background-color: #e8f2ff;
}

.faq-item.active {
    background-color: #e8f2ff;
    box-shadow: 0 8px 24px rgba(107, 154, 255, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    padding-left: 36px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #6b9aff;
}

.faq-question i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #6b9aff;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.faq-item.active .faq-question i {
    background-color: #6b9aff;
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    overflow: hidden;
    padding: 0 32px 24px;
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.faq-answer ul {
    margin: 0 30px;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.faq-answer ul li::marker {
    color: #6b9aff;
}

/* Responsive Design for FAQ Section */
@media screen and (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-list {
        margin-top: 40px;
    }

    .faq-item {
        margin-bottom: 16px;
    }

    .faq-question {
        padding: 20px 24px;
    }

    .faq-question:hover {
        padding-left: 28px;
    }

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

    .faq-question i {
        width: 28px;
        height: 28px;
        font-size: 12px;
        margin-left: 16px;
    }

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

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

@media screen and (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-item {
        border-radius: 12px;
        margin-bottom: 12px;
    }

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

    .faq-question:hover {
        padding-left: 24px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-question i {
        width: 24px;
        height: 24px;
        font-size: 11px;
        margin-left: 12px;
    }

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

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


/* CTA Download Section */
.cta-download-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-download-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(107, 154, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-download-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 80%, rgba(78, 205, 196, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-download-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.cta-download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.cta-download-btn {
    width: 230px;
    height: 56px;
    background: #fff;
    margin-right: 30px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
    border: solid 2px #cccc;
}

.cta-download-btn:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-download-btn i {
    font-size: 28px;
    color: #1a1a1a;
}
.cta-download-btn .download-icon {
    position: absolute;
    top: 23%;
    left: 45%;
    width: 12%;
    height: auto;
    transform: translateY(-70px);
    transition: all 0.5s;
}

.cta-download-btn:hover .download-icon {
    transform: translateY(0px) scale(1.2);
}

.cta-download-btn:hover .download-text-box {
    transform: translateY(70px) scale(1.2);
}

.cta-download-btn .download-text-box {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    flex-direction: column;
    padding: 10px 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.cta-download-btn-text {
    display: flex;
    flex-direction: column;
    margin-left: 8px;
}

.cta-download-btn-text img {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-download-btn-text span {
    font-size: 28px;
    color: black;
}

.windows-btn i {
    color: #1a1a1a;
}

.mac-btn i {
    color: #1a1a1a;
}

.cta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.cta-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-feature-badge:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(78, 205, 196, 0.5);
    transform: translateY(-2px);
}

.cta-feature-badge i {
    font-size: 16px;
    color: #4ecdc4;
}

.cta-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 1s forwards;
}

/* Responsive Design for CTA Download Section */
@media screen and (max-width: 1024px) {
    .cta-title {
        font-size: 42px;
    }

    .cta-description {
        font-size: 16px;
    }

    .cta-features {
        gap: 24px;
    }
}

@media screen and (max-width: 768px) {
    .cta-download-section {
        padding: 60px 0;
    }

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

    .cta-description {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .cta-download-buttons {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 40px;
    }

    .cta-download-btn {
        width: 100%;
        max-width: 280px;
    }

    .cta-features {
        gap: 16px;
        margin-bottom: 40px;
    }

    .cta-feature-badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .cta-feature-badge i {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .cta-download-section {
        padding: 40px 0;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 14px;
    }

    .cta-download-btn {
        padding: 0px 18px;
        font-size: 15px;
    }

    .cta-features {
        flex-direction: column;
        gap: 12px;
    }

    .cta-feature-badge {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }

    .cta-disclaimer {
        font-size: 11px;
    }
}