/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Programming Background for Landing Page */
.page-programming-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #FFFFFF;
    overflow: hidden;
    pointer-events: none;
}

/* Grid Pattern Background */
.page-programming-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.04) 2px, rgba(0, 0, 0, 0.04) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.04) 2px, rgba(0, 0, 0, 0.04) 4px);
    opacity: 0.6;
    animation: gridMovePage 25s linear infinite;
}

@keyframes gridMovePage {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

/* Subtle Pulse Effect */
.page-programming-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(0, 0, 0, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(0, 0, 0, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.01) 0%, transparent 50%);
    animation: subtlePulsePage 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes subtlePulsePage {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Code Lines Background */
.code-line-bg {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.15), transparent);
    animation: codeFlowPage 20s linear infinite;
    opacity: 0.6;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.code-line-bg:nth-child(1) {
    top: 8%;
    animation-delay: 0s;
}

.code-line-bg:nth-child(2) {
    top: 18%;
    animation-delay: 2.5s;
}

.code-line-bg:nth-child(3) {
    top: 28%;
    animation-delay: 5s;
}

.code-line-bg:nth-child(4) {
    top: 38%;
    animation-delay: 7.5s;
}

.code-line-bg:nth-child(5) {
    top: 48%;
    animation-delay: 10s;
}

.code-line-bg:nth-child(6) {
    top: 58%;
    animation-delay: 12.5s;
}

.code-line-bg:nth-child(7) {
    top: 68%;
    animation-delay: 15s;
}

.code-line-bg:nth-child(8) {
    top: 78%;
    animation-delay: 17.5s;
}

@keyframes codeFlowPage {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Code Tags Background */
.code-tag-bg {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    animation: tagFloatPage 25s linear infinite;
    pointer-events: none;
    font-weight: 600;
}

.code-tag-bg::before {
    content: attr(data-tag);
}

.code-tag-bg:nth-of-type(1) {
    top: 12%;
    animation-delay: 0s;
}

.code-tag-bg:nth-of-type(2) {
    top: 22%;
    animation-delay: 3s;
}

.code-tag-bg:nth-of-type(3) {
    top: 32%;
    animation-delay: 6s;
}

.code-tag-bg:nth-of-type(4) {
    top: 42%;
    animation-delay: 9s;
}

.code-tag-bg:nth-of-type(5) {
    top: 52%;
    animation-delay: 12s;
}

.code-tag-bg:nth-of-type(6) {
    top: 62%;
    animation-delay: 15s;
}

.code-tag-bg:nth-of-type(7) {
    top: 72%;
    animation-delay: 18s;
}

.code-tag-bg:nth-of-type(8) {
    top: 15%;
    animation-delay: 21s;
}

.code-tag-bg:nth-of-type(9) {
    top: 35%;
    animation-delay: 24s;
}

.code-tag-bg:nth-of-type(10) {
    top: 65%;
    animation-delay: 27s;
}

@keyframes tagFloatPage {
    0% {
        left: -10%;
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }
    10% {
        opacity: 0.3;
    }
    50% {
        transform: translateY(-10px) scale(1);
        opacity: 0.4;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        left: 110%;
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }
}

/* Binary Code Background */
.binary-code-bg {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    animation: binaryFallPage 30s linear infinite;
    pointer-events: none;
    font-weight: 500;
    letter-spacing: 2px;
}

.binary-code-bg:nth-of-type(1) {
    left: 8%;
    animation-delay: 0s;
}

.binary-code-bg:nth-of-type(2) {
    left: 25%;
    animation-delay: 5s;
}

.binary-code-bg:nth-of-type(3) {
    left: 45%;
    animation-delay: 10s;
}

.binary-code-bg:nth-of-type(4) {
    left: 65%;
    animation-delay: 15s;
}

.binary-code-bg:nth-of-type(5) {
    left: 85%;
    animation-delay: 20s;
}

.binary-code-bg:nth-of-type(6) {
    left: 15%;
    animation-delay: 25s;
}

.binary-code-bg:nth-of-type(7) {
    left: 55%;
    animation-delay: 28s;
}

@keyframes binaryFallPage {
    0% {
        top: -5%;
        opacity: 0;
        transform: rotate(0deg);
    }
    10% {
        opacity: 0.2;
    }
    50% {
        transform: rotate(3deg);
        opacity: 0.25;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        top: 105%;
        opacity: 0;
        transform: rotate(0deg);
    }
}

/* Cinematic Intro Video */
.cinematic-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.cinematic-intro.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header .container {
    padding: 0px 15px;
    margin: 0;
    max-width: 100%;
    width: 100%;
}

/* Header */
.header {
    background-color: #FFFFFF;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, border-bottom 0.3s ease;
    min-height: auto;
}

/* Header when scrolled - more visible border */
.header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: auto;
    position: relative;
    z-index: 1002;
    padding: 0px 0;
    margin: 0;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    margin: 0;
    margin-left: 100px;
    padding: 0;
    line-height: 0;
    grid-column: 1;
    justify-self: start;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 130px;
    width: 130px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 30px;
    grid-column: 2;
    justify-self: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 22px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.nav-link:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background-color: #000000;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: calc(100% - 40px);
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.whatsapp-button.whatsapp-desktop {
    display: flex;
    grid-column: 3;
    justify-self: end;
    margin-right: 100px;
    flex-shrink: 0;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #000000;
    color: #FFFFFF;
}

.whatsapp-button svg {
    width: 28px;
    height: 28px;
}

.whatsapp-mobile-item {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.whatsapp-mobile {
    display: none;
}

@media (max-width: 768px) {
    .whatsapp-desktop {
        display: none !important;
    }
    
    .whatsapp-button.whatsapp-desktop {
        display: none !important;
    }

    .whatsapp-mobile {
        display: flex;
    }
    
    .nav-wrapper {
        grid-template-columns: auto 1fr;
    }
    
    .whatsapp-button.whatsapp-desktop {
        grid-column: unset;
    }
}

/* Hamburger Menu */
.hamburger {
    cursor: pointer;
    display: none;
    z-index: 1001;
    position: relative;
}

.hamburger input {
    display: none;
}

.hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .line {
    fill: none;
    stroke: black;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition:
        stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .line-top-bottom {
    stroke-dasharray: 12 63;
}

.hamburger input:checked + svg {
    transform: rotate(-45deg);
}

.hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
}

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

/* Hero Section */
.hero {
    background-color: #FFFFFF;
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    overflow: visible;
}

/* Hero Rocket Loader - Flying around hero section */
.hero-rocket-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-rocket-loader .loader {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    animation: squarePath 20s linear infinite;
    transform-origin: center center;
}

/* Square Path Animation - around hero section edges */
@keyframes squarePath {
    0% {
        top: 20px;
        left: 20px;
        transform: rotate(0deg);
    }
    25% {
        top: 20px;
        left: calc(100% - 120px);
        transform: rotate(90deg);
    }
    50% {
        top: calc(100% - 120px);
        left: calc(100% - 120px);
        transform: rotate(180deg);
    }
    75% {
        top: calc(100% - 120px);
        left: 20px;
        transform: rotate(270deg);
    }
    100% {
        top: 20px;
        left: 20px;
        transform: rotate(360deg);
    }
}

/* Rocket Loader Styles */
.hero-rocket-loader .loader {
    animation: squarePath 20s linear infinite;
}

.hero-rocket-loader .loader > span {
    animation: speeder 0.4s linear infinite;
}

.hero-rocket-loader .loader > span {
    height: 5px;
    width: 35px;
    background: #000;
    position: absolute;
    top: -19px;
    left: 60px;
    border-radius: 2px 10px 1px 0;
}

.hero-rocket-loader .base span {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 100px solid #000;
    border-bottom: 6px solid transparent;
}

.hero-rocket-loader .base span:before {
    content: "";
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    right: -110px;
    top: -16px;
}

.hero-rocket-loader .base span:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 0 solid transparent;
    border-right: 55px solid #000;
    border-bottom: 16px solid transparent;
    top: -16px;
    right: -98px;
}

.hero-rocket-loader .face {
    position: absolute;
    height: 12px;
    width: 20px;
    background: #000;
    border-radius: 20px 20px 0 0;
    transform: rotate(-40deg);
    right: -125px;
    top: -15px;
}

.hero-rocket-loader .face:after {
    content: "";
    height: 12px;
    width: 12px;
    background: #000;
    right: 4px;
    top: 7px;
    position: absolute;
    transform: rotate(40deg);
    transform-origin: 50% 50%;
    border-radius: 0 0 0 2px;
}

.hero-rocket-loader .loader > span > span:nth-child(1),
.hero-rocket-loader .loader > span > span:nth-child(2),
.hero-rocket-loader .loader > span > span:nth-child(3),
.hero-rocket-loader .loader > span > span:nth-child(4) {
    width: 30px;
    height: 1px;
    background: #000;
    position: absolute;
    animation: fazer1 0.2s linear infinite;
}

.hero-rocket-loader .loader > span > span:nth-child(2) {
    top: 3px;
    animation: fazer2 0.4s linear infinite;
}

.hero-rocket-loader .loader > span > span:nth-child(3) {
    top: 1px;
    animation: fazer3 0.4s linear infinite;
    animation-delay: -1s;
}

.hero-rocket-loader .loader > span > span:nth-child(4) {
    top: 4px;
    animation: fazer4 1s linear infinite;
    animation-delay: -1s;
}

@keyframes fazer1 {
    0% {
        left: 0;
    }
    100% {
        left: -80px;
        opacity: 0;
    }
}

@keyframes fazer2 {
    0% {
        left: 0;
    }
    100% {
        left: -100px;
        opacity: 0;
    }
}

@keyframes fazer3 {
    0% {
        left: 0;
    }
    100% {
        left: -50px;
        opacity: 0;
    }
}

@keyframes fazer4 {
    0% {
        left: 0;
    }
    100% {
        left: -150px;
        opacity: 0;
    }
}

@keyframes speeder {
    0% {
        transform: translate(2px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -3px) rotate(-1deg);
    }
    20% {
        transform: translate(-2px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 3px) rotate(-1deg);
    }
    60% {
        transform: translate(-1px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-2px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(2px, 1px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.hero-rocket-loader .longfazers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-rocket-loader .longfazers span {
    position: absolute;
    height: 2px;
    width: 20%;
    background: #000;
}

.hero-rocket-loader .longfazers span:nth-child(1) {
    top: 20%;
    animation: lf 0.6s linear infinite;
    animation-delay: -5s;
}

.hero-rocket-loader .longfazers span:nth-child(2) {
    top: 40%;
    animation: lf2 0.8s linear infinite;
    animation-delay: -1s;
}

.hero-rocket-loader .longfazers span:nth-child(3) {
    top: 60%;
    animation: lf3 0.6s linear infinite;
}

.hero-rocket-loader .longfazers span:nth-child(4) {
    top: 80%;
    animation: lf4 0.5s linear infinite;
    animation-delay: -3s;
}

@keyframes lf {
    0% {
        left: 200%;
    }
    100% {
        left: -200%;
        opacity: 0;
    }
}

@keyframes lf2 {
    0% {
        left: 200%;
    }
    100% {
        left: -200%;
        opacity: 0;
    }
}

@keyframes lf3 {
    0% {
        left: 200%;
    }
    100% {
        left: -100%;
        opacity: 0;
    }
}

@keyframes lf4 {
    0% {
        left: 200%;
    }
    100% {
        left: -100%;
        opacity: 0;
    }
}

/* Hero Background Video */
.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
    pointer-events: none;
}

.hero-animation-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: transparent;
    overflow: hidden;
}

/* Coding Animation Background */
.hero-animation-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px);
    opacity: 0.5;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

/* Code Lines Animation */
.code-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
    animation: codeFlow 15s linear infinite;
    opacity: 0.4;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.05);
}

.code-line:nth-child(1) {
    top: 10%;
    animation-delay: 0s;
}

.code-line:nth-child(2) {
    top: 25%;
    animation-delay: 2s;
}

.code-line:nth-child(3) {
    top: 40%;
    animation-delay: 4s;
}

.code-line:nth-child(4) {
    top: 55%;
    animation-delay: 6s;
}

.code-line:nth-child(5) {
    top: 70%;
    animation-delay: 8s;
}

.code-line:nth-child(6) {
    top: 85%;
    animation-delay: 10s;
}

@keyframes codeFlow {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Code Tags Animation */
.code-tag {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    animation: tagFloat 20s linear infinite;
    pointer-events: none;
    font-weight: 600;
}

.code-tag::before {
    content: attr(data-tag);
}

.code-tag:nth-of-type(1) {
    top: 15%;
    animation-delay: 0s;
}

.code-tag:nth-of-type(2) {
    top: 30%;
    animation-delay: 3s;
}

.code-tag:nth-of-type(3) {
    top: 45%;
    animation-delay: 6s;
}

.code-tag:nth-of-type(4) {
    top: 60%;
    animation-delay: 9s;
}

.code-tag:nth-of-type(5) {
    top: 75%;
    animation-delay: 12s;
}

.code-tag:nth-of-type(6) {
    top: 20%;
    animation-delay: 15s;
}

.code-tag:nth-of-type(7) {
    top: 50%;
    animation-delay: 18s;
}

@keyframes tagFloat {
    0% {
        left: -10%;
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }
    10% {
        opacity: 0.2;
    }
    50% {
        transform: translateY(-15px) scale(1);
        opacity: 0.25;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        left: 110%;
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }
}

/* Binary Numbers Animation */
.binary-code {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    animation: binaryFall 25s linear infinite;
    pointer-events: none;
    font-weight: 500;
    letter-spacing: 2px;
}

.binary-code:nth-of-type(1) {
    left: 10%;
    animation-delay: 0s;
}

.binary-code:nth-of-type(2) {
    left: 30%;
    animation-delay: 5s;
}

.binary-code:nth-of-type(3) {
    left: 50%;
    animation-delay: 10s;
}

.binary-code:nth-of-type(4) {
    left: 70%;
    animation-delay: 15s;
}

.binary-code:nth-of-type(5) {
    left: 90%;
    animation-delay: 20s;
}

.binary-code:nth-of-type(6) {
    left: 20%;
    animation-delay: 22s;
}

@keyframes binaryFall {
    0% {
        top: -5%;
        opacity: 0;
        transform: rotate(0deg);
    }
    10% {
        opacity: 0.12;
    }
    50% {
        transform: rotate(5deg);
    }
    90% {
        opacity: 0.12;
    }
    100% {
        top: 105%;
        opacity: 0;
        transform: rotate(0deg);
    }
}

/* Additional Programming Symbols */
.hero-animation-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    animation: subtlePulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes subtlePulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Falling Code Tags in Hero */
.code-tag-falling {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    color: rgba(0, 255, 0, 0.4);
    white-space: nowrap;
    animation: codeFall 8s linear infinite;
    pointer-events: none;
    font-weight: 700;
    z-index: 1;
    text-shadow: 0 0 3px rgba(0, 255, 0, 0.3);
}

.code-tag-falling::before {
    content: attr(data-tag);
}

.code-tag-falling:nth-of-type(1) {
    left: 5%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.code-tag-falling:nth-of-type(2) {
    left: 12%;
    animation-delay: 0.5s;
    animation-duration: 9s;
}

.code-tag-falling:nth-of-type(3) {
    left: 20%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.code-tag-falling:nth-of-type(4) {
    left: 28%;
    animation-delay: 1.5s;
    animation-duration: 8.5s;
}

.code-tag-falling:nth-of-type(5) {
    left: 35%;
    animation-delay: 2s;
    animation-duration: 9.5s;
}

.code-tag-falling:nth-of-type(6) {
    left: 42%;
    animation-delay: 0.3s;
    animation-duration: 7.5s;
}

.code-tag-falling:nth-of-type(7) {
    left: 50%;
    animation-delay: 1.2s;
    animation-duration: 8s;
}

.code-tag-falling:nth-of-type(8) {
    left: 58%;
    animation-delay: 0.8s;
    animation-duration: 9s;
}

.code-tag-falling:nth-of-type(9) {
    left: 65%;
    animation-delay: 1.8s;
    animation-duration: 7.8s;
}

.code-tag-falling:nth-of-type(10) {
    left: 72%;
    animation-delay: 0.6s;
    animation-duration: 8.2s;
}

.code-tag-falling:nth-of-type(11) {
    left: 80%;
    animation-delay: 1.4s;
    animation-duration: 9.2s;
}

.code-tag-falling:nth-of-type(12) {
    left: 88%;
    animation-delay: 0.9s;
    animation-duration: 7.2s;
}

.code-tag-falling:nth-of-type(13) {
    left: 15%;
    animation-delay: 2.2s;
    animation-duration: 8.8s;
}

.code-tag-falling:nth-of-type(14) {
    left: 25%;
    animation-delay: 0.4s;
    animation-duration: 9.8s;
}

.code-tag-falling:nth-of-type(15) {
    left: 45%;
    animation-delay: 1.6s;
    animation-duration: 7.3s;
}

.code-tag-falling:nth-of-type(16) {
    left: 55%;
    animation-delay: 0.7s;
    animation-duration: 8.3s;
}

.code-tag-falling:nth-of-type(17) {
    left: 75%;
    animation-delay: 1.9s;
    animation-duration: 9.3s;
}

.code-tag-falling:nth-of-type(18) {
    left: 85%;
    animation-delay: 0.2s;
    animation-duration: 7.7s;
}

.code-tag-falling:nth-of-type(19) {
    left: 8%;
    animation-delay: 2.4s;
    animation-duration: 8.6s;
}

.code-tag-falling:nth-of-type(20) {
    left: 38%;
    animation-delay: 1.1s;
    animation-duration: 9.6s;
}

.code-tag-falling:nth-of-type(21) {
    left: 62%;
    animation-delay: 0.5s;
    animation-duration: 7.4s;
}

.code-tag-falling:nth-of-type(22) {
    left: 92%;
    animation-delay: 1.7s;
    animation-duration: 8.4s;
}

.code-tag-falling:nth-of-type(23) {
    left: 18%;
    animation-delay: 2.1s;
    animation-duration: 9.4s;
}

.code-tag-falling:nth-of-type(24) {
    left: 48%;
    animation-delay: 0.8s;
    animation-duration: 7.6s;
}

.code-tag-falling:nth-of-type(25) {
    left: 78%;
    animation-delay: 1.3s;
    animation-duration: 8.7s;
}

@keyframes codeFall {
    0% {
        top: -5%;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateX(10px) rotate(5deg);
        opacity: 0.7;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        top: 105%;
        opacity: 0;
        transform: translateX(-10px) rotate(-5deg);
    }
}

/* Falling Binary Code in Hero */
.binary-code-falling {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: rgba(0, 255, 0, 0.35);
    white-space: nowrap;
    animation: binaryFall 10s linear infinite;
    pointer-events: none;
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 1;
    text-shadow: 0 0 3px rgba(0, 255, 0, 0.3);
}

.binary-code-falling:nth-of-type(1) {
    left: 3%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.binary-code-falling:nth-of-type(2) {
    left: 10%;
    animation-delay: 0.4s;
    animation-duration: 11s;
}

.binary-code-falling:nth-of-type(3) {
    left: 17%;
    animation-delay: 0.8s;
    animation-duration: 9s;
}

.binary-code-falling:nth-of-type(4) {
    left: 24%;
    animation-delay: 1.2s;
    animation-duration: 10.5s;
}

.binary-code-falling:nth-of-type(5) {
    left: 31%;
    animation-delay: 1.6s;
    animation-duration: 11.5s;
}

.binary-code-falling:nth-of-type(6) {
    left: 38%;
    animation-delay: 0.2s;
    animation-duration: 9.5s;
}

.binary-code-falling:nth-of-type(7) {
    left: 45%;
    animation-delay: 0.6s;
    animation-duration: 10.2s;
}

.binary-code-falling:nth-of-type(8) {
    left: 52%;
    animation-delay: 1s;
    animation-duration: 11.2s;
}

.binary-code-falling:nth-of-type(9) {
    left: 59%;
    animation-delay: 1.4s;
    animation-duration: 9.8s;
}

.binary-code-falling:nth-of-type(10) {
    left: 66%;
    animation-delay: 1.8s;
    animation-duration: 10.8s;
}

.binary-code-falling:nth-of-type(11) {
    left: 73%;
    animation-delay: 0.3s;
    animation-duration: 11.8s;
}

.binary-code-falling:nth-of-type(12) {
    left: 80%;
    animation-delay: 0.7s;
    animation-duration: 9.3s;
}

.binary-code-falling:nth-of-type(13) {
    left: 87%;
    animation-delay: 1.1s;
    animation-duration: 10.3s;
}

.binary-code-falling:nth-of-type(14) {
    left: 7%;
    animation-delay: 1.5s;
    animation-duration: 11.3s;
}

.binary-code-falling:nth-of-type(15) {
    left: 14%;
    animation-delay: 1.9s;
    animation-duration: 9.7s;
}

.binary-code-falling:nth-of-type(16) {
    left: 21%;
    animation-delay: 0.5s;
    animation-duration: 10.7s;
}

.binary-code-falling:nth-of-type(17) {
    left: 28%;
    animation-delay: 0.9s;
    animation-duration: 11.7s;
}

.binary-code-falling:nth-of-type(18) {
    left: 35%;
    animation-delay: 1.3s;
    animation-duration: 9.2s;
}

.binary-code-falling:nth-of-type(19) {
    left: 42%;
    animation-delay: 1.7s;
    animation-duration: 10.4s;
}

.binary-code-falling:nth-of-type(20) {
    left: 49%;
    animation-delay: 0.1s;
    animation-duration: 11.4s;
}

.binary-code-falling:nth-of-type(21) {
    left: 56%;
    animation-delay: 0.5s;
    animation-duration: 9.6s;
}

.binary-code-falling:nth-of-type(22) {
    left: 63%;
    animation-delay: 0.9s;
    animation-duration: 10.6s;
}

.binary-code-falling:nth-of-type(23) {
    left: 70%;
    animation-delay: 1.3s;
    animation-duration: 11.6s;
}

.binary-code-falling:nth-of-type(24) {
    left: 77%;
    animation-delay: 1.7s;
    animation-duration: 9.4s;
}

.binary-code-falling:nth-of-type(25) {
    left: 84%;
    animation-delay: 0.2s;
    animation-duration: 10.4s;
}

.binary-code-falling:nth-of-type(26) {
    left: 91%;
    animation-delay: 0.6s;
    animation-duration: 11.4s;
}

.binary-code-falling:nth-of-type(27) {
    left: 6%;
    animation-delay: 1s;
    animation-duration: 9.8s;
}

.binary-code-falling:nth-of-type(28) {
    left: 13%;
    animation-delay: 1.4s;
    animation-duration: 10.8s;
}

.binary-code-falling:nth-of-type(29) {
    left: 20%;
    animation-delay: 1.8s;
    animation-duration: 11.8s;
}

@keyframes binaryFall {
    0% {
        top: -5%;
        opacity: 0;
        transform: rotate(0deg);
    }
    10% {
        opacity: 0.5;
    }
    50% {
        transform: rotate(3deg);
        opacity: 0.6;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        top: 105%;
        opacity: 0;
        transform: rotate(0deg);
    }
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    overflow: visible;
}

.hero-icon {
    flex-shrink: 0;
    opacity: 0.8;
    overflow: visible;
    padding: 10px;
}

.hero-icon svg {
    width: 200px;
    height: 200px;
    overflow: visible;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    flex: 1;
    position: relative;
    z-index: 3;
}

.hero-content .button {
    margin-top: 20px;
}

/* Hero Icon Animations */
@keyframes bounce {
    0%,
    100% {
        translate: 0px 36px;
    }
    50% {
        translate: 0px 46px;
    }
}

@keyframes bounce2 {
    0%,
    100% {
        translate: 0px 46px;
    }
    50% {
        translate: 0px 56px;
    }
}

@keyframes umbral {
    0% {
        stop-color: #0000002e;
    }
    50% {
        stop-color: rgba(0, 0, 0, 0.519);
    }
    100% {
        stop-color: #0000002e;
    }
}

@keyframes partciles {
    0%,
    100% {
        translate: 0px 16px;
    }
    50% {
        translate: 0px 6px;
    }
}

#bounce,
#bounce-right {
    animation: bounce 4s ease-in-out infinite;
    translate: 0px 36px;
}

#bounce2,
#bounce2-right {
    animation: bounce2 4s ease-in-out infinite;
    translate: 0px 46px;
    animation-delay: 0.5s;
}

#animatedStop,
#animatedStop-right,
#animatedStop2,
#animatedStop2-right {
    animation: umbral 4s infinite;
}

#particles,
#particles-right {
    animation: partciles 4s ease-in-out infinite;
}

#particles2,
#particles2-right {
    animation: partciles 4s ease-in-out infinite;
    animation-delay: 0.3s;
}

#particles3,
#particles3-right {
    animation: partciles 4s ease-in-out infinite;
    animation-delay: 0.6s;
}

.hero-headline {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #000000;
    opacity: 0.8;
}

/* Pearl Button Style */
.button {
    --white: #ffe7ff;
    --bg: #080808;
    --radius: 100px;
    outline: none;
    cursor: pointer;
    border: 0;
    position: relative;
    border-radius: var(--radius);
    background-color: var(--bg);
    transition: all 0.2s ease;
    box-shadow:
        inset 0 0.3rem 0.9rem rgba(255, 255, 255, 0.3),
        inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),
        inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.5),
        0 3rem 3rem rgba(0, 0, 0, 0.3),
        0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
    text-decoration: none;
    display: inline-block;
}

.button .wrap {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 35px;
    border-radius: inherit;
    position: relative;
    overflow: hidden;
}

.button .wrap p span:nth-child(2) {
    display: none;
}

.button:hover .wrap p span:nth-child(1) {
    display: none;
}

.button:hover .wrap p span:nth-child(2) {
    display: inline-block;
}

.button .wrap p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    transition: all 0.2s ease;
    transform: translateY(2%);
    mask-image: linear-gradient(to bottom, white 40%, transparent);
}

.button .wrap::before,
.button .wrap::after {
    content: "";
    position: absolute;
    transition: all 0.3s ease;
}

.button .wrap::before {
    left: -15%;
    right: -15%;
    bottom: 25%;
    top: -100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
}

.button .wrap::after {
    left: 6%;
    right: 6%;
    top: 12%;
    bottom: 40%;
    border-radius: 22px 22px 0 0;
    box-shadow: inset 0 10px 8px -10px rgba(255, 255, 255, 0.8);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(0, 0, 0, 0) 50%,
        rgba(0, 0, 0, 0) 100%
    );
}

.button:hover {
    box-shadow:
        inset 0 0.3rem 0.5rem rgba(255, 255, 255, 0.4),
        inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.7),
        inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.7),
        0 3rem 3rem rgba(0, 0, 0, 0.3),
        0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}

.button:hover .wrap::before {
    transform: translateY(-5%);
}

.button:hover .wrap::after {
    opacity: 0.4;
    transform: translateY(5%);
}

.button:hover .wrap p {
    transform: translateY(-4%);
}

.button:active {
    transform: translateY(4px);
    box-shadow:
        inset 0 0.3rem 0.5rem rgba(255, 255, 255, 0.5),
        inset 0 -0.1rem 0.3rem rgba(0, 0, 0, 0.8),
        inset 0 -0.4rem 0.9rem rgba(255, 255, 255, 0.4),
        0 3rem 3rem rgba(0, 0, 0, 0.3),
        0 1rem 1rem -0.6rem rgba(0, 0, 0, 0.8);
}

/* AI Section */
.ai-section {
    background-color: #F4F4F4;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* About Us Section */
.about-section {
    background-color: #FFFFFF;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
    text-align: justify;
}

.about-description:last-child {
    margin-bottom: 0;
}

.ai-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

/* 3D Cube Loader */
.cube-loader {
    perspective: 600px;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.cube-loader .cube {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate 4s linear infinite;
}

.cube-loader .face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000000, #F4F4F4);
    opacity: 0.9;
    border: 1px solid #FFFFFF;
}

.cube-loader .face:nth-child(1) {
    transform: rotateX(90deg) translateZ(40px);
}

.cube-loader .face:nth-child(2) {
    transform: rotateX(-90deg) translateZ(40px);
}

.cube-loader .face:nth-child(3) {
    transform: translateZ(40px);
}

.cube-loader .face:nth-child(4) {
    transform: rotateY(90deg) translateZ(40px);
}

.cube-loader .face:nth-child(5) {
    transform: rotateY(-90deg) translateZ(40px);
}

.cube-loader .face:nth-child(6) {
    transform: rotateY(180deg) translateZ(40px);
}

@keyframes rotate {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #000000;
    flex-shrink: 0;
}

.section-description {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #000000;
    opacity: 0.8;
}

.ai-container {
    background-color: #FFFFFF;
    padding: 50px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* 3D Button Style for Quiz Button */
.quiz-button {
    --color1: #000000;
    --color2: #1a1a1a;
    perspective: 1000px;
    padding: 1.3em 2.8em;
    background: linear-gradient(var(--color1), var(--color2));
    border: none;
    outline: none;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 10px 10px #000;
    cursor: pointer;
    transform: rotateX(70deg) rotateZ(30deg);
    transform-style: preserve-3d;
    transition: transform 0.5s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    position: relative;
}

.quiz-button::before {
    content: "";
    width: 100%;
    height: 15px;
    background-color: var(--color2);
    position: absolute;
    bottom: 0;
    right: 0;
    transform: rotateX(90deg);
    transform-origin: bottom;
}

.quiz-button::after {
    content: "";
    width: 15px;
    height: 100%;
    background-color: var(--color1);
    position: absolute;
    top: 0;
    right: 0;
    transform: rotateY(-90deg);
    transform-origin: right;
}

.quiz-button:hover {
    transform: rotateX(30deg) rotateZ(0);
}

/* Quiz Modal */
.quiz-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quiz-modal.active {
    opacity: 1;
    visibility: visible;
}

.quiz-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.quiz-modal-content {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.quiz-close-btn:hover {
    background-color: #F4F4F4;
}

.quiz-close-btn svg {
    stroke: #000000;
}

.quiz-container {
    padding: 40px;
}

.quiz-progress {
    width: 100%;
    height: 4px;
    background-color: #F4F4F4;
    border-radius: 2px;
    margin-bottom: 30px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background-color: #000000;
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

.quiz-step {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.quiz-question {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.4;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-option {
    width: 100%;
    padding: 20px;
    background-color: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    box-shadow: 4px 4px 0 #000000;
}

.quiz-option:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #000000;
    background-color: #F4F4F4;
}

.quiz-option.active {
    background-color: #000000;
    color: #FFFFFF;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #000000;
}

.quiz-option-text {
    display: block;
}

.quiz-result-content {
    text-align: center;
    padding: 20px 0;
}

.quiz-result-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
}

.quiz-result-plan {
    background-color: #F4F4F4;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #000000;
    margin-bottom: 25px;
}

.quiz-result-plan h4 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.quiz-result-price {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.quiz-result-description {
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.quiz-result-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0 #000000;
}

.quiz-btn-primary {
    background-color: #000000;
    color: #FFFFFF;
}

.quiz-btn-primary:hover {
    background-color: #FFFFFF;
    color: #000000;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #000000;
}

.quiz-btn-secondary {
    background-color: #FFFFFF;
    color: #000000;
}

.quiz-btn-secondary:hover {
    background-color: #F4F4F4;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 #000000;
}

.quiz-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #000000;
}

/* Pricing Section */
.pricing-section {
    background-color: #FFFFFF;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: #FFFFFF;
    padding: 30px;
    border: 6px solid #000000;
    box-shadow: 12px 12px 0 #000000;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 17px 17px 0 #000000;
}

.ecommerce-card {
    grid-column: 1 / -1;
    padding: 40px;
    border: 6px solid #000000;
    box-shadow: 12px 12px 0 #000000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ecommerce-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 17px 17px 0 #000000;
}

.ecommerce-card-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.ecommerce-card-left {
    flex: 0 0 300px;
}

.ecommerce-card-right {
    flex: 1;
}

.ecommerce-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
}

.plan-name {
    font-size: 32px;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
}

.plan-name::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 3px;
    background-color: #000000;
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.pricing-card:hover .plan-name::after,
.ecommerce-card:hover .plan-name::after {
    transform: translateX(0);
}

.plan-price {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #000000;
}

.plan-description {
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 25px;
    font-weight: 500;
}

.plan-features {
    list-style: none;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    color: #000000;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.plan-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: 900;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li strong {
    color: #000000;
    font-weight: 900;
    text-transform: uppercase;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 60px 0 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo-column {
    max-width: 300px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 14px;
    color: #FFFFFF;
    opacity: 0.8;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.footer-column-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li {
    display: flex;
    align-items: center;
}

.footer-link {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.footer-link:hover {
    opacity: 1;
    color: #FFFFFF;
    transform: translateX(5px);
}

.footer-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    flex-shrink: 0;
    color: #FFFFFF;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #FFFFFF;
}

.footer-social-link:hover {
    background-color: #000000;
    color: #FFFFFF;
    border-color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    margin-top: 30px;
}

.footer-divider {
    height: 1px;
    background-color: #FFFFFF;
    opacity: 0.2;
    margin-bottom: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #FFFFFF;
    opacity: 0.6;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
}

.footer-developer-link {
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.footer-developer-link:hover {
    opacity: 1;
    color: #FFFFFF;
}

/* Cookies Notice */
.cookies-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-top: 2px solid #000000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookies-notice.show {
    transform: translateY(0);
}

.cookies-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookies-notice-text {
    flex: 1;
    min-width: 300px;
}

.cookies-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.cookies-description {
    font-size: 14px;
    color: #000000;
    opacity: 0.8;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.cookies-learn-more {
    color: #000000;
    text-decoration: underline;
    font-weight: 600;
}

.cookies-notice-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookies-btn {
    padding: 12px 24px;
    border: 2px solid #000000;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookies-accept {
    background-color: #000000;
    color: #FFFFFF;
}

.cookies-accept:hover {
    background-color: #FFFFFF;
    color: #000000;
    transform: translateY(-2px);
}

.cookies-reject {
    background-color: #FFFFFF;
    color: #000000;
}

.cookies-reject:hover {
    background-color: #F4F4F4;
    transform: translateY(-2px);
}

.cookies-learn {
    background-color: #FFFFFF;
    color: #000000;
}

.cookies-learn:hover {
    background-color: #F4F4F4;
    transform: translateY(-2px);
}

/* Cookies Policy Page */
.cookies-policy-section {
    background-color: #FFFFFF;
    padding: 100px 0;
    min-height: 70vh;
    position: relative;
    z-index: 1;
}

.cookies-policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.cookies-policy-header {
    margin-bottom: 50px;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.back-link:hover {
    opacity: 0.7;
    transform: translateX(-5px);
}

.back-link svg {
    width: 20px;
    height: 20px;
}

.cookies-policy-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.cookies-policy-date {
    font-size: 16px;
    color: #000000;
    opacity: 0.6;
    font-family: 'Montserrat', sans-serif;
}

.cookies-policy-body {
    background-color: #F4F4F4;
    padding: 50px 40px;
    border-radius: 10px;
    border: 2px solid #000000;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.policy-text {
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.9;
}

.policy-text:last-child {
    margin-bottom: 0;
}

.cookie-type {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #000000;
    margin-bottom: 20px;
}

.cookie-type:last-child {
    margin-bottom: 0;
}

.cookie-type-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.policy-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #000000;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}

.policy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 20px;
    color: #000000;
}

.policy-link {
    color: #000000;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.policy-link:hover {
    opacity: 0.7;
}

/* Contact Us Section */
.contact-section {
    background-color: #F4F4F4;
    padding: 100px 0;
}

/* Contact Page Styles */
.contact-page-section {
    background-color: #FFFFFF;
    padding: 120px 0;
    min-height: 70vh;
}

.contact-page-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-page-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.contact-page-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    opacity: 0.8;
    margin-bottom: 60px;
    font-family: 'Montserrat', sans-serif;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.contact-info-card {
    background-color: #F4F4F4;
    padding: 40px 30px;
    border-radius: 10px;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    border-radius: 50%;
    color: #FFFFFF;
}

.contact-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.contact-card-text {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.contact-link {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.contact-link:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    transform: translateY(-2px);
}

.social-media-section {
    margin-top: 60px;
}

.social-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.social-media-card {
    background-color: #F4F4F4;
    padding: 30px 20px;
    border-radius: 10px;
    border: 2px solid #000000;
    text-decoration: none;
    color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.social-media-card:hover {
    background-color: #000000;
    color: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-media-card svg {
    transition: transform 0.3s ease;
}

.social-media-card:hover svg {
    transform: scale(1.1);
}

/* Email Form Section */
.email-form-section {
    margin: 80px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.contact-email-form {
    background-color: #F4F4F4;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #000000;
    box-shadow: 4px 4px #000000;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #000000;
    border-radius: 5px;
    background-color: #FFFFFF;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #666;
    opacity: 0.8;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    margin-bottom: 20px;
}

.form-submit-btn {
    width: 100%;
    padding: 15px 40px;
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 4px 4px #000000;
}

.form-submit-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 6px 6px #000000;
}

.form-submit-btn:active {
    transform: translate(3px, 3px);
    box-shadow: 0px 0px #000000;
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-submit-btn:disabled:hover {
    background-color: #000000;
    color: #FFFFFF;
    transform: none;
    box-shadow: 4px 4px #000000;
}

.form-message {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wrapper {
    --input-focus: #000000;
    --font-color: #000000;
    --font-color-sub: #666;
    --bg-color: #fff;
    --bg-color-alt: #666;
    --main-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* switch card */
.switch {
    transform: translateY(-180px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 50px;
    height: 20px;
    z-index: 10;
}

.card-side::before {
    position: absolute;
    content: 'Send Email';
    left: -100px;
    top: -5px;
    width: 100px;
    text-decoration: underline;
    color: var(--font-color);
    font-weight: 600;
    font-size: 16px;
}

.card-side::after {
    position: absolute;
    content: 'Our Social Media';
    left: 70px;
    top: -5px;
    width: 130px;
    text-decoration: none;
    color: var(--font-color);
    font-weight: 600;
    font-size: 16px;
}

.toggle {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    box-sizing: border-box;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    box-shadow: 4px 4px var(--main-color);
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-color);
    transition: 0.3s;
}

.slider:before {
    box-sizing: border-box;
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    left: -2px;
    bottom: 2px;
    background-color: var(--bg-color);
    box-shadow: 0 3px 0 var(--main-color);
    transition: 0.3s;
}

.toggle:checked + .slider {
    background-color: var(--input-focus);
}

.toggle:checked + .slider:before {
    transform: translateX(30px);
}

.toggle:checked ~ .card-side:before {
    text-decoration: none;
}

.toggle:checked ~ .card-side:after {
    text-decoration: underline;
}

/* card */
.flip-card__inner {
    width: 400px;
    min-height: 550px;
    position: relative;
    background-color: transparent;
    perspective: 1000px;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.toggle:checked ~ .flip-card__inner {
    transform: rotateY(180deg);
}

.toggle:checked ~ .flip-card__front {
    box-shadow: none;
}

.flip-card__front, .flip-card__back {
    padding: 30px 20px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #FFFFFF;
    gap: 20px;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    box-shadow: 4px 4px var(--main-color);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    box-sizing: border-box;
}

.flip-card__back {
    transform: rotateY(180deg);
}

.flip-card__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.title {
    margin: 0 0 20px 0;
    font-size: 25px;
    font-weight: 900;
    text-align: center;
    color: var(--main-color);
    font-family: 'Montserrat', sans-serif;
}

.flip-card__input {
    width: 250px;
    height: 40px;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    background-color: var(--bg-color);
    box-shadow: 4px 4px var(--main-color);
    font-size: 15px;
    font-weight: 600;
    color: var(--font-color);
    padding: 5px 10px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.flip-card__textarea {
    width: 250px;
    height: 100px;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    background-color: var(--bg-color);
    box-shadow: 4px 4px var(--main-color);
    font-size: 15px;
    font-weight: 600;
    color: var(--font-color);
    padding: 5px 10px;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    resize: vertical;
}

.flip-card__input::placeholder,
.flip-card__textarea::placeholder {
    color: var(--font-color-sub);
    opacity: 0.8;
}

.flip-card__input:focus,
.flip-card__textarea:focus {
    border: 2px solid var(--input-focus);
}

.flip-card__btn:active {
    box-shadow: 0px 0px var(--main-color);
    transform: translate(3px, 3px);
}

.flip-card__btn {
    margin: 20px 0 20px 0;
    width: 120px;
    height: 40px;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    background-color: var(--bg-color);
    box-shadow: 4px 4px var(--main-color);
    font-size: 17px;
    font-weight: 600;
    color: var(--font-color);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

/* Social Media Buttons */
.social-media {
    gap: 15px;
}

.social-btn {
    width: 250px;
    height: 40px;
    border-radius: 5px;
    border: 2px solid var(--main-color);
    background-color: var(--bg-color);
    box-shadow: 4px 4px var(--main-color);
    font-size: 15px;
    font-weight: 600;
    color: var(--font-color);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.social-btn:active {
    box-shadow: 0px 0px var(--main-color);
    transform: translate(3px, 3px);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .hero-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .hero-icon {
        display: none;
    }

    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background-color: #FFFFFF;
        width: 100%;
        height: 100vh;
        padding: 100px 20px 20px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
        gap: 30px;
        z-index: 1000;
        transform: translateY(-100%);
        opacity: 0;
        overflow-y: auto;
        justify-content: flex-start;
        align-items: center;
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav .whatsapp-button.whatsapp-mobile {
        order: -1;
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    .nav .whatsapp-button.whatsapp-desktop {
        display: none !important;
    }

    .hamburger.mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }
    
    .header {
        position: sticky;
        top: 0;
    }
    
    .nav-wrapper {
        position: relative;
        grid-template-columns: auto 1fr auto;
        justify-content: space-between;
    }
    
    .logo {
        grid-column: 1;
        justify-self: start;
        margin-left: 15px;
    }
    
    .nav {
        display: flex;
        grid-column: 3;
        justify-self: end;
        align-items: center;
    }
    
    .nav-list {
        display: flex;
    }
    
    .nav .whatsapp-button.whatsapp-desktop {
        display: none !important;
    }
    
    .hamburger.mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
        margin-left: auto;
    }
    
    /* Ensure hamburger stays on top when menu is open */
    .hamburger.mobile-menu-toggle input:checked ~ svg,
    .hamburger.mobile-menu-toggle input:checked {
        z-index: 1002;
    }

    .whatsapp-button {
        width: 45px;
        height: 45px;
        margin-left: 15px;
        border-width: 2px;
    }

    .whatsapp-button svg {
        width: 24px;
        height: 24px;
    }

    .nav-link {
        font-size: 24px;
        padding: 15px 25px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-list li {
        width: 100%;
    }

    .logo-img {
        height: 100px;
        width: 100px;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-description {
        font-size: 16px;
        text-align: left;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .section-title-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .cube-loader {
        display: none;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

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

    .ecommerce-card {
        grid-column: 1;
    }

    .ecommerce-card-content {
        flex-direction: column;
        gap: 30px;
    }

    .ecommerce-card-left {
        flex: 1;
    }

    .ecommerce-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ecommerce-card {
        grid-column: 1 / -1;
    }

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

    .hero {
        padding: 60px 0;
        min-height: 60vh;
    }

    .ai-section {
        padding: 60px 0;
    }

    .pricing-section {
        padding: 60px 0;
    }

    .ai-container {
        padding: 40px 20px;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ecommerce-card {
        grid-column: 1 / -1;
    }

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }

    .hero-subheadline {
        font-size: 16px;
    }

    .cta-button,
    .quiz-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .quiz-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .quiz-container {
        padding: 30px 20px;
    }

    .quiz-question {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .quiz-option {
        padding: 15px;
        font-size: 14px;
    }

    .quiz-result-plan h4 {
        font-size: 24px;
    }

    .quiz-result-price {
        font-size: 22px;
    }

    .quiz-result-description {
        font-size: 16px;
    }

    .quiz-btn {
        padding: 12px 25px;
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-page-section {
        padding: 80px 0;
    }

    .contact-page-title {
        font-size: 36px;
    }

    .contact-page-subtitle {
        font-size: 18px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .social-media-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .social-section-title {
        font-size: 28px;
    }

    .email-form-section {
        margin: 60px 0;
        padding: 0 20px;
    }

    .footer {
        padding: 40px 0 20px;
    }

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

    .footer-logo-column {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-list {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .cookies-notice-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookies-notice-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookies-btn {
        width: 100%;
        text-align: center;
    }

    .cookies-policy-section {
        padding: 60px 0;
    }

    .cookies-policy-title {
        font-size: 36px;
    }

    .cookies-policy-body {
        padding: 30px 20px;
    }

    .policy-section-title {
        font-size: 24px;
    }

    .form-section-title {
        font-size: 28px;
    }

    .contact-email-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .switch {
        transform: translateY(-150px);
    }

    .flip-card__inner {
        width: 90%;
        max-width: 350px;
        height: auto;
        min-height: 450px;
    }

    .flip-card__input,
    .flip-card__textarea,
    .social-btn {
        width: 90%;
        max-width: 250px;
    }

    .card-side::before {
        left: -90px;
        width: 90px;
        font-size: 14px;
    }

    .card-side::after {
        left: 60px;
        width: 120px;
        font-size: 14px;
    }

    .plan-name {
        font-size: 20px;
    }

    .plan-price {
        font-size: 32px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo-img {
        height: 80px;
        width: 80px;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.fade-in {
    opacity: 1;
}

.scroll-animate.slide-up {
    transform: translateY(50px);
}

.scroll-animate.slide-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.slide-down {
    transform: translateY(-50px);
}

.scroll-animate.slide-down.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.slide-left {
    transform: translateX(50px);
}

.scroll-animate.slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate.slide-right {
    transform: translateX(-50px);
}

.scroll-animate.slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate.scale-in {
    transform: scale(0.8);
}

.scroll-animate.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.scroll-animate.rotate-in {
    transform: rotate(-10deg) scale(0.9);
}

.scroll-animate.rotate-in.animate {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Delay classes for staggered animations */
.scroll-animate.delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate.delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate.delay-3 {
    transition-delay: 0.3s;
}

.scroll-animate.delay-4 {
    transition-delay: 0.4s;
}

.scroll-animate.delay-5 {
    transition-delay: 0.5s;
}
.plus-big {
    font-size: 1.5em; /* poți ajusta dimensiunea */
    color: #000000;  /* opțional, dacă vrei să iasă în evidență */
    font-weight: bold; /* opțional */
    vertical-align: middle; /* aliniază frumos cu textul */
}

