body::-webkit-scrollbar {
    display: none;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1b1c1e;
    margin: 0;
    padding: 40;
}

header {
    color: #ecf0f1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:sticky;
    top:0;
    padding-inline: 60px;
    padding-block: 40px;
    height: 50px;
    z-index:10;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    max-width: 280px;
}

.nav-button {
    background-color: #0195c4;
    color: #ecf0f1;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-button:hover {
    background-color: #067a9f;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.nav-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}
nav ul li:hover {
    transform: scale(1.15);
    transition: ease-in-out 0.3s;
}

nav ul li a {
    text-decoration: none;
    text-transform: uppercase;
    font-family: helvetica-w01-roman, helvetica, arial, sans-serif;
    color: #ecf0f1;
    font-weight: 300;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #0195c4;
}

nav ul li a.active {
    border-bottom: 2px solid #0195c4;
    padding-bottom: 5px;
}

nav ul li a.active:hover {
    color: #0195c4;
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: #ecf0f1;
    transition: all 0.3s ease-in-out;
}

.hamburger:before,
.hamburger:after {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background: #ecf0f1;
    transition: all 0.3s ease-in-out;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    bottom: -8px;
}

.mobile-menu-open .hamburger {
    background: transparent;
}

.mobile-menu-open .hamburger:before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-open .hamburger:after {
    bottom: 0;
    transform: rotate(-45deg);
}

.nav-button.desktop-only {
    display: block;
}

.nav-button.mobile-only {
    display: none;
}

@media (max-width: 1000px) {
    .nav-button.desktop-only {
        display: none;
    }

    .nav-button.mobile-only {
        display: block;
        margin-inline: 20px;
        text-align: center;
        margin-block: 40px;
    }
}

@media (max-width: 768px) {
    .header-logo {
        height: 22px;
    }

    .header-brand {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        height: 20px;
    }

    .header-brand {
        gap: 6px;
    }
}

@media (max-width: 1000px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-button {
        display: none;
    }

    header h1 {
        font-size: 20px;
    }

    .header-logo {
        height: 25px;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #1b1c1e;
        padding-top: 70px;
        transition: right 0.3s ease;
        z-index: 900;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    }

    .mobile-menu-open nav {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: end;
        gap: 20px;
        padding-block: 40px;
        padding-inline: 20px;
    }
}

/* Hero Section */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column !important;
        flex-wrap: wrap;
        gap: 20px;
        padding-bottom: 20px;
        text-align: center;
        justify-content: center;
    }
    .hero-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    .btn-primary {
        padding: 12px 25px;
    }
}

#hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: #121315;
    position: relative;
    overflow: hidden;
    color: #ecf0f1;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 500px;
    z-index: 3;
    position: relative;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ecf0f1;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #bbb;
}

.btn-primary {
    padding: 15px 30px;
    font-size: 1.1rem;
    background-color: #0195C4;
    color: #ecf0f1;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0195C4;
    box-shadow: 0 4px 12px rgba(1, 149, 196, 0.3);
}

.hero-image {
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.hero-buttons {
    display: flex;
    flex-direction: column !important;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    text-align: center;
    justify-content: center;
}

.btn-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
    background-color: transparent;
    border: 2px solid #0195C4;
    color: #0195C4;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-grow: inherit;
}

.btn-secondary:hover {
    background-color: #121315;
    box-shadow: 0 4px 12px rgba(1, 149, 196, 0.3);
    color: #ecf0f1;
}

.hero-text .hero-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
}

/* Price section */
@media (max-width: 768px) {
    .pricing-cards-list {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 20px;
    }
}

#pricing {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #1b1c1e, #121315);
    position: relative;
    overflow: hidden;
}

#pricing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 10%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.pricing-header {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.pricing-header h2 {
    font-size: 2.5rem;
    color: #ecf0f1;
    margin-bottom: 15px;
}

.pricing-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 10px;
}

.switch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #bbb;
    font-size: 1rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #555;
    transition: 0.3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background: #ecf0f1;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background: #0195C4;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.pricing-cards-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.pricing-card h3 {
    font-size: 1.6rem;
    color: #ecf0f1;
    margin-bottom: 10px;
}

.pricing-card p {
    font-size: 1rem;
    color: #bbb;
    max-width: 90%;
    margin-bottom: 15px;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0195C4;
}

.pricing-card.special {
    background: rgba(1, 149, 196, 0.15);
    border: 1px solid #0195C4;
}

.limited-badge {
    display: inline-block;
    background: #0195C4;
    color: #ecf0f1;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Features section */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px;
    }
}

#features {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #1b1c1e, #121315);
    position: relative;
    overflow: hidden;
}

#features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 10%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.features-header {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.features-header h2 {
    font-size: 2.5rem;
    color: #ecf0f1;
    margin-bottom: 10px;
}

.features-header p {
    font-size: 1.1rem;
    color: #bbb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0195C4;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #ecf0f1;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1rem;
    color: #bbb;
    max-width: 90%;
}

/* Services Section */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }
}

#services {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #1b1c1e, #121315);
    position: relative;
    overflow: hidden;
}


#services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 10%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.services-header {
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #ecf0f1;
    margin-bottom: 10px;
}

.services-header p {
    font-size: 1rem;
    color: #bbb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.service-card i {
    font-size: 2.5rem;
    color: #0195C4;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #ecf0f1;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #bbb;
}

/* Form Section */
#waiting-list-form {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #1b1c1e, #121315);
    position: relative;
    overflow: hidden;
}

.waiting-list-form-header {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

.waiting-list-form-header h2 {
    font-size: 2.5rem;
    color: #ecf0f1;
    margin-bottom: 15px;
}

.inputs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.inputs-container .email-input {
    flex: 3;
    min-width: 250px;
}

.inputs-container select {
    flex: 1;
}

.inputs-container input,
.inputs-container select {
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: #121315; 
    color: #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-btn{
    padding: 15px 30px;
    font-size: 1.1rem;
    background-color: transparent;
    border: 2px solid #0195C4;
    color: #0195C4;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-grow: inherit;
}

.form-btn:hover {
    background-color: #121315;
    box-shadow: 0 4px 12px rgba(1, 149, 196, 0.3);
    color: #ecf0f1;
}

.button-container {
    display: grid;
}

#form-message {
    color: #ecf0f1;
    text-align: center;
}

#form-waiting-list {
    align-items: center;
    justify-content: center;
    gap: 20px;
}

@media (min-width: 1000px) {
    #form-waiting-list {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 100px;
    }

    .inputs-container {
        display: flex;
        flex: 1;
        gap: 20px;
        max-width: 1000px;
        align-items: center;
        margin-bottom: 0;
    }

    .inputs-container input,
    .inputs-container select {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .inputs-container {
        flex-direction: row;
        justify-content: space-between;
        
    }
    .form-waiting-list {
        display: inline;
    }
}

@media (max-width: 768px) {
    .inputs-container {
        flex-direction: column;
    }
}

/* FOOTER Section */
@media (max-width: 1000px) { 
    .footer-container{
        flex-direction: column;
        align-items:center
    }

    .footer-links{
        flex-direction: column;
        justify-content:space-between;
    }

    .footer-bottom {
        flex-direction: column;
        align-items:center
    }
}

.footer {
    font-family: helvetica-w01-roman, helvetica, arial, sans-serif;
    color: #ecf0f1;
    padding-inline: 60px;
    padding-block: 40px;
}

.footer-container {
    display:flex;
    justify-content:space-between;
    gap:40px
}

.footer-links {
    display:flex;
    justify-content:space-between;
    width:100%;
    gap: 40px;
    padding-inline: 40px;
}

.footer-brand {
    flex: 1;
    text-align: left;
    min-width: 250px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-column {
    min-width: 150px;
}

.footer-column h2 {
    margin-bottom: 20px;
}

.footer-column a {
    display: block; 
    margin-bottom: 5px;
    font-weight: 300
}

.footer-column a {
    text-decoration: none; 
    color: inherit; 
}

.footer-column a:hover {
    color: #0195c4;
}

.footer-bottom {
    display:flex;
    justify-content:space-between;
    font-size: 14px;
    margin-top: 40px;
}

.footer-logo{
    max-width: 200px;
}

.store-buttons img {
    width: 150px; 
    height: auto;
}