/* ------------------------------ HERO ------------------------------ */

.hero {
    background-image:
        radial-gradient(circle at 90% 80%, rgba(107, 33, 168, 0.4) 0%, transparent 30%),
        radial-gradient(circle at 10% 20%, rgba(17, 0, 255, 0.2) 0%, transparent 60%);
    padding-top: 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__container {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.hero__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 40.625rem;
}

.hero__visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero__img-wrapper {
    width: 100%;
    max-width: 43.75rem;
    height: 30rem;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ------------------------------ BRANDS BANNER ------------------------------ */

.brands-banner {
    width: 100vw;
    background-color: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 2rem 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.brand-item {
    width: min(20vw, 240px);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1.5rem;
}

.brand-item img {
    max-width: 160px;
    max-height: 60px;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brand-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ------------------------------ ABOUT ------------------------------ */

.about {
    padding: 7.5rem 5%;
    position: relative;
    overflow: hidden;
}

.about__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(5rem);
    z-index: 0;
}

.about__glow--primary {
    top: 5%;
    right: -10%;
    width: 31.25rem;
    height: 31.25rem;
    background: radial-gradient(circle, rgba(153, 102, 221, 0.12) 0%, transparent 70%);
}

.about__glow--secondary {
    bottom: 5%;
    left: -10%;
    width: 25rem;
    height: 25rem;
    background: radial-gradient(circle, rgba(0, 255, 163, 0.06) 0%, transparent 70%);
}

.about__container {
    max-width: 81.25rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about__header {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.75rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 2.5rem;
    border-bottom: 0.0625rem solid var(--glass-border);
}

.about__title {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1;
    font-weight: 800;
}

.about__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about__description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    border-left: 0.1875rem solid var(--primary-color);
    padding-left: 1.5rem;
}

.stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 0.625rem;
}

.stats__item {
    display: flex;
    flex-direction: column;
}

.stats__value {
    font-size: 1.8rem;
    line-height: 1;
}

.stats__label {
    font-size: 0.8rem;
    color: var(--primary-hover);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 0.3125rem;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1.75rem;
    padding: 1.25rem;
    border: 0.0625rem solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    color: inherit;
}

.project-card:hover {
    transform: translateY(-0.75rem);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(153, 102, 221, 0.3);
    box-shadow: 0 1.875rem 3.75rem rgba(0, 0, 0, 0.4);
}

.project-card__browser-top {
    background: var(--bg-darker);
    padding: 0.875rem 1.25rem;
    border-radius: 0.75rem 0.75rem 0 0;
    margin-bottom: 0;
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dots__item {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
}

.dots__item--red {
    background: var(--color-danger);
}

.dots__item--yellow {
    background: var(--color-warning);
}

.dots__item--green {
    background: var(--color-success);
}

.project-card__img-wrapper {
    line-height: 0;
    overflow: hidden;
    border-radius: 0 0 0.75rem 0.75rem;
}

.project-card__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: top center;
    transition: transform 0.8s ease;
}

.project-card:hover .project-card__img {
    transform: scale(1.1);
}

.project-card__details {
    margin-top: 1.25rem;
    padding: 0 0.625rem;
}

.project-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.3125rem;
}

.project-card__tag {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.about__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 3.75rem;
    border-top: 0.0625rem solid var(--glass-border);
}

.about__subtitle {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
}

.about__footer-text {
    max-width: 40.625rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* ------------------------------ SECTION DIVIDER ------------------------------ */

.section-divider {
    position: relative;
    height: 6rem;
    margin: -1.5rem 0 1.5rem 0;
    pointer-events: none;
    overflow: visible;
}

.section-divider__orb {
    position: absolute;
    top: 50%;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    transform: translateY(-50%);
    filter: blur(0.15rem) saturate(1.05);
    opacity: 0.92;
    overflow: visible;
}

.section-divider__orb::before,
.section-divider__orb::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.section-divider__orb::before {
    top: 50%;
    left: 50%;
    width: 125%;
    height: 36%;
    border-radius: 50%;
    border: 0.125rem solid rgba(190, 135, 201, 0.22);
    transform: translate(-50%, -50%) rotate(-18deg);
    box-shadow: 0 0 0.75rem rgba(153, 102, 221, 0.16);
}

.section-divider__orb::after {
    width: 0.55rem;
    height: 0.55rem;
    top: 18%;
    left: 16%;
    border-radius: 50%;
    background: rgba(198, 198, 209, 0.46);
    box-shadow:
        1.6rem 0.8rem 0 -0.08rem rgba(153, 102, 221, 0.62),
        3.1rem 0.2rem 0 -0.12rem rgba(190, 135, 201, 0.58),
        4.4rem 1.3rem 0 -0.09rem rgba(132, 210, 255, 0.56),
        5.6rem 0.6rem 0 -0.1rem rgba(198, 198, 209, 0.48);
    animation: divider-rocks-drift 9s ease-in-out infinite alternate;
}

.section-divider__orb--left {
    left: -3.5rem;
    background:
        radial-gradient(circle at 34% 30%, rgba(190, 135, 201, 0.66) 0%, rgba(153, 102, 221, 0.34) 45%, rgba(39, 37, 41, 0) 74%);
    box-shadow: 0 0 2rem rgba(153, 102, 221, 0.22);
}

.section-divider__orb--right {
    right: -3.5rem;
    background:
        radial-gradient(circle at 32% 30%, rgba(132, 210, 255, 0.52) 0%, rgba(153, 102, 221, 0.24) 44%, rgba(39, 37, 41, 0) 74%);
    box-shadow: 0 0 2rem rgba(132, 210, 255, 0.16);
}

.section-divider__orb--left::before {
    border-color: rgba(153, 102, 221, 0.3);
    transform: translate(-50%, -50%) rotate(-15deg);
}

.section-divider__orb--right::before {
    border-color: rgba(132, 210, 255, 0.26);
    transform: translate(-50%, -50%) rotate(15deg);
}

.section-divider__orb--right::after {
    top: 64%;
    left: 14%;
    box-shadow:
        1.7rem -0.8rem 0 -0.1rem rgba(132, 210, 255, 0.58),
        3.2rem -1.4rem 0 -0.08rem rgba(190, 135, 201, 0.56),
        4.6rem -0.7rem 0 -0.11rem rgba(153, 102, 221, 0.54),
        6rem -1.2rem 0 -0.12rem rgba(198, 198, 209, 0.42);
}

@keyframes divider-rocks-drift {
    0% {
        transform: translate(0, 0);
        opacity: 0.68;
    }

    100% {
        transform: translate(0.45rem, -0.2rem);
        opacity: 0.95;
    }
}

/* ------------------------------ FEATURES ------------------------------ */

.features__container {
    max-width: 81.25rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
    padding: 0 5%;
}

.features__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.features__main-title {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.1;
    font-weight: 800;
    margin-top: 1rem;
}

.features__list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.feature {
    display: flex;
    width: 100%;
    max-width: 60rem;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 0.0625rem solid var(--glass-border);
    border-radius: 2rem;
    padding: 2.5rem 3.5rem;
    position: relative;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature:nth-child(odd) {
    align-self: flex-start;
}

.feature:nth-child(even) {
    flex-direction: row-reverse;
    align-self: flex-end;
}

.feature:hover {
    transform: translateY(-0.5rem);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(153, 102, 221, 0.4);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.2), 0 0 1.5rem rgba(153, 102, 221, 0.1);
}

.feature__icon-wrapper {
    flex-shrink: 0;
    width: 11rem;
    height: 11rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.feature__cloudflare-wrapper {
    width: 14rem;
}

.feature:hover .feature__icon-wrapper {
    transform: scale(1.08) rotate(3deg);
}

.feature__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.4));
    opacity: 0.8;
}

.feature__text {
    flex: 1;
}

.feature__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
    position: relative;
    display: inline-block;
}

.feature__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 3rem;
    height: 0.1875rem;
    background: var(--gradient-text);
    border-radius: 1rem;
    transition: width 0.4s ease;
}

.feature:hover .feature__title::after {
    width: 100%;
}

.feature__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ------------------------------ PLANS ------------------------------ */

.plans {
    position: relative;
    padding: 6rem 5%;
    background-image: radial-gradient(circle at 50% 100%, rgba(153, 102, 221, 0.05) 0%, transparent 50%);
    overflow: hidden;
}

.plans__container {
    max-width: 81.25rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.plans__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

.plans__main-title {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.1;
    font-weight: 800;
    margin-top: 1rem;
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
}

.plan-card {
    background: rgba(255, 255, 255, 0.02);
    border: 0.0625rem solid var(--glass-border);
    border-radius: 2rem;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-0.5rem);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(153, 102, 221, 0.3);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.2), 0 0 1.5rem rgba(153, 102, 221, 0.05);
}

.plan-card--popular {
    background: rgba(153, 102, 221, 0.04);
    border-color: rgba(153, 102, 221, 0.4);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 3rem rgba(153, 102, 221, 0.1);
}

.plan-card--popular:hover {
    transform: scale(1.05) translateY(-0.5rem);
    border-color: rgba(0, 119, 255, 0.4);
}

.plan-card__badge-popular {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-text);
    color: var(--bg-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(153, 102, 221, 0.3);
    color: white;
}

.plan-card__header {
    margin-bottom: 2rem;
    border-bottom: 0.0625rem solid var(--glass-border);
    padding-bottom: 2rem;
}

.plan-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.plan-card__description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    min-height: 44px;
}

.plan-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
}

.plan-card__body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plan-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.plan-card__feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.plan-card__check {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--color-success);
    flex-shrink: 0;
    margin-left: 1rem;
}

.plan-card__footer {
    width: 100%;
}

.plan-card__btn {
    width: 100%;
    justify-content: center;
}

.plan-card--horizontal {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(153, 102, 221, 0.05) 100%);
}

.plan-card-horiz__info {
    flex: 1;
    max-width: 300px;
}

.plan-card-horiz__info .plan-card__header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.plan-card-horiz__features-wrapper {
    flex: 2;
}

.plan-card__features--two-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3rem;
}

.plan-card-horiz__cta {
    flex-shrink: 0;
    min-width: 200px;
}

/* ------------------------------ BENEFITS ------------------------------ */

.benefits {
    position: relative;
    padding: 6rem 5%;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.benefits__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(153, 102, 221, 0.05) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 0;
}

.benefits__container {
    max-width: 81.25rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefits__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

.benefits__main-title {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.1;
    font-weight: 800;
    margin-top: 1rem;
}

.benefits__bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bento-card {
    background: rgba(255, 255, 255, 0.02);
    border: 0.0625rem solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bento-card:hover {
    transform: translateY(-0.4rem);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(153, 102, 221, 0.3);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2), 0 0 1.5rem rgba(153, 102, 221, 0.05);
}

.bento-card--wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
}

.bento-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(153, 102, 221, 0.15);
    color: var(--primary-color);
    border-radius: 1rem;
    border: 1px solid rgba(153, 102, 221, 0.2);
}

.bento-card__icon--green {
    background: rgba(0, 255, 163, 0.1);
    color: var(--color-success);
    border-color: rgba(0, 255, 163, 0.2);
}

.bento-card__icon img,
.bento-card__icon svg {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.bento-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-white);
}

.bento-card__text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* ------------------------------ FAQ ------------------------------ */

.faq-section {
    position: relative;
    padding: 6rem 5%;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.faq__planet {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}

.faq__planet--left {
    width: 10rem;
    height: 10rem;
    top: 8rem;
    left: -3rem;
    background: radial-gradient(circle at 30% 30%, #be87c9 0%, var(--primary-color) 40%, #2f1b4d 80%, transparent 100%);
    box-shadow: 0 0 40px rgba(153, 102, 221, 0.3), inset -15px -15px 30px rgba(0, 0, 0, 0.5);
    animation: pulse-planet 8s ease-in-out infinite alternate;
}

.faq__planet--right {
    width: 8.5rem;
    height: 8.5rem;
    top: 18rem;
    right: -2rem;
    background: radial-gradient(circle at 30% 30%, #00ffa3 0%, #0d8a5e 50%, #053322 90%);
    box-shadow: 0 0 40px rgba(0, 255, 163, 0.2), inset -10px -10px 25px rgba(0, 0, 0, 0.6);
    animation: pulse-planet 10s ease-in-out infinite alternate-reverse;
}

.faq__planet--right::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14rem;
    height: 3.5rem;
    border: 8px solid rgba(0, 255, 163, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
    box-shadow: 0 0 10px rgba(0, 255, 163, 0.05);
}

@keyframes pulse-planet {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
        filter: blur(1px);
    }

    100% {
        transform: scale(1.08) rotate(5deg);
        opacity: 0.8;
        filter: blur(0px);
    }
}

.faq__container {
    max-width: 50rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.5rem;
}

.faq__title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin: 1rem 0;
}

.faq__subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 35rem;
}

.faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq__item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 1.2rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__question {
    padding: 1.5rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.faq__icon {
    width: 1.4rem;
    height: 1.4rem;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.faq__item[open] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(153, 102, 221, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq__item[open] .faq__icon {
    transform: rotate(180deg);
    color: var(--color-success);
}

.faq__item[open] .faq__question {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq__answer {
    padding: 1.5rem 1.8rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    animation: fadeInAccordion 0.4s ease-out;
}

@keyframes fadeInAccordion {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------------ CONTACT ------------------------------ */

.contact-section {
    padding: 5rem 5%;
    background-color: var(--bg-darker);
}

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.contact__info,
.contact__form-wrapper {
    flex: 1;
}

.contact__info {
    padding-right: 3rem;
}

.contact__title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-white);
}

.contact__title span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.contact__description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact__links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    width: fit-content;
    min-width: 250px;
}

.contact__link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(153, 102, 221, 0.15);
}

.contact__link svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.contact__form-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact__form,
.c-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form__group,
.c-contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form__label,
.c-contact-form__label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form__input,
.c-contact-form__input {
    width: 100%;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.85rem;
    padding: 0.9rem 1rem;
    color: var(--text-white);
    font-size: 0.96rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form__input::placeholder,
.c-contact-form__input::placeholder {
    color: rgba(198, 198, 209, 0.65);
}

.form__input:focus,
.c-contact-form__input:focus {
    border-color: rgba(153, 102, 221, 0.65);
    box-shadow: 0 0 0 3px rgba(153, 102, 221, 0.16);
}

.form__textarea,
.c-contact-form__input--textarea {
    resize: none;
    min-height: 140px;
    scrollbar-width: thin;
    scrollbar-color: var(--glass-border) transparent;
}

.form__submit,
.c-contact-form__submit {
    margin-top: 0.5rem;
    align-self: center;
}

.form__submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* ------------------------------ RESPONSIVE 1122px ------------------------------ */

@media (max-width: 964px) {
    .hero {
        padding-top: 8rem;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__description {
        margin: 0 auto 2.5rem;
    }

    .hero__img-wrapper {
        height: 22rem;
    }

    .brand-item {
        width: 33.333vw;
        padding: 0 0.5rem;
    }

    .brand-item img {
        max-width: 100px;
    }

    .about__header {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .stats {
        justify-content: flex-start;
    }

    .section-divider {
        height: 4.5rem;
        margin: -1rem 0 1rem 0;
    }

    .section-divider__orb {
        width: 6.5rem;
        height: 6.5rem;
    }

    .section-divider__orb--left {
        left: -2.5rem;
    }

    .section-divider__orb--right {
        right: -2.5rem;
    }

    .features__container {
        padding: 0;
    }

    .feature,
    .feature:nth-child(even) {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
        border-radius: 1.5rem;
        align-self: center;
    }

    .feature__icon-wrapper {
        width: 8rem;
        height: 8rem;
    }

    .feature__title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .plan-card--horizontal {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 2rem;
        padding: 2.5rem 2rem;
        margin: 3rem auto 0 auto;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(153, 102, 221, 0.12) 100%);
        border: 1px solid rgba(153, 102, 221, 0.4);
        border-radius: 1.5rem;
        position: relative;
        overflow: hidden;
    }

    .plan-card--horizontal::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -10%;
        width: 12rem;
        height: 12rem;
        background: radial-gradient(circle, rgba(153, 102, 221, 0.25) 0%, transparent 70%);
        filter: blur(2rem);
        z-index: 0;
        pointer-events: none;
    }

    .plan-card-horiz__info,
    .plan-card-horiz__features-wrapper,
    .plan-card-horiz__cta {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .plan-card-horiz__info {
        max-width: 100%;
        border-bottom: none;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .plan-card-horiz__info .badge {
        align-self: flex-start;
    }

    .plan-card__features--two-cols {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .plan-card--horizontal .plan-card__feature {
        justify-content: flex-start;
        gap: 1rem;
    }

    .plan-card--horizontal .plan-card__check {
        margin-left: 0;
        order: -1;
    }

    .plan-card--horizontal .plan-card-horiz__cta {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px dashed rgba(153, 102, 221, 0.3);
    }

    .plan-card--horizontal .plan-card-horiz__cta .plan-card__btn {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 1rem;
        background: var(--text-white);
        color: var(--bg-dark);
        font-weight: 700;
        border-radius: 0.8rem;
        box-shadow: 0 4px 15px rgba(153, 102, 221, 0.4);
        transition: all 0.3s ease;
    }

    .plan-card--horizontal .plan-card-horiz__cta .plan-card__btn:hover {
        background: var(--primary-color);
        color: var(--text-white);
    }

    .plan-card--horizontal .plan-card-horiz__cta .btn__icon--invert {
        filter: invert(1);
    }

    .plan-card--horizontal .plan-card-horiz__cta .plan-card__btn:hover .btn__icon--invert {
        filter: invert(0);
    }

    .benefits {
        padding: 4rem 0;
    }

    .benefits__header {
        padding: 0 5%;
    }

    .benefits__bento {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1rem 5% 2rem 5%;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .benefits__bento::-webkit-scrollbar {
        display: none;
    }

    .bento-card,
    .bento-card--wide {
        flex: 0 0 85%;
        scroll-snap-align: center;
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-section {
        padding: 4rem 5%;
    }

    .faq__planet--left {
        width: 6rem;
        height: 6rem;
        top: 4rem;
        left: -1.5rem;
    }

    .faq__planet--right {
        width: 5.5rem;
        height: 5.5rem;
        top: 10rem;
        right: -1.5rem;
    }

    .faq__planet--right::after {
        width: 9rem;
        height: 2rem;
        border-width: 4px;
    }

    .faq__question {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .faq__answer {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }

    .contact-section {
        padding: 4rem 5%;
    }

    .contact__container {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 2rem;
    }

    .contact__info {
        padding-right: 0;
    }

    .contact__title {
        font-size: 2.2rem;
    }

    .contact__form-wrapper {
        width: 100%;
        padding: 1.5rem;
    }

    .contact__link {
        width: 100%;
        min-width: auto;
    }

}

/* ------------------------------ RESPONSIVE 364px ------------------------------ */

@media (max-width: 346px) {
    .hero {
        padding-top: 7rem;
        min-height: auto;
    }

    .hero__title {
        font-size: clamp(2rem, 10vw, 2.4rem);
    }

    .hero__description {
        font-size: 0.98rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .hero__img-wrapper {
        height: 16rem;
    }

    .brand-item {
        width: 50vw;
    }

    .brand-item img {
        max-width: 88px;
    }

    .about {
        padding: 5rem 4%;
    }

    .about__title {
        font-size: clamp(2rem, 9vw, 2.5rem);
    }

    .about__description {
        font-size: 1rem;
        padding-left: 1rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .projects {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-card {
        padding: 1rem;
    }

    .project-card__img-wrapper {
        height: 14rem;
    }

    .section-divider {
        height: 3rem;
        margin: -0.5rem 0 1rem 0;
    }

    .section-divider__orb {
        width: 4.5rem;
        height: 4.5rem;
        opacity: 0.7;
    }

    .section-divider__orb--left {
        left: -2.1rem;
    }

    .section-divider__orb--right {
        right: -2.1rem;
    }

    .features__container {
        padding: 0 4%;
    }

    .feature,
    .feature:nth-child(even) {
        padding: 1.4rem;
        gap: 1.2rem;
    }

    .feature__icon-wrapper {
        width: 6.5rem;
        height: 6.5rem;
    }

    .feature__cloudflare-wrapper {
        width: 9rem;
    }

    .feature__title {
        font-size: 1.3rem;
    }

    .feature__description {
        font-size: 0.95rem;
    }

    .plans {
        padding: 4rem 4%;
    }

    .plans__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .plan-card {
        padding: 1.4rem;
        border-radius: 1.25rem;
    }

    .plan-card--popular {
        transform: none;
    }

    .plan-card--popular:hover {
        transform: translateY(-0.35rem);
    }

    .plan-card__title {
        font-size: 1.45rem;
    }

    .price-value {
        font-size: 2.6rem;
    }

    .plan-card__description {
        min-height: auto;
    }

    .plan-card__feature {
        align-items: flex-start;
        gap: 0.75rem;
    }

    .plan-card__check {
        margin-left: 0;
        margin-top: 0.15rem;
    }

    .plan-card--horizontal {
        padding: 1.5rem 1.2rem;
        margin-top: 2rem;
        gap: 1.25rem;
    }

    .plan-card-horiz__cta {
        min-width: 100%;
    }

    .benefits {
        padding: 3.25rem 0;
    }

    .benefits__header {
        padding: 0 4%;
    }

    .benefits__bento {
        padding: 0.75rem 4% 1.5rem 4%;
    }

    .bento-card,
    .bento-card--wide {
        flex: 0 0 92%;
        padding: 1.6rem 1.3rem;
        gap: 1rem;
    }

    .bento-card__title {
        font-size: 1.15rem;
    }

    .bento-card__text {
        font-size: 0.95rem;
    }

    .faq-section {
        padding: 3.2rem 4%;
    }

    .faq__title {
        font-size: clamp(1.8rem, 9vw, 2.2rem);
    }

    .faq__question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq__answer {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 3.2rem 4%;
    }

    .contact__title {
        font-size: 1.75rem;
    }

    .contact__description {
        font-size: 1rem;
    }

    .contact__form-wrapper {
        padding: 1.1rem;
    }

    .form__input,
    .c-contact-form__input {
        padding: 0.85rem;
    }

    .contact__link {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }

}

/* ------------------------------ ANIMATIONS SCROLL ------------------------------ */

.scroll-anim {
    opacity: 0;
}

.scroll-anim.animate-up-trigger {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.scroll-anim.animate-left-trigger {
    animation: fadeInLeft 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.scroll-anim.animate-right-trigger {
    animation: fadeInRight 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.scroll-anim.animate-scale-trigger {
    animation: scaleIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; translate: 0 40px; }
    100% { opacity: 1; translate: 0 0; }
}

@keyframes fadeInLeft {
    0% { opacity: 0; translate: -50px 0; }
    100% { opacity: 1; translate: 0 0; }
}

@keyframes fadeInRight {
    0% { opacity: 0; translate: 50px 0; }
    100% { opacity: 1; translate: 0 0; }
}

@keyframes scaleIn {
    0% { opacity: 0; scale: 0.9; }
    100% { opacity: 1; scale: 1; }
}

@media (max-width: 964px) {
    @keyframes fadeInLeft {
        0% { opacity: 0; translate: 0 30px; }
        100% { opacity: 1; translate: 0 0; }
    }
    @keyframes fadeInRight {
        0% { opacity: 0; translate: 0 30px; }
        100% { opacity: 1; translate: 0 0; }
    }
}