* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000000;
    background:
        radial-gradient(1100px 600px at 78% -8%, #5B8DEF22, transparent 60%),
        radial-gradient(900px 600px at 8% 4%, #56D6E818, transparent 55%),
        linear-gradient(180deg, #0B1126 0%, #080B18 38%);
    background-attachment: fixed;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.container h2 {
    padding-top: 2.8rem;
    font-size: 3.4rem;
    font-weight: 600;
    letter-spacing: -2.5px;
    color: #EAF0FF;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease forwards;
}


.container .text-content:nth-child(2) {
    justify-self: end;
    text-align: right;
}




/* Hero Section */

.hero {
    min-height: min(120vh, 860px);
    align-items: center;
    padding-top: 200px;
}

.hero-text h1 {
    font-size: 4.3rem;
    font-weight: 600;
    letter-spacing: -3px;
    margin-bottom: 70px;
    opacity: 0;
    color: #EAF0FF;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-text p {
    font-size: 1.55rem;
    font-weight: 550;
    letter-spacing: -0.6px;
    color: #C4CDE6;
    opacity: 0;
    margin-bottom: 100px;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
}

.grad-text {
    background: linear-gradient(135deg, #5B8DEF 0%, #56D6E8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;           
}

.pricing-card {
    background: linear-gradient(160deg, #101A3C 0%, #0A1027 100%);
    border-radius: 20px;
    padding: 50px 40px;
    color: #EAF0FF;
    opacity: 1;
    transform: translateY(50px);
    transition: all 0.8s ease;
    border: 1px solid rgba(255, 255, 255, 0.16);
    
}

.pricing-card.visible {
    opacity: 0;
    transform: translateY(0);
}

.pricing-card h3 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.card-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
    opacity: 0.9;
    color: #C4CDE6;
}

.card-description {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.8;
    color: #93A0C0;
}

.card-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-button {
    padding: 14px 28px;
    background: #EAF0FF;
    color: #1e3a5f;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.primary-button:hover {
    background: #f8f6f6;
    transform: translateY(-2px);
}

.secondary-button {
    padding: 14px 28px;
    background: transparent;
    color: #EAF0FF;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid #EAF0FF;
    transition: all 0.2s;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}




/* Scroll Sections */

.scroll-section {
    min-height: min(100vh, 750px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    position: relative;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.text-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.text-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-content h2 {
    font-size: 44px;
    font-weight: 600;
    color: #EAF0FF;
    letter-spacing: -1px;
    margin-bottom: 40px;
    line-height: 1.1;
}

.text-content p {
    font-size: 1.3rem;
    font-weight: 550;
    letter-spacing: -0.9px;
    line-height: 1.5;
    color: #C4CDE6;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #5B8DEF 0%, #56D6E8 100%);
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.2s;
}

.cta-button:hover {
    background: linear-gradient(135deg, #5687e9 0%, #51cede 100%);
    transform: translateY(-2px);
}

.setup-cta {
    margin-top: 20px;
    display: inline-block;
}



/* Image Container */

.image-container {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.image-container.visible {
    opacity: 1;
    transform: scale(1);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.reverse {
    direction: rtl;
}

.reverse > * {
    direction: ltr;
}


#rotating-box {
    width: 100%;
    height: auto;
    display: block;
}




/* Full width text section */

.full-text-section {
    min-height: min(60vh, 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 20px;
}

.full-text-section h2 {
    font-size: 5.1rem;
    font-weight: 600;
    letter-spacing: -3px;
    max-width: 950px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    color:#EAF0FF;
}

.full-text-section h2.visible {
    opacity: 1;
    transform: translateY(0);
}





/* Main text section */

.main-text-section {
    min-height: min(100vh, 750px);
    display: flex;
    padding: 70px 20px;
    font-size: 1.3rem;
    font-weight: 550;
    letter-spacing: -0.6px;
    color: #626267;
    scroll-margin-top: 10px;
    
}

.main-text-section h2 {
    color: #ffffff;
    font-size: 4.4rem;
    letter-spacing: -3px;
    font-weight: 600;
}

.main-text-section h3 {
    font-size: 2.4 rem;
    letter-spacing: -1px;
    padding-bottom: 0rem;
    font-weight: 500;
    padding-inline: 20px;
}

.main-text-section p {
    padding-top: 1rem;
    color: #C4CDE6;
    
}

.main-text-section ul {
    padding-left: 40px;
}





/* CTA Section */

.cta-section {
    padding: 6rem 0;
}

.cta-section h2 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
    letter-spacing: -4px;
    
}

.cta-section p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;

    margin-left: auto;
    margin-right: auto;
    color: #C4CDE6;
}

.contact-buttons {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn-primary:hover,
.contact-buttons .btn-secondary:hover {
    transform: translateY(-2px);
}

.contact-buttons .btn-secondary:hover {
    background: #fff;
    color: #10162F;
}






/* Header */

header {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.0);
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 8rem;
}

nav a {
    text-decoration: none;
    color: #EAF0FF;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #5379ac;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1.5rem;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #EAF0FF;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(160deg, #101A3C 0%, #0A1027 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 8px 30px rgba(0,0,0,0.45);
    border-radius: 12px;
    flex-direction: column;
    width: 80%;
    z-index: 2000;
    padding: 1rem 0;
}
.mobile-menu a {
    color: #EAF0FF;
    padding: 1rem 2rem;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.15s;
    display: block;
}
.mobile-menu a:hover,
.mobile-menu a:active {
    background: rgba(255, 255, 255, 0.1);
}
.mobile-menu.active {
    display: flex !important;
}

@media (max-width: 900px) {
    nav ul.nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu {
        display: none;
    }
    .mobile-menu.active {
        display: flex;
    }
}





/* Footer */

footer {
    background: rgba(4, 6, 14, 0.6);
    padding: 60px 0 30px;
}

.footer-top {
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #EAF0FF;
    text-decoration: none;
    letter-spacing: -0.3px;
    font-size: 15px;
    font-weight: 550;
    letter-spacing: -0.3px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #93A0C0;
}

.footer-bottom {
    padding: 20px 60px;
    background: rgba(4, 6, 14, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-bottom-links a {
    color: #C4CDE6;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: -0.3px;
}

.footer-bottom-links a:hover {
    color: #93A0C0;
}

.copyright {
    padding-top: 1.8rem;
    color: #93A0C0;
    font-size: 14px;
    letter-spacing: -0.2px;
}

@media (max-width: 480px) {
        .footer-top, .footer-bottom {
            padding: 20px;
        }

        .footer-top {
            align-items: flex-start;
        }

        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem 1.5rem;
            font-size: 14px;
        }

        .footer-bottom-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.8rem 1.5rem;
            font-size: 12.5px;
            margin-bottom: 10px;
        }

        .copyright {
            font-size: 12.5px;
            padding-top: 1.2rem;
        }
    }







/* Contact Page */


.form-group {
    margin-bottom: 1.5rem;
    padding-inline: 2rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.form-group label {
    display: block;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #EAF0FF;
    margin-bottom: 0.5rem;
}

.form-group label .req-star {
    color: #56D6E8;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.04);
    color: #EAF0FF;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6B7690;
}

.form-group select option {
    color: #EAF0FF;
    background: #0A1027;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #56D6E8;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(86, 214, 232, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    background: linear-gradient(135deg, #5B8DEF 0%, #56D6E8 100%);
    color: #000000;
    padding: 16px 22px;
    font-family: inherit;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s ease;
    width: 40%;
    display: block;
    margin: 2rem auto 0 auto;
    text-align: center;
    box-shadow: 0 6px 20px rgba(16,22,47,0.45);
}


.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16,22,47,0.55);
    filter: brightness(1.05);
}

.contact-hero {
    padding-top: 160px;
    padding-bottom: 3rem;
    max-width: 700px;
}
 
 
.contact-hero h1 {
    font-size: 3.4rem;
    font-weight: 600;
    letter-spacing: -2px;
    color: #EAF0FF;
    margin-bottom: 2.2rem;
    line-height: 1.05;
}
 
.contact-hero p {
    font-size: 1.2rem;
    color: #93A0C0;
    line-height: 1.5;
    font-weight: 500;
}
 
.contact-hero p a {
    color: #56D6E8;
    font-weight: 700;
    text-decoration: none;
}
 
.contact-hero p a:hover {
    text-decoration: underline;
}
 
.contact-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2rem;
    align-items: start;
    padding-bottom: 6rem;
}
 
.contact-form-card {
    background: linear-gradient(160deg, #101A3C 0%, #0A1027 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    padding: 3rem 2.5rem;
}
 
.contact-form-card .form-heading {
    font-size: 1.9rem;
    font-weight: 600;
    color: #EAF0FF;
    letter-spacing: -0.5px;
    margin-bottom: 2.4rem;
    padding-top: 0;
    padding-left: 1.6rem;
    animation: none;
}

 
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
 
.sidebar-card {
    background: linear-gradient(160deg, #101A3C 0%, #0A1027 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 1.75rem;
}
 
.sidebar-card h3 {
    color: #EAF0FF;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: -0.3px;
}
 
.sidebar-card p {
    color: #93A0C0;
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}
 
.sidebar-card .sidebar-link {
    color: #56D6E8;
    font-weight: 700;
    text-decoration: none;
}
 
.sidebar-card .sidebar-link:hover {
    text-decoration: underline;
}
 
.sidebar-card .sidebar-email {
    color: #EAF0FF;
    font-weight: 600;
    margin-bottom: 0.4rem;
    display: block;
}
 
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .contact-hero h1 {
        font-size: 2.6rem;
    }
}
 
.contact-form-card,
.sidebar-card {
    opacity: 1;
    transform: translateY(50px);
    transition: all 0.8s ease;
}
 
.contact-form-card.visible,
.sidebar-card.visible {
    opacity: 1;
    transform: translateY(0);
}
 
.contact-sidebar .sidebar-card:nth-child(2) {
    transition-delay: 0.15s;
}

.form-message {
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.75rem;
}
 
.form-message p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.5;
}
 
.success-message {
    background: rgba(86, 214, 232, 0.08);
    border: 1px solid rgba(86, 214, 232, 0.35);
}
 
.success-message p {
    color: #EAF0FF;
}
 
.error-message {
    background: rgba(255, 99, 99, 0.08);
    border: 1px solid rgba(255, 99, 99, 0.35);
}
 
.error-message p {
    color: #FFB4B4;
}





/* Plans Page */
 

.plans-intro {
    text-align: center;
    margin-bottom: 15rem;
    transform: translateY(100px);
}

.plans-intro h2 {
    font-size: 3.4rem;
    font-weight: 600;
    letter-spacing: -2px;
    color: #EAF0FF;
    margin-bottom: 1rem;
}

.plans-section {
    padding: 2rem 20px;
}
 
.plans-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 2rem;
}
 
.plan-card {
    background: linear-gradient(160deg, #101A3C 0%, #0A1027 100%);
    border-radius: 20px;
    padding: 50px 40px;
    color: #EAF0FF;
    opacity: 1;
    transform: translateY(50px);
    transition: all 0.8s ease;
    border: 1px solid rgba(255, 255, 255, 0.16);
}
 
.plan-card.visible {
    opacity: 1;
    transform: translateY(0);
}
 

 
.plan-card-head {
    margin-bottom: 1.75rem;
}
 
.plan-name {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.8px;
    margin-bottom: 0.6rem;
    color: #EAF0FF;
}
 
.plan-price {
    font-size: 2.9rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #5B8DEF 0%, #56D6E8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
 
.plan-price .plan-price-unit {
    font-size: 1.2rem;
    font-weight: 600;
    color: #93A0C0;
    margin-left: 6px;
}
 
.plan-includes-note {
    font-size: 1.2rem;
    color: #93A0C0;
    font-weight: 600;
    margin-top: 0.9rem;
}
 
.plan-features {
    list-style: none;
    margin: 1.75rem 0 2.25rem;
    flex-grow: 1;
}
 
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.55rem 0;
    font-size: 1.02rem;
    line-height: 1.4;
    color: #C4CDE6;
}
 
.plan-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}
 
.plan-card .cta-button {
    text-align: center;
    align-self: flex-start;
}

.beta {
    display: inline-block;
    background: rgba(195, 129, 7, 0.3);
    color: #e1c62a;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.3px;
    padding: 4px 12px;
    border-radius: 999px;
    flex-shrink: 0;
}
 

 
@media (max-width: 900px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .plan-connector {
        padding: 0.5rem 0;
    }
}
 
/* FAQ Accordion */
 
.faq-section {
    padding: 6rem 20px 7rem;
}
 
.faq-section .plans-intro {
    margin-bottom: 10rem;
}
 
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}
 
.faq-item {
    border-bottom: 1px solid rgba(225, 216, 216, 0.105);
}
 
.faq-item summary {
    padding: 1.6rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #EAF0FF;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
 
.faq-item summary::-webkit-details-marker {
    display: none;
}
 
.faq-item summary::after {
    content: '+';
    font-size: 1.9rem;
    font-weight: 300;
    color: #93A0C0;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
 
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
 
.faq-item p {
    padding: 0 0 1.6rem;
    max-width: 660px;
    color: #93A0C0;
    font-size: 1.05rem;
    line-height: 1.6;
}
 
@media (max-width: 768px) {
    .plans-section {
        padding: 4.5rem 20px;
    }
    .plan-card {
        padding: 2.25rem 1.75rem;
    }
}




/* Lightbulb scroll animation (power-section) — v2 */

 
.power-content {
    display: grid;
    grid-template-areas: "stack";
    place-items: center;
    position: relative;
}
 
.power-content > * {
    grid-area: stack;
}
 
.lightbulb-wrap {
    z-index: 0;
    pointer-events: none;
}
 
.lightbulb-svg {
    width: 300px;
    height: auto;
    opacity: 0.35;
}
 
.power-section h2 {
    z-index: 1;
    text-align: center;
    transition: text-shadow 0.3s ease;
}
 
.bulb-glow {
    opacity: 0;
    transition: opacity 1s ease;
    transform-origin: 50px 45px;
}
 
.bulb-outline {
    transition: stroke 0.8s ease;
}
 
.bulb-filament {
    transition: stroke 0.6s ease 0.25s, filter 0.6s ease 0.25s;
}
 
.bulb-rays line {
    opacity: 0;
    transition: opacity 0.5s ease;
}
 
.bulb-rays line:nth-child(1) { transition-delay: 0.5s; }
.bulb-rays line:nth-child(2) { transition-delay: 0.6s; }
.bulb-rays line:nth-child(3) { transition-delay: 0.6s; }
.bulb-rays line:nth-child(4) { transition-delay: 0.7s; }
.bulb-rays line:nth-child(5) { transition-delay: 0.7s; }
 
.power-section.lit .bulb-glow {
    opacity: 1;
    animation: bulbPulse 2.6s ease-in-out infinite 0.9s;
}
 
.power-section.lit .bulb-outline {
    stroke: #e0a638;
}
 
.power-section.lit .bulb-filament {
    stroke: #ffb238;
    filter: drop-shadow(0 0 8px rgba(255, 178, 56, 0.9));
}
 
.power-section.lit .bulb-rays line {
    opacity: 1;
}
 
.power-section.lit h2 {
    animation: textGlowFlash 1.4s ease-out forwards;
}
 
@keyframes textGlowFlash {
    0% { text-shadow: 0 0 0 rgba(255, 193, 76, 0); }
    35% { text-shadow: 0 0 60px rgba(255, 193, 76, 0.95), 0 0 110px rgba(255, 193, 76, 0.55); }
    100% { text-shadow: 0 0 16px rgba(255, 193, 76, 0.4); }
}
 
@keyframes bulbPulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.08); opacity: 1; }
}
 
@media (max-width: 768px) {
    .lightbulb-svg {
        width: 180px;
    }
}



/* Setup Page */
 

.setup-intro {
    text-align: center;
    margin-bottom: 15rem;
    transform: translateY(100px);
}

.setup-intro h2 {
    font-size: 3.4rem;
    font-weight: 600;
    letter-spacing: -2px;
    color: #EAF0FF;
    margin-bottom: 22rem;
}

.setup-section {
    padding: 2rem 20px;
}

.scroll-section-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 6rem;
    position: relative;
    transform: translateY(-120px);
}


/* Cookie Consent Banner */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3000;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
}

.cookie-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner-inner {
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: linear-gradient(160deg, #101A3C 0%, #0A1027 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    padding: 1.75rem 3rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.45);
}

.cookie-banner-text {
    color: #C4CDE6;
    font-size: 0.98rem;
    line-height: 1.5;
    margin: 0;
    flex: 1 1 420px;
}

.cookie-banner-text a {
    color: #56D6E8;
    font-weight: 700;
    text-decoration: none;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex: 0 0 auto;
}


.cookie-btn {
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 650;
    letter-spacing: 0.2px;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.cookie-btn-reject {
    background: transparent;
    color: #EAF0FF;
    border-color: #EAF0FF;
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.cookie-btn-accept {
    padding: 14px 28px;
    background: #EAF0FF;
    color: #1e3a5f;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.cookie-btn-accept:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
}

.cookie-btn-manage {
    background: transparent;
    color: #EAF0FF;
    border-color: #EAF0FF;
}

.cookie-btn-manage:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Cookie Preferences Modal */

.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(4, 6, 14, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cookie-modal-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.cookie-modal {
    width: 100%;
    max-width: 560px;
    max-height: 85vh;
    overflow-y: auto;
    background: linear-gradient(160deg, #101A3C 0%, #0A1027 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s ease;
}

.cookie-modal-overlay.visible .cookie-modal {
    transform: translateY(0) scale(1);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.25rem 2.75rem 1.25rem;
}

.cookie-modal-header h2 {
    color: #EAF0FF;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin: 0;
}

#cookie-modal-close {
    background: none;
    border: none;
    color: #93A0C0;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem;
}

#cookie-modal-close:hover {
    color: #EAF0FF;
}

.cookie-modal-body {
    padding: 0 2.75rem;
}

.cookie-modal-intro {
    color: #93A0C0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.cookie-modal-intro a {
    color: #56D6E8;
    font-weight: 700;
    text-decoration: none;
}

.cookie-modal-intro a:hover {
    text-decoration: underline;
}

.cookie-category {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.cookie-category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-category-name {
    color: #EAF0FF;
    font-weight: 650;
    font-size: 1.05rem;
    letter-spacing: -0.2px;
}

.cookie-locked {
    color: #93A0C0;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.cookie-category-desc {
    color: #93A0C0;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

/* Toggle switch for the Analytics category */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-switch-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cookie-switch-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    top: 3px;
    background: #EAF0FF;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.cookie-switch input:checked + .cookie-switch-slider {
    background: linear-gradient(135deg, #5B8DEF 0%, #56D6E8 100%);
}

.cookie-switch input:checked + .cookie-switch-slider::before {
    transform: translateX(20px);
}

.cookie-modal-footer {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 2rem 2.75rem 2.5rem;
}

.cookie-modal-footer .cookie-btn {
    flex: 1 1 auto;
    text-align: center;
}

@media (max-width: 480px) {
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .cookie-modal-footer {
        flex-direction: column;
    }
}




/* Responsive Styles */

@media (max-width: 900px) {

    /* --- Structural fixes only: things that would genuinely break or
       overlap at ANY width below 900px, tablets included. All sizing and
       typography now lives in the 480px block below, so tablets keep
       near-desktop scale instead of phone-scale. --- */

    .cta-button {
        display: none;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    /* --- Scroll sections (content-wrapper) --- */
    .content-wrapper{
        gap: 30px;
    }


    /* --- Plans page: "+" connector only makes sense between side-by-side
       cards; .plans-grid already collapses to 1 column at 900px --- */
    .plan-connector {
        display: none;
    }

    /* --- Setup page: prevents heading/section overlap with fixed header --- */
    .setup-section {
        padding-top: 6rem;
    }


    .scroll-section-compact {
        transform: none;
        padding: 40px 20px 60px;
    }

    #faqs.faq-section[style] {
        transform: none !important;
    }
}

@media (max-width: 480px) {

    /* --- Hero section --- */
    .hero {
        padding-top: 120px;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 2.3rem;
        letter-spacing: -1.5px;
        margin-bottom: 40px;
    }

    .hero-text p {
        font-size: 1.15rem;
        margin-bottom: 50px;
    }

    .logo img {
        height: 34px;
    }

    /* --- Scroll sections (content-wrapper) --- */
    .content-wrapper .image-container iframe {
        height: 220px;
    }

    .media-first .image-container {
        order: -1;
        margin-bottom: 40px;
    }

    .text-content h2 {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .text-content p {
        font-size: 1.05rem;
    }

    .scroll-section {
        padding: 40px 20px;
        min-height: auto;
    }

    .setup-cta {
        margin-top: 16px;
        padding: 11px 22px;
        font-size: 12.5px;
    }

    .setup-intro {
        margin-bottom: 3rem;
        transform: none;
    }

    .setup-intro h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .hide-video-mobile .image-container iframe {
        display: none;
    }

    /* --- Pricing cards: more compact on small phones --- */
    .pricing-cards {
        margin-top: 60px;
    }

    .pricing-card {
        padding: 28px 24px;
    }

    .pricing-card h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .card-subtitle {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .card-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .card-buttons {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .card-buttons a {
        padding: 14px 14px;
        font-size: 12px;
        flex: 1;
        text-align: center;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .content-wrapper.reverse {
        direction: ltr;
    }

    /* --- Full-width text section --- */
    .full-text-section {
        padding: 20px 24px;
        min-height: auto;
    }

    .full-text-section h2 {
        font-size: 2.3rem;
        letter-spacing: -1.5px;
    }

    .lightbulb-svg {
        width: 200px;
    }

    /* --- Main text section (Dashboard) --- */
    .main-text-section {
        min-height: auto;
        display: block;
        padding: 20px 0;
    }

    .main-text-section h2 {
        font-size: 1.9rem;
        letter-spacing: -1.5px;
    }

    .main-text-section .text-content p {
        padding-right: 0 !important;
    }


    /* --- CTA section --- */
    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-section h2 {
        font-size: 1.9rem;
        letter-spacing: -1.5px;
    }

    .cta-section p {
        font-size: 1.15rem;
    }

    /* --- Container heading (general h2 used across pages) --- */
    .container h2 {
        font-size: 2rem;
        padding-top: 2.8rem;
        margin-bottom: 2rem;
    }

    /* --- Contact page --- */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        padding-inline: 0.5rem;
    }

    .submit-btn {
        width: 100%;
        font-size: 1.05rem;
        padding: 14px 18px;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
    }

    .contact-hero h1 {
        font-size: 2.1rem;
    }

    .contact-hero p {
        font-size: 1.05rem;
    }

    .contact-form-card .form-heading {
        font-size: 1.5rem;
        padding-left: 0.5rem;
        margin-bottom: 1.6rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .sidebar-card h3 {
        font-size: 1.05rem;
    }

    .sidebar-card p {
        font-size: 0.92rem;
    }

    .sidebar-email {
        font-size: 0.95rem;
    }

    /* --- Plans page --- */
    .plans-intro h2 {
        font-size: 2rem;
    }

    .plans-intro {
        margin-bottom: 4rem;
        transform: translateY(20px);
    }

    .plan-card {
        padding: 30px 24px;
    }

    .plan-name {
        font-size: 1.5rem;
    }

    .plan-price {
        font-size: 2rem;
    }

    .beta {
        font-size: 13px;
        padding: 3px 10px;
    }

    .plan-price .plan-price-unit {
        font-size: 1rem;
    }

    .plan-includes-note {
        font-size: 1rem;
    }

    .plan-features li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }

    /* --- FAQ section --- */
    .faq-section {
        padding: 3rem 20px 4rem;
    }

    .faq-section .plans-intro {
        margin-bottom: 3rem;
    }

    .faq-item summary {
        padding: 1.1rem 0;
        font-size: 1.05rem;
        gap: 0.75rem;
    }

    .faq-item summary::after {
        font-size: 1.5rem;
    }

    .faq-item p {
        font-size: 0.95rem;
        padding-bottom: 1.1rem;
    }

    /* --- Cookie banner: stack on small phones --- */
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .cookie-banner-text {
        flex: none;
        font-size: 0.92rem;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
        padding: 13px 20px;
    }
}
