* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

a {
    color: inherit;
}

/* NAVBAR */

/* NAVBAR */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    padding: 24px 7%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 100;

    border-bottom: 1px solid transparent;

    background: transparent;

    transition:
        padding 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        backdrop-filter 0.35s ease;
}

.navbar.scrolled {
    padding-top: 18px;
    padding-bottom: 18px;

    background: rgba(0, 0, 0, 0.72);

    border-color: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.logo {
    position: relative;
    z-index: 102;

    display: inline-flex;
    align-items: center;
    gap: 14px;

    width: auto;
    height: auto;

    color: #fff;
    text-decoration: none;
}

.logo-icon {
    display: block;

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo-text strong {
    color: #fff;

    font-size: 16px;
    line-height: 1;

    font-weight: 700;
    letter-spacing: 3px;

    white-space: nowrap;
}

.logo-text small {
    color: rgba(190, 220, 255, 0.62);

    font-size: 8px;
    line-height: 1;

    font-weight: 500;
    letter-spacing: 2.4px;

    white-space: nowrap;
}


.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    text-decoration: none;
}

.footer-logo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.main-navigation {
    display: flex;
    align-items: center;

    gap: 38px;
}

.nav-link {
    position: relative;

    padding: 8px 0;

    color: rgba(255, 255, 255, 0.58);

    text-decoration: none;

    font-size: 15px;

    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: #fff;

    transform: scaleX(0);
    transform-origin: right;

    transition:
        transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;

    position: relative;

    z-index: 102;

    width: 46px;
    height: 46px;

    margin: 0;
    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    cursor: pointer;
}

.menu-toggle span {
    position: absolute;

    left: 50%;

    width: 18px;
    height: 1px;

    background: #fff;

    transform: translateX(-50%);

    transition:
        top 0.3s ease,
        transform 0.3s ease;
}

.menu-toggle span:first-child {
    top: 19px;
}

.menu-toggle span:last-child {
    top: 26px;
}

.menu-toggle.active span:first-child {
    top: 22px;

    transform:
        translateX(-50%)
        rotate(45deg);
}

.menu-toggle.active span:last-child {
    top: 22px;

    transform:
        translateX(-50%)
        rotate(-45deg);
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 7% 60px;
    background:
        radial-gradient(
            circle at 78% 52%,
            rgba(37, 64, 118, 0.58),
            transparent 34%
        ),
        linear-gradient(
            120deg,
            #000 0%,
            #03050a 45%,
            #0a1020 100%
        );
}

.hero-content {
    position: relative;
    z-index: 5;
    width: min(760px, 54vw);
}

.small-title,
.section-label {
    color: rgba(255, 255, 255, 0.52);
    letter-spacing: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
}

h1 {
    font-size: clamp(58px, 7vw, 108px);
    line-height: 0.94;
    letter-spacing: -6px;
    font-weight: 750;
}

.description {
    margin-top: 38px;
    max-width: 610px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 21px;
    line-height: 1.6;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 46px;
    min-height: 62px;
    padding: 0 38px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.primary-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(255, 255, 255, 0.2);
}

.glow {
    position: absolute;
    right: -80px;
    top: 10%;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(102, 156, 255, 0.24),
        transparent 66%
    );
    filter: blur(35px);
    animation: pulse 6s infinite alternate ease-in-out;
}

@keyframes pulse {
    from {
        transform: scale(0.92);
        opacity: 0.65;
    }

    to {
        transform: scale(1.08);
        opacity: 1;
    }
}

#earth-container {
    position: fixed;
    right: 1.5vw;
    top: 50%;
    transform: translateY(-50%);
    width: min(50vw, 720px);
    height: min(50vw, 720px);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.5s ease;
    will-change: opacity;
}

#earth-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 34px;
    left: 7%;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 5;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateX(-100%);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateX(-100%);
    }

    50%,
    100% {
        transform: translateX(100%);
    }
}

/* JOURNEY */

.journey-section {
    height: 230vh;
    position: relative;
    background:
        radial-gradient(
            circle at 72% 45%,
            rgba(20, 52, 110, 0.25),
            transparent 32%
        ),
        #000;
}

.journey-sticky {
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    padding: 120px 7%;
    overflow: hidden;
}

.journey-copy {
    position: absolute;
    left: 7%;
    top: 50%;
    width: min(600px, 42vw);
    z-index: 5;
    transform: translateY(-50%);
    text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.95),
    0 8px 40px rgba(0, 0, 0, 0.8);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
    will-change: opacity, transform;
}

.journey-copy-one {
    opacity: 1;
    transform: translateY(-50%);
}

.journey-copy-two {
    opacity: 0;
    transform: translateY(calc(-50% + 40px));
}

.journey-copy h2,
.section-heading h2,
.contact-card h2 {
    font-size: clamp(48px, 6vw, 92px);
    line-height: 0.98;
    letter-spacing: -5px;
    font-weight: 750;
}

.journey-copy p:last-child {
    margin-top: 32px;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 20px;
    line-height: 1.65;
}

/* SERVICES */

.services,
.process,
.contact {
    position: relative;
    z-index: 10;
}

.services {
    padding: 150px 7%;
    background: #f5f5f7;
    color: #111;
}

.services .section-label,
.process .section-label {
    color: rgba(0, 0, 0, 0.48);
}

.section-heading {
    max-width: 1100px;
    margin-bottom: 90px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    min-height: 420px;
    border-radius: 36px;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    overflow: hidden;
    position: relative;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.service-card > div:last-child {
    width: 100%;
}

.service-number {
    position: absolute;
    top: 44px;
    left: 44px;
    font-size: 13px;
    letter-spacing: 4px;
    color: rgba(0, 0, 0, 0.35);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.service-card-large {
    grid-column: span 2;
    min-height: 500px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(72, 121, 255, 0.35),
            transparent 38%
        ),
        linear-gradient(135deg, #0a0b10, #172243);
    color: #fff;
}

.service-card-new {
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(102, 126, 255, 0.4),
            transparent 38%
        ),
        #12141c;
    color: #fff;
}

.service-card-large .service-number,
.service-card-new .service-number {
    color: rgba(255, 255, 255, 0.45);
}

.service-card h3 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.service-card p {
    max-width: 610px;
    color: rgba(0, 0, 0, 0.56);
    font-size: 18px;
    line-height: 1.6;
}

.service-card-large p,
.service-card-new p {
    color: rgba(255, 255, 255, 0.62);
}

.new-badge {
    position: absolute;
    top: 38px;
    right: 38px;
    padding: 10px 15px;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* PROCESS */

.process {
    padding: 150px 7%;
    background: #fff;
    color: #111;
}

.process-list {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.process-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    padding: 55px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.process-item > span {
    color: rgba(0, 0, 0, 0.35);
    letter-spacing: 3px;
    font-size: 13px;
}

.process-item h3 {
    font-size: clamp(34px, 4vw, 56px);
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.process-item p {
    max-width: 700px;
    color: rgba(0, 0, 0, 0.55);
    font-size: 18px;
    line-height: 1.65;
}

/* CONTACT */

.contact {
    padding: 120px 7%;
    background: #000;
}

.contact-card {
    min-height: 680px;
    border-radius: 42px;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(72, 112, 255, 0.34),
            transparent 38%
        ),
        linear-gradient(135deg, #10121a, #050505);
}

.contact-card > p:not(.section-label) {
    max-width: 620px;
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    line-height: 1.65;
}
/* CONTACT TABLET */

@media (max-width: 1250px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 55px;
        padding: 60px;
    }

    .contact-copy {
        max-width: 760px;
    }

    .contact-copy h2 {
        max-width: 760px;
        font-size: clamp(50px, 7vw, 78px);
    }

    .contact-form {
        width: 100%;
    }
}


/* TABLET */

@media (max-width: 1100px) {
    /* mevcut kodların burada kalacak */
}
/* TABLET */

@media (max-width: 1100px) {
    #earth-container {
        right: -60px;
        width: min(56vw, 650px);
        height: min(56vw, 650px);
        opacity: 0.82;
    }

    .hero-content {
        width: min(680px, 60vw);
    }

    .journey-copy {
        width: min(560px, 48vw);
    }
}

/* MOBILE */

@media (max-width: 800px) { 
    .logo {
    gap: 10px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
}

.logo-text strong {
    font-size: 12px;
    letter-spacing: 2px;
}

.logo-text small {
    display: none;
}
    .logo {
    width: 205px;
    height: 46px;
}

.footer-logo {
    width: 52px;
    height: 52px;
}
    .journey-sticky {
    position: sticky;
    z-index: 2;
}

.journey-copy {
    width: 58%;
    max-width: 330px;

    z-index: 5;
}

.journey-copy h2 {
    font-size: clamp(42px, 10vw, 58px);
    line-height: 0.98;
}

.journey-copy p:last-child {
    max-width: 310px;
    font-size: 16px;
    line-height: 1.55;
}
    .navbar {
        padding: 24px 6%;
    }

    .logo {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .hero {
        min-height: 100svh;
        padding: 130px 6% 80px;
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
        max-width: none;
    }

    h1 {
        font-size: clamp(52px, 15vw, 72px);
        letter-spacing: -4px;
    }

    .description {
        font-size: 17px;
        max-width: 82%;
    }

    #earth-container {
    position: fixed;

    width: 380px;
    height: 380px;

    right: -210px;
    top: 58%;

    opacity: 0.32;

    z-index: 1;

    transform: translateY(-50%);

    overflow: hidden;
}

    .scroll-indicator {
        left: 6%;
    }

    .journey-section {
        height: 190vh;
    }

    .journey-sticky {
        height: 100svh;
        padding: 100px 6%;
        align-items: center;
    }

    .journey-copy {
        width: 82%;
        top: 50%;
        left: 6%;
    }

    .journey-copy h2,
    .section-heading h2,
    .contact-card h2 {
        font-size: clamp(44px, 13vw, 68px);
        letter-spacing: -3px;
    }

    .journey-copy p:last-child {
        font-size: 17px;
    }

    .services,
    .process,
    .contact {
        padding: 100px 6%;
    }

    .section-heading {
        margin-bottom: 60px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card-large {
        grid-column: span 1;
        min-height: 400px;
        padding: 32px;
        border-radius: 28px;
    }

    .service-number {
        top: 32px;
        left: 32px;
    }

    .service-card h3 {
        font-size: 40px;
    }

    .new-badge {
        top: 28px;
        right: 28px;
    }

    .process-item {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 42px 0;
    }

    .contact-card {
        min-height: 600px;
        padding: 38px 28px;
        border-radius: 28px;
    }

    .menu-toggle {
    display: block;
}

.main-navigation {
    position: fixed;

    inset: 0;

    min-height: 100svh;

    padding: 130px 7% 60px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 16px;

    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(58, 92, 166, 0.3),
            transparent 35%
        ),
        rgba(0, 0, 0, 0.97);

    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease;
}

.main-navigation.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
}

.nav-link {
    width: 100%;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.09);

    font-size: clamp(30px, 9vw, 48px);
    font-weight: 650;
    letter-spacing: -1.5px;
}

.nav-link::after {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

}



/* APPLE TARZI KART GİRİŞ ANİMASYONU */

.service-card.reveal-card {
    opacity: 0;
    transform: translateY(56px) scale(0.985);
    filter: blur(6px);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.service-card.reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.service-card.reveal-card.is-visible:hover {
    transform: translateY(-8px) scale(1);
}

/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* CONTACT FORM */

.contact-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(500px, 1.15fr);

    gap: 80px;
    align-items: center;

    min-height: 720px;
    padding: 80px;

    border-radius: 42px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(72, 112, 255, 0.28),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #10121a,
            #050505
        );
}

.contact-copy {
    min-width: 0;
    max-width: 620px;
}

.contact-copy h2 {
    max-width: 620px;

    font-size: clamp(52px, 4.4vw, 78px);
    line-height: 0.98;
    letter-spacing: -4px;

    overflow-wrap: normal;
}

.contact-description {
    max-width: 590px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 19px;
    line-height: 1.7;
}

.whatsapp-button {
    margin-top: 38px;
    min-height: 58px;
    padding: 0 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 15px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 38px;
    min-height: 58px;
    padding: 0 30px;

    border: 1px solid rgba(37, 211, 102, 0.55);
    border-radius: 999px;

    background: #25d366;
    color: #fff;

    text-decoration: none;
    font-size: 15px;
    font-weight: 650;

    cursor: pointer;

    box-shadow:
        0 14px 35px rgba(37, 211, 102, 0.2);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    background: #20bd5a;

    box-shadow:
        0 20px 45px rgba(37, 211, 102, 0.32);

}

.contact-form {
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.form-group label {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    letter-spacing: 0.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font: inherit;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.form-group input,
.form-group select {
    min-height: 56px;
    padding: 0 17px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    padding: 16px 17px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
    background: #11141d;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(126, 178, 255, 0.8);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 4px rgba(82, 137, 255, 0.11);
}

.form-submit {
    width: 100%;
    min-height: 60px;
    margin-top: 4px;
    border: none;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 650;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.15);
}

.form-status {
    min-height: 24px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    text-align: center;
}

@media (max-width: 1000px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 55px;
    }

    .contact-copy {
        max-width: 760px;
    }
}

@media (max-width: 800px) {
    .contact-layout {
        min-height: auto;
        padding: 34px 22px;
        border-radius: 28px;
    }

    .contact-copy h2 {
        font-size: clamp(44px, 13vw, 66px);
        letter-spacing: -3px;
    }

    .contact-form {
        padding: 25px 18px;
        border-radius: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
.form-status.success {
    color: #4ade80;
}

.form-status.error {
    color: #ff6b6b;
}

.form-submit:disabled {
    cursor: wait;
    opacity: 0.65;
    transform: none;
}
/* SPAM ALANI */

.spam-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


/* ONAY KUTUSU */

.consent-box {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    margin: 8px 0 24px;

    cursor: pointer;
    user-select: none;
}

.consent-box input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-checkbox {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    margin-top: 1px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 7px;

    background: rgba(255, 255, 255, 0.06);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.custom-checkbox::after {
    content: "";

    width: 5px;
    height: 10px;

    border: solid #000;
    border-width: 0 2px 2px 0;

    transform:
        rotate(45deg)
        scale(0);

    transition: transform 0.2s ease;
}

.consent-box input:checked + .custom-checkbox {
    background: #fff;
    border-color: #fff;

    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.1);
}

.consent-box input:checked + .custom-checkbox::after {
    transform:
        rotate(45deg)
        scale(1);
}

.consent-box input:focus-visible + .custom-checkbox {
    border-color: #7eb2ff;

    box-shadow:
        0 0 0 4px rgba(82, 137, 255, 0.18);
}

.consent-text {
    color: rgba(255, 255, 255, 0.54);
    font-size: 13px;
    line-height: 1.55;
}

.consent-box:hover .custom-checkbox {
    border-color: rgba(255, 255, 255, 0.48);
}
/* FOOTER */

.footer {
    position: relative;
    z-index: 10;

    padding: 42px 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    background: #000;
}

.footer-logo {
    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.footer p {
    color: rgba(255, 255, 255, 0.38);

    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);

    text-decoration: none;

    font-size: 13px;

    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

@media (max-width: 800px) {
    .footer {
        padding: 38px 6%;

        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}