:root {

    --primary: #2563EB;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --secondary: #64748B;
    --dark: #1E293B;
    --light: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --orange: #F97316;


    --font-family: 'Satoshi', sans-serif;


    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;


    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;


    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);


    --container-width: 1200px;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: #000;
    line-height: 1.5;
    background-color: #fff;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar-thumb {
    background-color: #232323;
    border-radius: 20px;
    border: 2px solid transparent;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-md);
}

.text-blue {
    color: var(--primary);
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn span {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn:hover span {
    transform: translateX(3px);
}

.btn-primary {
    background-color: #232323;
    color: white;
    border: none;
    height: 44px;
}

.btn-primary:hover {
    background-color: #343434;
}

.btn-blue {
    background-color: #4574F3;
    color: white !important;
    border: none;
    height: 44px;
}

.btn-blue:hover {
    background-color: #527ff9;
}

.btn-light {
    background-color: #F5F5F5;
    color: #000;
    border: none;
    height: 44px;
}

.btn-light:hover {
    background-color: #f3f3f3;
}

.gradient-text {
    background: linear-gradient(to right, #2460D8, #80C7FF, #2460D8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.btn-outline {
    background-color: transparent;
    color: var(--dark);
    border: 1px solid var(--gray-300);
}

.btn-outline:hover {
    background-color: var(--gray-100);
    border-color: var(--gray-400);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}


.header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.header-blue {
    background-color: #4574F3 !important;
    border-bottom: 1px solid #6A90F5;
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.5s;
}

.logo:hover {
    scale: 1.05;
}

.main-nav ul {
    display: flex;
    gap: var(--spacing-lg);
    background-color: #F4F4F4;
    padding: 10px 15px;
    border-radius: 9px;
}

.header-blue .main-nav ul {
    background-color: #f4f4f433 !important;
}

.header-blue .main-nav a {
    color: #fff9 !important;
}

.header-blue .main-nav ul .active {
    color: #fff !important;
}

.header-blue .btn-light {
    color: #2E5DDC !important;
}

.main-nav ul .active {
    color: #2E5DDC !important;
    font-weight: 700 !important;
}

.main-nav a {
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary);
}


.hero-section {
    padding: var(--spacing-3xl) 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('/images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #000;
    margin-bottom: var(--spacing-xl);
    max-width: 400px;
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-xl);
}

.hero-features {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-3xl);
    position: relative;
    z-index: 1;
}

.feature-box {
    max-width: 350px;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.feature-box p {
    color: var(--gray-600);
}

.feature-box.left {
    margin-right: auto;
}

.feature-box.right {
    margin-left: auto;
}


.trusted-section {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
    position: relative;
}

.trusted-text {
    color: #454745;
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.marquee-wrapper {
    position: relative;
    overflow: hidden;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-content {
    display: flex;
    gap: 4rem;
    min-width: fit-content;
}

.marquee img {
    height: 100px;
    opacity: 0.75;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.marquee img:hover {
    opacity: 1;
}


.marquee-right .marquee-content {
    animation: scroll-right 40s linear infinite;
}

.marquee-left .marquee-content {
    animation: scroll-left 40s linear infinite;
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee-gradient.left {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.marquee-gradient.right {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

@media (max-width: 600px) {
    .marquee img {
        height: 50px;
        gap: 2rem;
    }

    .marquee-gradient {
        width: 50px;
    }
}



.features-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--light);
    background-image: url('/images/bg-1.svg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-3xl);
    margin-top: 150px;
    margin-bottom: 10rem;
}

.features-icon {
    margin-bottom: var(--spacing-md);
    display: inline-block;
}

.features-header h2 {
    margin-bottom: var(--spacing-md);
}

.features-header p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: 47% 24% 24%;
    grid-template-rows: auto auto;
    gap: var(--spacing-lg);
}

.feature-card {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-sm) var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    margin-bottom: var(--spacing-md);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
}

.feature-card.desktop-control {
    position: relative;
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, #5280FF, #2251D3);
    color: white;
    overflow: hidden;
    min-height: 300px;
}

.feature-content {
    max-width: 60%;
    z-index: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.feature-card.desktop-control h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
}

.feature-card.desktop-control p {
    font-size: 1.15rem;
    color: #fff;
    margin: 0;
}

.feature-card.desktop-control img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    max-height: 350px;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}



.feature-card.file-sharing,
.feature-card.mobile-access {
    display: flex;
    flex-direction: column;
}

.feature-card.encryption {
    padding-top: var(--spacing-lg);
    grid-column: 2;
    grid-row: 2;
}

.feature-card.built-to-do-more {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #232323;
    border: 1px solid #232323;
}

.built-label {
    color: white;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
}

.built-label img {
    height: 24px;
}


.testimonials-section {
    padding: var(--spacing-3xl) 0;
    background-color: #F6F6F6;
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-3xl);
}

.avatar-group img {
    height: 60px;
}

.testimonials-header h2 {
    color: #000;
    margin-bottom: var(--spacing-md);
}

.testimonials-header p {
    color: #51515E;
    font-weight: 500;
    margin-bottom: var(--spacing-xl);
}

.testimonials-grid-1 {
    display: grid;
    grid-template-columns: 70% 30%;
    grid-template-rows: auto auto;
    grid-template-areas:
        "video stats";
    gap: var(--spacing-lg);
}

.testimonials-grid-2 {
    display: grid;
    grid-template-columns: 30% 70%;
    grid-template-rows: auto auto;
    grid-template-areas:
        "fact review";
    gap: var(--spacing-lg);
}

.testimonial-card {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

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

.testimonial-card.video {
    grid-area: video;
    padding: var(--spacing-xl);
    background-color: var(--gray-800);
    color: white;
    background-image: url('/images/video-thumb.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.testimonial-card.stats {
    grid-area: stats;
    background: linear-gradient(180deg, #5280FF, #2251D3);
    color: white;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stats-badge {
    color: #FFFDFA;
    opacity: 0.7;
    font-size: 1rem;
}

.video-badge {
    color: #FFFDFA;
    opacity: 0.7;
    font-size: 1rem;
}

.testimonial-card.stats h2 {
    font-size: 4rem;
    font-weight: 100;
    margin-bottom: var(--spacing-md);
}

.testimonial-content h3 {
    font-size: 3rem;
    font-weight: 100;
    max-width: 70%;
}

.fact h3 {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 100;
}

.review h3 {
    font-size: 3rem;
    color: #000;
    font-weight: 100;
    max-width: 75%;
    margin-bottom: 0;
}

.review p {
    font-size: 1.2rem;
    color: #000;
}

.testimonial-content p {
    font-size: 1.3rem;
}

.testimonial-card.stats p {
    font-size: 1.3rem;
}

.testimonial-card.fact {
    grid-area: fact;
    background-color: #232323;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.testimonial-card.review {
    grid-area: review;
    background-color: #fff;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fact-badge {
    color: #FFFDFA;
    opacity: 0.7;
}

.review-badge {
    color: #000;
    opacity: 0.7;
}


.comparison-section {
    padding: var(--spacing-3xl) 0;
    background-color: #fff;
    text-align: center;
    background-image: url('/images/bg-2.svg');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
}

.comparison-section h2 {
    margin-bottom: var(--spacing-md);
    font-size: 3rem;
    font-weight: 900;
    max-width: 625px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-section p {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
}

.comparison-section .btn {
    margin-bottom: var(--spacing-2xl);
}

.comparison-table {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: var(--spacing-xl);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: var(--spacing-lg);
}

.vendor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-weight: 600;
}

.table-block {
    background-color: #F7F8F8;
    border-radius: 12px;
    padding: var(--spacing-sm) 0;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    margin: var(--spacing-sm) var(--spacing-lg);
    padding: var(--spacing-md) 1rem;
    background: #fff;
    border-radius: 8px;
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.feature-column {
    text-align: left;
    font-weight: 500;
}

.feature-column b {
    font-size: 1.25rem;
}

.vendor-column {
    display: flex;
    justify-content: center;
    align-items: center;
}


.performance-section {
    padding: var(--spacing-3xl) 0;
    background-color: white;
    background-image: url('/images/bg-3.svg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.performance-section .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
}

.performance-content {
    flex: 1;
}

.performance-content h2 {
    font-size: 3rem;
    color: #000;
    font-weight: 900;
}

.performance-content p {
    font-size: 1.25rem;
    color: #51515E;
    font-weight: 500;
}

.performance-badge {
    background-color: #F7F7F8;
    color: #1A1925;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 100;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: var(--spacing-md);
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: 5rem;
}

.stat-item h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.stat-item p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.performance-image {
    flex: 1;
    text-align: end;
}


.footer {
    background-color: #F6F6F6;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    height: max-content;
}

.footer-logo svg {
    margin-bottom: var(--spacing-sm);
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.footer-logo p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: var(--spacing-3xl);
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-lg);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-column a {
    color: var(--gray-600);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--gray-200);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #E7E7E7;
    background-color: transparent;
    transition: all 0.3s ease;
}

.social-link:hover {
    scale: 1.05;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-content,
.feature-box,
.features-header,
.testimonials-header,
.comparison-section h2,
.performance-content {
    animation: fadeIn 0.8s ease-out forwards;
}

.feature-box.left {
    animation-delay: 0.2s;
}

.feature-box.right {
    animation-delay: 0.4s;
}


@media (max-width: 1200px) {
    .features-header {
        margin-top: 180px;
    }

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

    .feature-card.built-to-do-more {
        grid-column: auto;
        grid-row: auto;
    }

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

    .testimonial-card.video {
        grid-column: 1;
        grid-row: 1;
        min-height: 300px;
    }

    .testimonial-card.stats,
    .testimonial-card.fact,
    .testimonial-card.review {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .features-header {
        margin-top: 210px;
    }

    .feature-box {
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
    }

    .hero-features {
        flex-direction: column;
        gap: var(--spacing-xl);
    }

    .feature-box.left,
    .feature-box.right {
        max-width: 100%;
        margin: 0;
    }

    .performance-section .container {
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
        gap: var(--spacing-2xl);
    }

    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .features-header {
        margin-top: 240px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        margin-top: var(--spacing-md);
    }

    .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
    }

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

    .feature-card.desktop-control {
        grid-column: auto;
        grid-row: auto;
    }

    .performance-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

    .feature-column {
        text-align: center;
        font-weight: 600;
        border-bottom: 1px solid var(--gray-200);
        padding-bottom: var(--spacing-md);
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .logo-row {
        gap: var(--spacing-md);
    }

    .logo-row img {
        height: 30px;
    }
}


.features-hero-section {
    padding: var(--spacing-3xl) 0;
    background: #fff;
    position: relative;
    overflow: hidden;
    background-image: url('/images/features-bg.svg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}


.features-hero-section h1 {
    color: #fff;
}


.features-hero-section p {
    color: #fff;
    font-size: 1.1rem;
}


.features-hero-section .btn {
    color: #4574F3;
}

.features-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
}

.feature {
    background: white;
    border: 1px solid #00000010;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 180px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-6px);
}

.feature-icon img {
    width: 32px;
    height: 32px;
}

.feature h4,
.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.feature p {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.feature.feature-wide {
    grid-column: span 2;
}

.feature.feature-highlight {
    grid-row: span 2;
    grid-column: span 2;
    background: linear-gradient(180deg, #5280FF, #2251D3);
    color: white;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
}

.feature.feature-tall {
    grid-row: span 2;
    padding-bottom: 0;
}

.feature.feature-highlight h3 {
    font-size: 2rem;
    color: white;
    z-index: 2;
}

.feature.feature-highlight p {
    font-size: 1.3rem;
    max-width: 60%;
    color: white;
    z-index: 2;
}

.feature.feature-highlight .feature-icon img {
    filter: brightness(0) invert(1);
}

.feature.feature-highlight .feature-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    max-height: 350px;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.feature .feature-image {
    margin-top: auto;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .feature.feature-wide {
        grid-column: span 1;
    }

    .feature.feature-highlight {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.features-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-intro-section {
    position: relative;
    background-image: url('/images/bg-4.svg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 5rem 0;
    overflow: hidden;
}

.intro-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    color: #1A1925;
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.intro-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.intro-header p {
    color: #51515E;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.intro-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2563eb;
    color: white;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

.intro-button:hover {
    background-color: #1d4ed8;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.intro-feature-card {
    border-radius: 1.25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.intro-feature-card:hover {
    transform: translateY(-6px);
}

.intro-feature-card .icon {
    height: 90px;
    margin-bottom: 1rem;
    text-align: end;
}

.intro-feature-card h3 {
    font-size: 2.25rem;
    font-weight: 100;
    margin-bottom: 0.75rem;
}

.intro-feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

.intro-feature-card.blue {
    background: linear-gradient(180deg, #5280FF, #2251D3);
    color: white;
}

.intro-feature-card.blue p {
    color: #e5edff;
}

.intro-feature-card.white {
    background: white;
    color: #111827;
}

.promo-content {
    background-color: #4574F3;
    border-radius: 2rem;
    padding: 3rem 2rem 0 2rem;
    margin: 6rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: white;
    background-image: url('/images/promo-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.promo-text {
    flex: 1 1 300px;
    max-width: 600px;
}

.promo-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.promo-text p {
    font-size: 1rem;
    color: #e0e7ff;
    margin-bottom: 1.5rem;
}

.promo-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #4574F3;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 0.95rem;
}

.promo-button:hover {
    background: #f1f5ff;
}

.promo-image {
    flex: 1 1 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-image img {
    max-width: 100%;
    height: auto;
}

.pricing-main {
    background: url('/images/bg-5.png') no-repeat center top;
    background-size: cover;
    padding: 5rem 0;
    color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h2 {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.25rem;
    color: #fff;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.6;
}

.billing-toggle {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #9ca3af;
    border-radius: 999px;
    transition: 0.4s;
}

.slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background-color: white;
    left: 3px;
    bottom: 3px;
    transition: 0.4s;
}

.switch input:checked+.slider {
    background-color: #3b82f6;
}

.switch input:checked+.slider:before {
    transform: translateX(20px);
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}


.plan-card {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 24px;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.plan-card.popular {
    background-color: white;
    color: #1e293b;
}

.plan-card.popular .btn.dark {
    background: #0f172a;
    color: white;
}

.popular .badge p {
    background: #4574F3;
    color: white !important;
    font-size: 1rem;
    padding: 0.3rem 0.75rem;
    border-radius: 7px;
    font-weight: 100;
    margin-bottom: 0;
}

.popular .badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
}


.plan-top h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.plan-top {
    padding: 1.5rem 1.5rem 0;
}

.plan-top p {
    font-size: 1rem;
    color: #ffffffb3;
    margin-bottom: 1rem;
}

.plan-top hr {
    border: none;
    border-top: 2px dashed #E3E3E3;
    margin: 2rem 0;
}

.plan-card.popular .plan-top p {
    color: #475569;
}


.price {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price strong {
    font-size: 2.75rem;
    font-weight: 100;
    color: #fff;
}

.popular .price strong {
    color: #000;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffffb3;
    margin-left: 0.25rem;
}

.old-price {
    text-decoration: line-through;
    background-color: #F34545;
    color: #fff !important;
    padding: 5px 10px;
    border-radius: 7px;
}

.subtext {
    font-size: 1rem;
    color: #ffffffb3;
    margin-top: 0.1rem;
}

.popular .subtext {
    color: #666666;
}

.plan-top .btn {
    width: 100%;
}


.plan-features {
    list-style: none;
    margin: 1.5rem 0.5rem 0.5rem;
    padding: 0.75rem;
    border-radius: 1rem;
    background-color: white;
    color: #1e293b;
    font-size: 0.9rem;
}

.plan-features li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1rem;
    color: #000;
}

.plan-features li.title {
    font-weight: 600;
    font-size: 1.15rem;
    color: #000;
}

.plan-features li span {
    color: #666666 !important;
}


@media (max-width: 640px) {
    .pricing-header h2 {
        font-size: 2rem;
    }

    .billing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }

    .price {
        font-size: 1.5rem;
    }
}

.why-worth-section {
    background: url('/images/bg-4.svg') no-repeat right center;
    background-size: cover;
    padding: 5rem 0;
}

.why-worth-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.why-worth-text {
    flex: 1 1 400px;
    max-width: 500px;
}

.why-worth-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background-color: #fff;
    color: #1A1925;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.why-worth-title {
    color: #000;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.why-worth-subtext {
    color: #51515E;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}


.why-worth-cards {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-worth-card {
    position: relative;
    border-radius: 1.25rem;
    padding: 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-worth-card.primary {
    background: linear-gradient(180deg, #5280FF, #2251D3);
    color: white;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.why-worth-card.primary .why-worth-card-text {
    z-index: 2;
}

.why-worth-image {
    height: 100%;
    max-height: 130px;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.why-worth-icon img {
    width: 32px;
    height: 32px;
    display: block;
}

.why-worth-card.primary h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.why-worth-card.primary p {
    font-size: 1rem;
    line-height: 1.25rem;
    color: #fff;
}


.why-worth-card-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.why-worth-card.light {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    flex: 1 1 230px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

.why-worth-card.light h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.why-worth-card.light p {
    font-size: 0.9rem;
    color: #73737F;
    margin-bottom: 0;
}

.cancel-section {
    background-color: #f6f6f6;
    padding: 4rem 0;
}

.cancel-box {
    background: white url('/images/cancel-bg.png') no-repeat center;
    background-size: cover;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cancel-icon img {
    margin-bottom: 0.5rem;
}

.cancel-title {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.25;
    color: #000;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.gradient-text-light {
    background: linear-gradient(90deg, #2460D8, #80C7FF, #2460D8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

@media (max-width: 640px) {
    .cancel-title {
        font-size: 1.5rem;
    }

    .cancel-box {
        padding: 2rem 1.25rem;
    }

    .cancel-icon img {
        width: 40px;
        height: 40px;
    }
}

.pricing-faq {
    background-color: #fff;
    background-image: url('/images/faq-bg.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    padding: 5rem 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-label {
    font-size: 0.75rem;
    color: #000000c9;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-header p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-arrow {
    font-size: 1rem;
    color: #94a3b8;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.faq-answer {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-top: 1rem;
    border-top: 2px dashed #e5e7eb;
    padding-top: 1rem;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-contact-box {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    max-width: 100%;
}


.faq-contact-header {
    background-color: #f6f6f6;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2e5ddc;
}


.faq-contact-body {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    background: #ffffff;
}

.faq-contact-text h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.faq-contact-text p {
    margin: 0.35rem 0 0;
    font-size: 1rem;
    color: #64748b;
}

@media (max-width: 540px) {
    .faq-contact-body {
        flex-direction: column;
        align-items: flex-start;
    }
}

.download-section {
    background: url('/images/download-bg.svg') no-repeat center;
    background-size: cover;
    padding: 5rem 0;
    text-align: center;
}

.download-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-subtext {
    font-size: 1.5rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.download-buttons .btn-light {
    border: 1px solid #cccccc;
}

.download-btn {
    display: inline-block;
    font-size: 0.95rem;
    padding: 0.65rem 1.2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
}

.download-btn.mac {
    background: #000;
    color: #fff;
}

.download-btn.win {
    background: #f8fafc;
    color: #111827;
    border: 1px solid #d1d5db;
}

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

.download-version {
    font-size: 1rem;
    color: #00000090;
}

.download-version span {
    font-style: italic;
}


.download-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    text-align: center;
}

.step img {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 1rem;
}

.step h4 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #000;
}

.step p {
    font-size: 1rem;
    color: #0000009d;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .download-title {
        font-size: 2rem;
    }

    .download-buttons {
        flex-direction: column;
    }

    .step img {
        max-width: 160px;
    }
}

.install-section {
    background: url('/images/download-features-bg.png') no-repeat center;
    background-size: cover;
    padding: 5rem 0;
}

.install-header {
    text-align: center;
    margin-bottom: 3rem;
}

.install-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.install-subtitle {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.install-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .install-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .install-grid {
        grid-template-columns: 1fr;
    }
}

.install-card {
    background: #f9fafb;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.5s;
}

.install-card:hover {
    scale: 1.05;
}

.install-card svg {
    height: 40px;
}

.install-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #111827;
}

.install-card p {
    font-size: 1.05rem;
    color: #73737F;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .install-title {
        font-size: 2rem;
    }

    .install-card {
        padding: 1.25rem;
    }
}

.about-hero {
    padding: 5rem 0 3rem;
    text-align: center;
}

.about-hero-icon {
    width: 48px;
    margin-bottom: 1.25rem;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.about-hero-subtext {
    font-size: 1rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-hero-preview {
    margin-top: 3rem;
}

.about-hero-preview img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtext {
        font-size: 0.95rem;
    }
}

.reviews-section {
    background: #f9fafb url('/images/reviews-bg.png') no-repeat center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.reviews-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 8rem 1rem 4rem 1rem;
}


.reviews-header {
    text-align: center;
}

.reviews-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.reviews-subtext {
    font-size: 1.25rem;
    color: #51515E;
    margin-bottom: 1.5rem;
}

.reviews-section .btn-dark {
    background: #111827;
    color: white;
    padding: 0.65rem 1.2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease;
}

.reviews-section .btn-dark:hover {
    background: #000;
}


.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}


.review-card {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.5s;
}

.review-card:hover {
    transform: translateY(-6px);
}

.review-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.review-user img {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    object-fit: cover;
}

.review-card p {
    font-size: 1rem;
    color: #73737F;
    line-height: 1.5;
}


@media (max-width: 768px) {
    .reviews-title {
        font-size: 1.75rem;
    }

    .reviews-wrapper {
        padding: 3rem 1rem;
    }
}

.remote-access-section {
    background: #fff;
    padding: 5rem 0;
}

.remote-access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.remote-access-content {
    max-width: 600px;
}

.remote-access-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.remote-access-subtext {
    font-size: 1.25rem;
    color: #51515E;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.remote-access-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.remote-access-features li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.remote-access-features li svg {
    width: 32px;
    margin-top: 0.2rem;
}

.remote-access-features li h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #4674F4;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.remote-access-features li p {
    font-size: 0.95rem;
    color: #334155;
    margin: 0;
    line-height: 1.5;
}

.remote-access-image img {
    width: 100%;
    display: block;
    margin: 0 auto;
}


@media (max-width: 1024px) {
    .remote-access-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .remote-access-content {
        margin: 0 auto;
    }

    .remote-access-features {
        align-items: center;
    }

    .remote-access-features li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .remote-access-features li img {
        margin-top: 0;
    }
}

.support-section {
    background: url('/images/download-bg.svg') no-repeat center;
    background-size: cover;
    padding: 5rem 0;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.support-left h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-left p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.support-tag {
    display: flex;
    align-items: center;
}

.support-tag p {
    color: #454545;
    font-weight: 500;
    padding: 1px 10px;
    border: 1px solid #E7E7E7;
    border-radius: 100px;
    margin-bottom: 0;
}

.support-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.support-card h4 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.support-card p {
    font-size: 1rem;
    color: #454545;
    margin-bottom: 1rem;
}

.support-card.card-faq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 1.25rem;
}

.support-card.card-faq p {
    margin-bottom: 0;
}

.support-agent {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.support-agent img {
    width: 48px;
    height: 48px;
}

.support-agent strong {
    display: block;
    font-size: 1rem;
}

.support-agent span {
    font-size: 0.85rem;
    color: #454545;
}

.support-icon {
    margin-left: auto;
}

.support-faq-link {
    display: flex;
    justify-content: flex-end;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.support-form label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1f2937;
}

.support-form input,
.support-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-top: 0.4rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-family: inherit;
}

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

.support-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #475569;
}

.support-checkbox input {
    width: 16px;
    height: 16px;
}

.support-checkbox a {
    color: #2563eb;
    text-decoration: underline;
}


.btn.btn-blue {
    background: #2e5ddc;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}


.support-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    justify-content: center;
    align-items: center;
}

.support-modal-box {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.support-modal-box h3 {
    margin-bottom: 0.75rem;
}

.support-modal-box p {
    font-size: 1.25rem;
    color: #00000093;
    margin-bottom: 1.25rem;
}


@media (max-width: 900px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
}