:root {
    --space-grey: #2C3539;
    --dark-grey: #1a1a1a;
    --light-grey: #f0f0f0;
    --white: #ffffff;
    --black: #000000;
    --accent-color: #007aff;
    /* A neutral blue as an accent for links if needed */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background:
        radial-gradient(ellipse at top, #0f0f23 0%, transparent 70%),
        radial-gradient(ellipse at bottom, #1a1a2e 0%, transparent 70%),
        var(--black);
    color: var(--white);
    line-height: 1.6;
    font-weight: 300;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
}

section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
    background: #1a1a1a;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--white) 0%, #f0f0f0 100%);
    color: var(--black);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}



.btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.4);
}

/* Glassmorphism & Animations */
.glass-card {
    background: rgba(44, 53, 57, 0.3);
    /* More transparent background */
    -webkit-backdrop-filter: blur(20px);
    /* Stronger frosted glass effect for Safari */
    backdrop-filter: blur(20px);
    /* Stronger frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



.language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.language-switcher button {
    background: transparent;
    border: none;
    color: white;
    padding: 8px 12px;
    margin: 2px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-switcher button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-switcher button.active {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.lightbox-content img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2010;
    transition: all 0.3s ease;
}

.close-lightbox:hover {
    color: #03e9f4;
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.lightbox-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-image:hover {
    transform: scale(1.03);
}

/* Device Pricing Styles */
.additional-pricing {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}

.device-pricing {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-evenly;
    max-width: 800px;
    width: 100%;
    padding: 1rem 2rem;
    margin: 0 auto;
    border-radius: 10px;
    flex-wrap: nowrap;
}

.device-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem;
    text-align: center;
    flex: 1;
    min-width: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.device-option strong {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    white-space: nowrap;
}

.device-option span {
    font-size: 1.3rem;
    font-weight: bold;
    color: #03e9f4;
}

.device-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .device-pricing {
        padding: 0.8rem 1rem;
        flex-direction: row !important;
        max-width: 100%;
    }

    .device-option {
        padding: 0.3rem 0.5rem;
    }

    .device-option strong {
        font-size: 0.9rem;
    }

    .device-option span {
        font-size: 1.1rem;
    }
    
    .device-divider {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .device-pricing {
        padding: 0.6rem 0.5rem;
        flex-direction: row !important;
        max-width: 100%;
    }
    
    .device-option {
        padding: 0.2rem 0.3rem;
    }
    
    .device-option strong {
        font-size: 0.8rem;
    }
    
    .device-option span {
        font-size: 1rem;
    }
    
    .device-divider {
        height: 35px;
    }
}




.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Scroll Animation */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}



/* Rotate Animation */
.rotate-slow {
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Floating Stars Animation */
.floating-star {
    position: fixed;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 4px 1px rgba(255, 255, 255, 0.3);
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

/* Static stars - float animation removed */

/* Static elements - all float animations removed */

/* Additional stars for depth */
.star-twinkle {
    position: fixed;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 2px 0.5px rgba(255, 255, 255, 0.4);
    z-index: 1;
    animation: twinkle-star 5s ease-in-out infinite;
}

/* Static stars - twinkle animation removed */

/* Gradient Animation */
.gradient-bg {
    background: linear-gradient(-45deg, #000, #1a1a1a, #2C3539, #000);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.3;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(120deg);
    }

    66% {
        transform: translateY(5px) rotate(240deg);
    }
}

@keyframes twinkle-star {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes planet-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}




/* Hero Section */
.hero {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 30%, #0f0f23 70%, var(--black) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 10rem 0 8rem;
    z-index: 1;
}

/* Starfield Animation */
.stars,
.stars2,
.stars3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}

.stars {
    background: transparent;
    z-index: 0;
}

.stars:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(1px 1px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255, 255, 255, 0.6), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    opacity: 0.25;
    animation: twinkle 6s ease-in-out infinite alternate;
}

.stars2 {
    background: transparent;
    z-index: 1;
    opacity: 1;
}

.stars2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(1px 1px at 25px 25px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 50px 50px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 125px 75px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 75px 125px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 100px 25px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 150px 150px, rgba(255, 255, 255, 0.6), transparent);
    background-repeat: repeat;
    background-size: 175px 175px;
    opacity: 0.35;
    animation: twinkle 8s ease-in-out infinite alternate;
}

.stars3 {
    background: transparent;
    z-index: 2;
    opacity: 0.4;
    filter: brightness(0.8);
}

.stars3:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(1px 1px at 10px 10px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 30px 60px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 65px 15px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 85px 85px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 110px 45px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 140px 20px, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 170px 90px, rgba(255, 255, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 180px 100px;
    opacity: 0.5;
    animation: twinkle 12s ease-in-out infinite alternate;
}

/* Static stars - animation removed */

.hero-content {
    position: relative;
    z-index: 3;
}



/* Floating Planet */
.floating-planet {
    position: fixed;
    left: 5%;
    top: 50%;
    width: 100px;
    height: 100px;
    z-index: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    animation: planet-float 12s ease-in-out infinite;
    opacity: 0.7;
}



.hero h1 {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subheadline {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.benefit-check {
    font-size: 1.2rem;
    margin-right: 8px;
    color: #4a90e2;
}

.hero-cta {
    margin-bottom: 2rem;
}

.primary-cta {
    font-size: 1.3rem;
    padding: 16px 40px;
    margin-bottom: 1rem;
    display: inline-block;
}

.cta-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.social-proof {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-proof p {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.social-proof strong {
    color: var(--white);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 42, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    background: #000;
    position: relative;
    z-index: 2;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.feature-icon-wrapper {
    background-color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}



.feature-icon {
    width: 40px;
    height: 40px;
    fill: var(--black);
}

/* Benefits Section */
.benefits {
    background: linear-gradient(45deg, #000 0%, #1a1a1a 50%, #000 100%);
    position: relative;
    z-index: 2;
}

/* Screenshots Section */
.screenshots {
    background: linear-gradient(135deg, #1a1a1a 0%, #2C3539 50%, #1a1a1a 100%);
    position: relative;
    z-index: 2;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.screenshot-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
}

.screenshot-placeholder {
    width: 100%;
    max-width: 400px;
    height: 250px;
    margin: 0 auto 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.screenshot-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.screenshot-placeholder svg {
    width: 100%;
    height: 100%;
}

.screenshot-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.screenshot-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.benefit-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 4rem auto 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 10px;
}

.benefit-icon-wrapper {
    background-color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    fill: var(--black);
}

.benefit-item p {
    font-weight: 700;
}

.benefit-item span {
    display: block;
    font-weight: 300;
}


/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #2C3539 0%, #1a1a1a 50%, #2C3539 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    position: relative;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid #4a90e2;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}



.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured .pricing-icon {
    color: #4a90e2;
}

.pricing-price {
    margin: 1rem 0;
}

.pricing-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured .pricing-price .price {
    color: #4a90e2;
}

.pricing-price .period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 10px;
}

.pricing-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured .pricing-features li svg {
    color: #4a90e2;
}

.pricing-features li i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.pricing-features li {
    margin-bottom: 10px;
}

.additional-pricing {
    text-align: center;
    margin-top: 3rem;
}

.device-pricing {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}



.pricing-table-wrapper {
    margin: 3rem 0;
}

.pricing-table-wrapper.compact {
    max-width: 600px;
    margin: 3rem auto;
}

.table-description {
    text-align: center;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.pricing-table-wrapper h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(44, 53, 57, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-table th {
    background: rgba(44, 53, 57, 0.5);
    font-weight: 700;
    color: var(--white);
}

.pricing-table tr.highlight {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--white);
}

.pricing-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .device-pricing {
        flex-direction: column;
        align-items: center;
    }
}

/* Payment Options Cards */
.payment-options {
    margin: 3rem 0;
}

.payment-options h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.payment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.payment-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-5px);
}

.payment-card.highlight {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.payment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.payment-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.payment-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.payment-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Comparison Section */
.comparison {
    background: linear-gradient(45deg, #000 0%, #1a1a1a 50%, #000 100%);
}



/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #2C3539 0%, #1a1a1a 50%, #2C3539 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-item {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-item blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    position: relative;
}

.testimonial-item blockquote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1.5rem;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Lead Form */
.lead-form {
    background: linear-gradient(180deg, var(--black) 0%, var(--space-grey) 100%);
}

.form-container {
    max-width: 600px;
    margin: 4rem auto 0;
    padding: 3rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid var(--space-grey);
    background-color: var(--space-grey);
    color: var(--white);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
}

.form-container .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: transparent;
    text-align: center;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.footer-icon {
    width: 50px;
    height: 50px;
    fill: var(--white);
    margin: 0 auto 1rem;
}

.footer p {
    margin-bottom: .5rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero-subheadline {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-benefit {
        justify-content: center;
        font-size: 1rem;
    }

    .primary-cta {
        font-size: 1.2rem;
        padding: 14px 30px;
        width: 100%;
        max-width: 320px;
    }

    .cta-subtext {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .payment-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .payment-card {
        padding: 1.5rem;
    }

    .pricing-table {
        font-size: 0.85rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem 0.4rem;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .screenshot-item {
        padding: 1.5rem;
    }



    .floating-planet {
        width: 60px;
        height: 60px;
        left: 3%;
        top: 60%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-item {
        padding: 1.5rem;
    }

    .trust-content {
        gap: 2rem;
    }

    .trust-item {
        font-size: 0.9rem;
        gap: 0.6rem;
    }
}