/* ==============================
   WELCOME PAGE STYLES
   ============================== */

/* --- Reset and Base Styles --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #1a1a1a;
    color: #EEFDF9;
    line-height: 1.5;
    overflow-x: hidden;
}

/* --- Typography --- */
.hero-title,
.about-title,
.faq-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: #EEFDF9;
    margin: 0;
    line-height: 1.2;
}

.compare-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #EEFDF9;
    margin: 0;
    line-height: 1.2;
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #EEFDF9;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.hero-subtitle,
.about-subtitle,
.compare-subtitle,
.feature-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #EEFDF9;
    margin: 0;
    line-height: 1.5;
}

/* --- Header --- */
.welcome-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    /* Safe area support - extend background into notch area */
    padding-top: calc(15px + env(safe-area-inset-top, 0px));
    padding-left: calc(20px + env(safe-area-inset-left, 0px));
    padding-right: calc(20px + env(safe-area-inset-right, 0px));
    /* Fill the safe area at the top with background */
    min-height: calc(80px + env(safe-area-inset-top, 0px));
    box-sizing: border-box;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 120px;
    height: 50px;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Login Button - Based on subscription-badge styles */
.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    background-color: #EEFDF9;
    color: #1a1a1a;
    transition: all 0.2s ease;
    cursor: pointer;
}

.login-btn:hover {
    background-color: #d1f2e7;
    transform: translateY(-1px);
}

/* --- Main Content --- */
.welcome-main {
    padding-top: 80px;
    /* Account for fixed header */
}

/* --- Hero Section --- */
.hero-section {
    padding: 60px 20px;
    text-align: center;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 400px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 20px;
    text-align: center;
}

.hero-subtitle {
    margin-bottom: 48px;
    text-align: center;
}

/* Download App Button (PWA Install) - Matching register.html button style */
.download-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: rgba(238, 253, 249, 0.063);
    color: #EEFDF9;
    border: none;
    border-radius: 1000px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    justify-content: center;
    margin-bottom: 32px;
}

.download-app-btn:hover {
    background-color: rgba(238, 253, 249, 0.314);
    transform: translateY(-1px);
}

.download-app-btn:active {
    transform: translateY(0);
}

.download-app-btn svg {
    flex-shrink: 0;
}

.mockup-container {
    margin-bottom: 48px;
    display: flex;
    justify-content: center;
}

.mockup-placeholder {
    width: 320px;
    height: 320px;
    background-color: rgba(238, 253, 249, 0.1);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(238, 253, 249, 0.3);
}

.mockup-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(238, 253, 249, 0.7);
}

.learn-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #EEFDF9;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    margin: 0 auto;
}

/* Hero CTA section - visible on both mobile and desktop */
.hero-cta {
    padding-top: 40px;
    text-align: center;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
}

.arrow-down {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* --- About Section --- */
.about-section {
    padding: 60px 20px;
    text-align: center;
}

.about-content {
    max-width: 400px;
    margin: 0 auto;
}

.about-title {
    margin-bottom: 20px;
    text-align: left;
}

.about-subtitle {
    text-align: left;
}

/* --- Features Section --- */
.features-section {
    padding: 0 20px 60px;
}

.features-content {
    max-width: 400px;
    margin: 0 auto;
}

.feature-item {
    margin-bottom: 60px;
}

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

.feature-text {
    margin-bottom: 48px;
}

.feature-image {
    display: flex;
    justify-content: center;
}

.feature-placeholder {
    width: 320px;
    height: 320px;
    background-color: rgba(238, 253, 249, 0.1);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(238, 253, 249, 0.3);
}

.placeholder-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(238, 253, 249, 0.7);
}

/* Feature Images */
.feature-img {
    width: 320px;
    height: 320px;
    object-fit: contain;
    border-radius: 28px;
}

/* Mobile: Ensure consistent text-first, image-second order for all features */
.feature-item {
    display: flex;
    flex-direction: column;
}

.feature-item .feature-text {
    order: 1;
}

.feature-item .feature-image {
    order: 2;
}

/* --- Compare Section --- */
.compare-section {
    padding: 60px 20px;
    text-align: center;
}

.compare-content {
    max-width: 400px;
    margin: 0 auto;
}

.compare-title {
    margin-bottom: 20px;
    text-align: left;
}

.compare-subtitle {
    margin-bottom: 48px;
    text-align: left;
}

.comparison-tables {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.comparison-table {
    width: 100%;
    background-color: rgba(238, 253, 249, 0.05);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
}

.comparison-table.skilltrees {
    background-color: rgba(238, 253, 249, 0.1);
    border: 1px solid rgba(238, 253, 249, 0.2);
}

.table-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #EEFDF9;
    margin: 0 0 16px 0;
    text-align: center;
}

.table-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.table-item {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #EEFDF9;
    padding: 12px 0;
    position: relative;
    line-height: 1.4;
}

.table-item::before {
    content: "•";
    color: rgba(238, 253, 249, 0.6);
    margin-right: 8px;
}

.skilltrees .table-item::before {
    content: "✓";
    color: #4ade80;
    margin-right: 8px;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 60px 20px;
}

.faq-content {
    max-width: 400px;
    margin: 0 auto;
}

.faq-title {
    margin-bottom: 40px;
    text-align: left;
}

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

.faq-item {
    border-bottom: 1px solid rgba(238, 253, 249, 0.1);
}

.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-trigger:hover {
    color: rgba(238, 253, 249, 0.8);
}

.faq-question {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #EEFDF9;
    line-height: 1.5;
}

.faq-arrow {
    color: #EEFDF9;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-content-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.faq-item.open .faq-content-text {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-content-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(238, 253, 249, 0.8);
    line-height: 1.6;
    margin: 0;
    padding-right: 40px;
}

/* --- Responsive Display Classes --- */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

/* --- Small Mobile Fixes (iPhone 13 and similar) --- */
@media (max-width: 390px) {
    /* Reduce header padding to save space */
    .welcome-header {
        padding-left: calc(12px + env(safe-area-inset-left, 0px));
        padding-right: calc(12px + env(safe-area-inset-right, 0px));
    }

    /* Make logo smaller */
    .logo {
        width: 100px;
        height: auto;
    }

    /* Reduce gap between language selector and login button */
    .header-actions {
        gap: 8px;
    }

    /* Remove extra margin from language selector */
    .language-selector {
        margin-right: 0 !important;
    }

    /* Make language selector more compact */
    .language-selector select {
        padding: 4px 0px 4px 6px !important;
        font-size: 13px !important;
        background-position: right 4px center !important;
    }

    /* Make login button more compact but prevent shrinking */
    .login-btn {
        padding: 6px 10px;
        font-size: 13px;
        letter-spacing: 0.3px;
        flex-shrink: 0; /* Prevent login button from shrinking */
    }

    /* Allow language selector to shrink if needed */
    .language-selector {
        flex-shrink: 1;
        min-width: 0;
    }
}

/* --- Desktop Styles --- */
@media (min-width: 768px) {

    /* CSS Custom Properties for Consistency */
    :root {
        --desktop-section-gap: 80px;
        --desktop-content-gap: 60px;
        --desktop-padding: 80px 40px;
        --desktop-max-width: 1200px;
        --desktop-container-width: 1200px;
        --desktop-container-height: 450px;
        --image-container-size: 400px;
        --text-container-width: 540px;
        /* Half of container minus gap */
    }

    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }

    /* Header adjustments */
    .welcome-header {
        padding: 20px 40px;
        padding-top: calc(20px + env(safe-area-inset-top, 0px));
        padding-left: calc(40px + env(safe-area-inset-left, 0px));
        padding-right: calc(40px + env(safe-area-inset-right, 0px));
        min-height: calc(90px + env(safe-area-inset-top, 0px));
    }

    .welcome-main {
        padding-top: 90px;
    }

    /* Hero Section - Desktop */
    .hero-section {
        padding: var(--desktop-padding);
        padding-bottom: 40px;
        min-height: calc(100vh - 90px);
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        width: var(--desktop-container-width);
        max-width: var(--desktop-max-width);
        margin: 0 auto;
        display: grid;
        grid-template-columns: var(--text-container-width) var(--text-container-width);
        gap: var(--desktop-content-gap);
        align-items: center;
        margin-bottom: 40px;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-right: 20px;
        /* Consistent text padding */
    }

    .hero-title,
    .hero-subtitle {
        text-align: left;
    }

    .hero-image {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: var(--image-container-size);
    }

    .hero-cta {
        max-width: var(--desktop-max-width);
        margin: 0 auto;
        text-align: center;
        display: block;
    }

    .hero-cta .learn-more-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        border: none;
        color: #EEFDF9;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 400;
        cursor: pointer;
        transition: all 0.2s ease;
        padding: 0;
        margin: 0 auto;
    }

    /* About Section - Desktop */
    .about-section {
        padding: var(--desktop-padding);
    }

    .about-content {
        width: var(--desktop-container-width);
        max-width: var(--desktop-max-width);
        margin: 0 auto;
        display: grid;
        grid-template-columns: var(--text-container-width) var(--text-container-width);
        gap: var(--desktop-content-gap);
        align-items: center;
    }

    .about-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-right: 20px;
    }

    .about-title,
    .about-subtitle {
        text-align: left;
    }

    .about-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: calc(var(--image-container-size) * 0.6);
    }

    /* Features Section - Desktop */
    .features-section {
        padding: 0 40px var(--desktop-section-gap);
    }

    .features-content {
        width: var(--desktop-container-width);
        max-width: var(--desktop-max-width);
        margin: 0 auto;
    }

    .feature-item {
        width: var(--desktop-container-width);
        height: var(--desktop-container-height);
        display: grid;
        grid-template-columns: var(--text-container-width) var(--text-container-width);
        gap: var(--desktop-content-gap);
        align-items: center;
        margin-bottom: var(--desktop-section-gap);
        box-sizing: border-box;
    }

    /* Consistent layout: text always left, image always right */
    .feature-text {
        order: 1;
        width: var(--text-container-width);
        padding-right: 20px;
        box-sizing: border-box;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .feature-image {
        order: 2;
        width: var(--text-container-width);
        display: flex;
        justify-content: center;
        align-items: center;
        height: var(--image-container-size);
        box-sizing: border-box;
    }

    /* Standardized image sizing */
    .feature-img {
        max-width: var(--image-container-size);
        max-height: var(--image-container-size);
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 16px;
    }

    .feature-title {
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    .feature-subtitle {
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        line-height: 1.6;
    }

    /* Compare Section - Desktop */
    .compare-section {
        padding: var(--desktop-padding);
    }

    .compare-content {
        width: var(--desktop-container-width);
        max-width: var(--desktop-max-width);
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

    .compare-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 48px;
        max-width: var(--text-container-width);
    }

    .compare-title,
    .compare-subtitle {
        text-align: left;
    }

    .comparison-tables {
        display: flex;
        flex-direction: row;
        gap: 40px;
        justify-content: center;
    }

    .comparison-table {
        flex: 1;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* FAQ Section - Desktop */
    .faq-section {
        padding: var(--desktop-padding);
    }

    .faq-content {
        width: var(--desktop-container-width);
        max-width: var(--desktop-max-width);
        margin: 0 auto;
        display: grid;
        grid-template-columns: var(--text-container-width) var(--text-container-width);
        gap: var(--desktop-content-gap);
        align-items: start;
    }

    .faq-title {
        text-align: left;
        margin-bottom: 0;
        padding-right: 20px;
    }

    .faq-items {
        /* Second column in consistent 1fr 1fr grid */
    }
}

/* Language Selector Styles */
.language-selector {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    z-index: 1001;
    margin-right: 20px;
}

/* Style the gtranslate dropdown trigger */
.language-selector .gtranslate-dropdown {
    background-color: transparent !important;
    border: none !important;
    color: #EEFDF9 !important;
    font-size: 14px !important;
    font-family: "Inter", sans-serif !important;
    cursor: pointer !important;
    padding: 6px 20px 6px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all 0.2s ease !important;
}

.language-selector .gtranslate-dropdown:hover {
    color: rgba(238, 253, 249, 0.8) !important;
}

/* Style the dropdown arrow */
.language-selector .gtranslate-dropdown::after {
    content: '';
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L5 5L9 1' stroke='%23EEFDF9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.2s ease;
}

.language-selector .gtranslate-dropdown.open::after {
    transform: rotate(180deg);
}

/* Style the dropdown menu */
.language-selector .gtranslate-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background-color: #1a1a1a !important;
    border: 1px solid rgba(238, 253, 249, 0.2) !important;
    border-radius: 6px !important;
    padding: 4px 0 !important;
    min-width: 80px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    z-index: 1002 !important;
    margin-top: 4px !important;
}

.language-selector .gtranslate-menu a {
    display: block !important;
    padding: 8px 12px !important;
    color: #EEFDF9 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-family: "Inter", sans-serif !important;
    transition: background-color 0.2s ease !important;
}

.language-selector .gtranslate-menu a:hover {
    background-color: rgba(238, 253, 249, 0.1) !important;
}

/* Alternative styling for different gtranslate structures */
.language-selector select {
    padding: 6px 0px 6px 10px;
    background-color: transparent !important;
    border: none !important;
    border-radius: 4px;
    color: #EEFDF9 !important;
    font-size: 14px;
    font-family: "Inter", sans-serif !important;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L5 5L9 1' stroke='%23EEFDF9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    min-width: fit-content;
    width: auto;
}

.language-selector select:hover {
    background-color: rgba(238, 253, 249, 0.1) !important;
}

.language-selector select:focus {
    outline: none !important;
    box-shadow: none !important;
}

.language-selector select option {
    background-color: #1a1a1a !important;
    color: #EEFDF9 !important;
}

/* Generic gtranslate widget styling */
.language-selector .gt_selector {
    background-color: transparent !important;
    border: none !important;
    color: #EEFDF9 !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
}

.language-selector .gt_selector:hover {
    background-color: rgba(238, 253, 249, 0.1) !important;
}

.language-selector .gt_option {
    background-color: #1a1a1a !important;
    color: #EEFDF9 !important;
    border: 1px solid rgba(238, 253, 249, 0.2) !important;
}

.language-selector .gt_option:hover {
    background-color: rgba(238, 253, 249, 0.1) !important;
}

/* Additional gtranslate widget structures */
.language-selector .gt-current {
    background-color: transparent !important;
    color: #EEFDF9 !important;
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    border: none !important;
    padding: 6px 20px 6px 0 !important;
    cursor: pointer !important;
    position: relative !important;
}

.language-selector .gt-current::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L5 5L9 1' stroke='%23EEFDF9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.language-selector .gt-dropdown {
    background-color: #1a1a1a !important;
    border: 1px solid rgba(238, 253, 249, 0.2) !important;
    border-radius: 6px !important;
    padding: 4px 0 !important;
    margin-top: 4px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.language-selector .gt-dropdown a,
.language-selector .gt-dropdown .gt-option {
    display: block !important;
    padding: 8px 12px !important;
    color: #EEFDF9 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-family: "Inter", sans-serif !important;
    background-color: transparent !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
    cursor: pointer !important;
}

.language-selector .gt-dropdown a:hover,
.language-selector .gt-dropdown .gt-option:hover {
    background-color: rgba(238, 253, 249, 0.1) !important;
}

/* Make sure the widget is visible */
.language-selector .gt_switcher,
.language-selector .gtranslate {
    display: block !important;
    visibility: visible !important;
}

/* Override any display: none from gtranslate */
.language-selector * {
    font-family: "Inter", sans-serif !important;
}

/* --- Large Desktop Styles --- */
@media (min-width: 1024px) {

    /* Update custom properties for large screens */
    :root {
        --desktop-section-gap: 100px;
        --desktop-content-gap: 80px;
        --desktop-padding: 100px 60px;
        --desktop-max-width: 1200px;
        --desktop-container-width: 1200px;
        --desktop-container-height: 450px;
        --image-container-size: 450px;
        --text-container-width: 560px;
        /* Updated for large screens */
    }

    .hero-content,
    .about-content,
    .features-content,
    .compare-content,
    .faq-content {
        width: var(--desktop-container-width);
        max-width: var(--desktop-max-width);
        gap: var(--desktop-content-gap);
    }

    .hero-content,
    .about-content,
    .compare-content,
    .faq-content {
        grid-template-columns: var(--text-container-width) var(--text-container-width);
    }

    .feature-item {
        grid-template-columns: var(--text-container-width) var(--text-container-width);
    }

    .feature-text,
    .feature-image {
        width: var(--text-container-width);
    }

    .hero-section,
    .about-section,
    .compare-section,
    .faq-section {
        padding: var(--desktop-padding);
    }

    .features-section {
        padding: 0 60px var(--desktop-section-gap);
    }

    .feature-item {
        margin-bottom: var(--desktop-section-gap);
    }
}