html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'NauryzRedKeds';
    src: url('assets/fonts/nauryzredkeds.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-blue: #35A7FF;
    --primary-orange: #FF5C20;
    --bg-light: #F7F7F7;
    --grey-100: #1A1A1A;
    --grey-90: #383838;
    --grey-80: #5A5A5A;
    --grey-70: #888888;
    --white: #FFFFFF;
    --glass-white: rgba(255, 255, 255, 0.2);
    --glass-white-border: rgba(255, 255, 255, 0.2);
    --cobalt-100: #1B66D9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 1920px;
    margin: 0 auto;
}

body {
    font-family: 'Onest', sans-serif;
    background-color: var(--bg-light);
    color: var(--grey-100);
    overflow-x: hidden;
    line-height: 1.5;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1374px;
    z-index: 1000;
}

.header-container {
    background: var(--glass-white-border);
    backdrop-filter: blur(10px);
    border: 1px solid var(--white);
    border-radius: 24px;
    padding: 11px 33px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 6px 15px 0px rgba(18, 18, 18, 0.04);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-menu-body {
    display: none;
}

.mobile-carousel {
    display: none;
}

.logo img {
    height: 34px;
}

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

.nav-cta {
    display: none;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: var(--grey-90);
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 40px;
    transition: background 0.3s;
}

.nav-link:hover {
    background: rgba(26, 26, 26, 0.05);
}

/* Buttons */
.btn {
    border: none;
    border-radius: 40px;
    font-family: 'Onest', sans-serif;
    padding: 12px 24px;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    text-decoration: none;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--grey-100);
    color: var(--white);
    padding: 8px 16px;
}

.btn-orange {
    background-color: var(--primary-orange);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 136px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    filter: blur(100px);
    z-index: -1;
}

.hero::before {
    top: -200px;
    left: -200px;
}

.hero::after {
    bottom: -100px;
    right: -200px;
    background: radial-gradient(circle, rgba(255, 92, 32, 0.05) 0%, rgba(255, 92, 32, 0) 70%);
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 80%
}

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

.hero-title {
    font-size: 52px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 48px;
    letter-spacing: -0.4px;
}

.accent-blue {
    color: var(--primary-blue);
    font-family: 'NauryzRedKeds';
}

.hero-description {
    font-size: 24px;
    color: var(--grey-90);
    margin-bottom: 48px;
}

.hero-description p {
    margin-bottom: 20px;
}

.hero-visual {
    flex: 1;
    max-width: 30%;
}

.hero-visual img {
    width: 100%;
    max-width: 533px;
    height: auto;
}

/* Marketplace Section with Tabs */
.marketplace {
    padding: 80px 0;
    background: var(--white);
}

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

.section-title {
    font-size: 42px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.4px;
    width: 90%;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 24px;
    color: var(--grey-90);
    margin-top: 40px;
}

.tabs-container {
    display: flex;
    gap: 40px;
    max-width: 80%;
    margin: 0 auto;
}

.tabs-switcher {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 312px;
}

.tab-btn {
    background: transparent;
    border: none;
    border-radius: 40px;
    padding: 10px 20px;
    font-size: 20px;
    text-align: left;
    color: var(--grey-80);
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: rgba(26, 26, 26, 0.05);
    color: var(--cobalt-100);
}

.tabs-content {
    flex: 1;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 400px;
}

.tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
}

.tab-pane.active {
    opacity: 1;
    visibility: visible;
}

.tab-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tab-pane-glass {
    position: absolute;
    top: 80px;
    left: 80px;
    max-width: 515px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 20px;
    z-index: 10;

}

/* For Whom Section */
.for-whom {
    padding: 80px 0;
    background-color: #F0F0F2;
}

.accent-orange-v {
    font-family: 'Onest', sans-serif;
    /* Simplified for now, NauryzRedKeds is custom */
    color: var(--orange-primary);
    font-weight: 800;
}

.audiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 90%;
    margin: 0 auto;
}

.audience-card {
    padding: 60px 40px;
    border-radius: 60px 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: skewX(-20deg);
}

.audience-card>* {
    transform: skewX(20deg);
    position: relative;
    z-index: 1;
}

/* Ensure the card header and text are centered */
.audience-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.audience-card:hover {
    transform: skewX(-20deg) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.audience-card.private {
    background: linear-gradient(135deg, #1b66d9 0%, #1551b0 100%);
    color: white;
}

.audience-card.owners {
    background: white;
    border: 1px solid var(--grey-10);
    color: var(--grey-90);
}

.audience-card.owners .card-icon {
    color: var(--cobalt-primary);
}

.audience-card.specialists {
    background: white;
    border: 1px solid var(--grey-10);
    color: var(--grey-90);
}

.audience-card.specialists .card-icon {
    color: var(--orange-primary);
}

.audience-card.business {
    background: linear-gradient(135deg, #ff5c20 0%, #e64a19 100%);
    color: white;
}

.audience-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.audience-card p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.audience-card.owners p,
.audience-card.specialists p {
    opacity: 1;
    color: var(--grey-70);
}

.card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Market Section */
.market-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.market-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    margin-top: -20px;
}

.market-section>.container {
    position: relative;
    z-index: 1;
}

.market-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 92, 32, 0.05) 0%, rgba(255, 92, 32, 0) 70%);
    filter: blur(80px);
    top: 10%;
    right: -200px;
    z-index: 0;
}

.market-card {
    background: var(--glass-white);
    border-radius: 70px;
    padding: 40px 80px 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    box-shadow: 0px 6px 15px 0px rgba(18, 18, 18, 0.04);
    width: 60%;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
}

.market-card-body {
    display: flex;
    gap: 64px;
    align-items: center;
    width: 100%;
}

.market-card img {
    width: 312px;
    height: 368px;
    border-radius: 30px;
    object-fit: cover;
}

.market-card-content {
    font-size: 16px;
    color: #2A2A2A;
}

.market-card-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Protection */
.protection {
    background-image: url("assets/images/group_61.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.protection::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(27, 102, 217, 0.06) 0%, rgba(27, 102, 217, 0) 70%);
    filter: blur(100px);
    bottom: -100px;
    left: -300px;
    z-index: 0;
}

.protection-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.protection-icons {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
    opacity: 0.85;
}

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

.protection-text {
    max-width: 866px;
    margin: 0 auto;
    text-align: center;
    font-size: 24px;
    color: var(--grey-90);
}

.highlight {
    margin-top: 40px;
    font-weight: 500;
}

/* Early Access */
.early-access {
    background-image:
        url("assets/images/group_59.svg"),
        linear-gradient(180deg, #F0F0F2 0%, rgba(240, 240, 242, 0) 99%);
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.access-card {
    position: relative;
    z-index: 1;
    background: var(--glass-white);
    border-radius: 70px;
    padding: 48px 64px;
    max-width: 910px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0px 6px 15px 0px rgba(18, 18, 18, 0.04);
}

.access-card h2 {
    margin-bottom: 24px;
    width: 100%;
}

.access-card p {
    font-size: 20px;
    color: var(--grey-80);
    margin-bottom: 40px;
}

.email-form {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.email-form input {
    flex: 1;
    background: rgba(26, 26, 26, 0.05);
    border: 1px solid var(--white);
    border-radius: 40px;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 16px;
}

.form-hint {
    color: var(--grey-70);
    font-size: 16px;
}

/* Start Region */
.start-region {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.start-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.start-visual {
    flex: 1;
    max-width: 30%;
}

.start-visual img {
    width: 450px;
    height: auto;
    object-fit: contain;
}

.start-content {
    flex: 1;
}

.start-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.start-content p {
    font-size: 20px;
    color: var(--grey-70);
    line-height: 1.6;
}

/* Real Footer */
.footer {
    background: var(--grey-90);
    padding: 60px 0 32px;
    color: white;
}


.footer-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.footer-logo {
    margin: 0;
}

.footer-logo img {
    margin: 0;
    display: block;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    margin: 0;
    width: 100%;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
}

.footer-column * {
    margin: 0;
}

.footer-column:nth-child(2) {
    justify-self: center;
    align-items: center;
    text-align: center;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 12px;
    justify-self: end;
    margin: 0;
}

.footer-socials * {
    margin: 0;
}

.footer-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--orange-primary);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Utilities */
.text-center {
    text-align: center;
    width: 100%;
}

.accent-orange {
    color: var(--primary-orange);
    font-family: 'NauryzRedKeds';
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    margin-left: auto;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--grey-100);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-only {
    display: none;
}

/* ============================================
   MOBILE — max-width: 768px
   ============================================ */
@media (max-width: 768px) {

    /* --- Container --- */
    .container {
        padding: 0 20px;
    }

    /* --- Header --- */
    .header {
        top: 10px;
        left: 10px;
        right: 10px;
        width: auto;
        transform: none;
        max-width: none;
    }

    .header-container {
        padding: 8.5px 10.5px;
        overflow: hidden;
        max-height: 61px;
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
            background 0.3s ease;
    }

    .header.menu-open .header-container {
        max-height: 700px;
        background: rgba(255, 255, 255, 0.8);
    }

    /* hide desktop nav & cta inside header-inner */
    .header-inner .nav,
    .header-inner .btn-dark {
        display: none;
    }

    /* show hamburger */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: rgba(255, 255, 255, 0.4);
        border: none;
        border-radius: 40px;
        cursor: pointer;
        padding: 10px;
        width: 44px;
        height: 44px;
        box-shadow: 0px 6px 15px 0px rgba(18, 18, 18, 0.04);
        flex-shrink: 0;
    }

    /* hamburger → X animation */
    .menu-toggle span {
        width: 20px;
        height: 2px;
        background: var(--grey-100);
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
        display: block;
    }

    .header.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .header.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .header.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile menu body */
    .mobile-menu-body {
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 0 10px 24px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease 0.05s;
    }

    .header.menu-open .mobile-menu-body {
        max-height: 600px;
        opacity: 1;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 8px 10px 0;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 48px;
        border-radius: 40px;
        font-size: 20px;
        color: var(--grey-90);
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.active-link {
        background: rgba(24, 25, 26, 0.05);
        color: var(--cobalt-100);
    }

    .mobile-menu-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        font-size: 16px;
        padding: 14px 24px;
        text-decoration: none;
    }

    /* --- Hero --- */
    .hero {
        padding: 112px 0 40px;
    }

    .hero-container {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.47;
        margin-bottom: 32px;
        letter-spacing: -0.8px;
    }

    .hero-description {
        font-size: 18px;
        margin-bottom: 32px;
        line-height: 1.78;
    }

    .hero-visual {
        width: 100%;
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .hero-visual img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* --- Market section (problem card) --- */
    .market-section {
        padding: 0 0 40px;
    }

    .market-card {
        width: 100%;
        border-radius: 40px;
        padding: 32px 20px;
        gap: 24px;
    }

    .market-card .section-title {
        font-size: 25px;
        width: 100%;
        line-height: 1.6;
        letter-spacing: -0.8px;
    }

    .market-card-body {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .market-card img {
        width: 100%;
        height: 240px;
    }

    .market-card-content {
        font-size: 18px;
        line-height: 1.78;
    }

    /* --- Marketplace section --- */
    .marketplace {
        padding: 40px 0;
        overflow: hidden;
    }

    .section-title {
        font-size: 25px;
        width: 100%;
        line-height: 1.6;
        letter-spacing: -0.8px;
    }

    .section-subtitle {
        font-size: 18px;
        margin-top: 20px;
    }

    .section-header {
        margin-bottom: 32px;
    }

    /* hide desktop tabs */
    .tabs-container {
        display: none;
    }

    /* show mobile carousel */
    .mobile-carousel {
        display: block;
        position: relative;
        margin-left: -20px;
        margin-right: -20px;
    }

    .mobile-carousel-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-carousel-track::-webkit-scrollbar {
        display: none;
    }

    .mobile-slide {
        min-width: 100%;
        width: 100%;
        height: 524px;
        position: relative;
        overflow: hidden;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        flex-shrink: 0;
    }

    .mobile-slide img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-slide-content {
        position: absolute;
        bottom: 48px;
        left: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .slide-badge {
        display: inline-block;
        background: rgba(24, 25, 26, 0.15);
        color: white;
        font-size: 20px;
        line-height: 32px;
        padding: 4px 20px;
        border-radius: 40px;
        align-self: flex-start;
    }

    .slide-desc {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 30px;
        padding: 20px;
        color: white;
        font-size: 18px;
        line-height: 28px;
        box-shadow: 0px 6px 15px rgba(18, 18, 18, 0.04);
    }

    .carousel-dots-bar {
        position: absolute;
        bottom: 16px;
        left: 0;
        right: 0;
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 10;
    }

    .cdot {
        height: 8px;
        width: 8px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.2);
        flex-shrink: 0;
        transition: width 0.3s, background 0.3s;
    }

    .cdot.active {
        width: 32px;
        background: rgba(255, 255, 255, 0.8);
    }

    /* --- Protection --- */
    .protection {
        padding: 40px 0;
    }

    .protection-text {
        font-size: 18px;
        line-height: 1.78;
    }

    .protection-icons img {
        max-width: 260px;
    }

    /* --- For Whom --- */
    .for-whom {
        padding: 40px 0;
    }

    .audiences-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
        overflow: hidden;
    }

    .audience-card {
        border-radius: 30px;
        padding: 32px;
        margin: 0 28px;
        transform: skewX(-5deg);
    }

    .audience-card>* {
        transform: skewX(5deg);
    }

    .audience-card:hover {
        transform: skewX(-5deg) scale(1.01);
    }

    .audience-card:nth-child(even) {
        transform: skewX(5deg);
    }

    .audience-card:nth-child(even)>* {
        transform: skewX(-5deg);
    }

    .audience-card:nth-child(even):hover {
        transform: skewX(5deg) scale(1.01);
    }

    .audience-card.specialists {
        order: 4;
        transform: skewX(5deg);
    }

    .audience-card.specialists>* {
        transform: skewX(-5deg);
    }

    .audience-card.business {
        order: 3;
        transform: skewX(-5deg);
    }

    .audience-card.business>* {
        transform: skewX(5deg);
    }

    .audience-card h3 {
        font-size: 20px;
    }

    .audience-card p {
        font-size: 16px;
    }

    /* --- Early access --- */
    .early-access {
        padding: 40px 0;
    }

    .access-card {
        border-radius: 40px;
        padding: 32px 20px;
    }

    .access-card h2 {
        font-size: 25px;
        line-height: 1.6;
    }

    .access-card>p {
        font-size: 18px;
        margin-bottom: 32px;
    }

    .email-form {
        flex-direction: column;
        gap: 16px;
    }

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

    /* --- Start/Launch region --- */
    .start-region {
        padding: 40px 0;
    }

    .start-container {
        flex-direction: column;
        gap: 32px;
        width: 85% !important;

    }

    .start-visual {
        max-width: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .start-visual img {
        width: 300px;
    }

    .start-content h2 {
        font-size: 25px;
        line-height: 1.6;
        letter-spacing: -0.4px;
    }

    .start-content p {
        font-size: 16px;
    }

    /* --- Footer --- */
    .footer {
        padding: 40px 0 32px;
    }

    .footer-container {
        gap: 32px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-column:nth-child(2) {
        justify-self: start;
        align-items: flex-start;
        text-align: left;
    }

    .footer-socials {
        justify-self: start;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-socials {
        gap: 20px;
    }

    .social-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .footer-link {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
    }

    .footer-bottom {
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 12px;
        line-height: 1.67;
        text-align: left;
    }

}