:root {
    --brand-pink: #ff6bb5;
    --brand-pink-intense: #ff47a3;
    --brand-blue: #4db8ff;
    --dark-bg: #0b1120;
    --darker-bg: #040814;
    --text-light: #e2e8f0;
    --text-dark: #0f172a;
    --accent-glow-pink: rgba(255, 107, 181, 0.6);
    --accent-glow-blue: rgba(77, 184, 255, 0.6);
    --font-headings: 'Chewy', system-ui, cursive;
    --font-body: 'Quicksand', sans-serif;
    --social-ig: #E1306C;
    --social-fb: #1877F2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

#bubbleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

h1, h2, h3, h4, .brand-text {
    font-family: var(--font-headings);
    font-weight: 400;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.eyebrow {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
    font-family: var(--font-body);
}

.body-copy {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(90deg, var(--brand-pink-intense), var(--brand-blue), var(--brand-pink), var(--brand-pink-intense));
    background-size: 300% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
    display: inline-block;
    padding-bottom: 0.1em;
}

@keyframes shine {
    to { background-position: 300% center; }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-headings);
    font-size: 1.3rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    line-height: 1.4;
}

.btn-glow {
    background: linear-gradient(45deg, var(--brand-pink), var(--brand-blue));
    color: #ffffff;
    box-shadow: 0 0 20px var(--accent-glow-pink), 0 0 40px rgba(77, 184, 255, 0.2);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-glow:hover::before { left: 100%; }

.btn-glow:hover {
    box-shadow: 0 0 30px var(--accent-glow-blue), 0 0 60px var(--accent-glow-pink);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    box-shadow: 0 0 15px rgba(77, 184, 255, 0.3) inset, 0 0 15px rgba(77, 184, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(77, 184, 255, 0.1);
    box-shadow: 0 0 25px rgba(77, 184, 255, 0.6) inset, 0 0 25px rgba(77, 184, 255, 0.6);
    color: #ffffff;
    border-color: #ffffff;
}

.glass-card {
    background: rgba(11, 17, 32, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 181, 0.2);
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(77, 184, 255, 0.05);
    text-align: center;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-pink);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px var(--accent-glow-pink);
}

.glass-card h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.float-img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 40px var(--accent-glow-blue);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-animated-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin: 1.5rem 0 2rem 0;
    display: block;
    animation: pulse-glow 3s infinite alternate ease-in-out;
}

@keyframes pulse-glow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 107, 181, 0.4));
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(77, 184, 255, 0.8));
        transform: scale(1.05);
    }
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 181, 0.05);
    border: 2px solid var(--brand-pink);
    box-shadow: 0 0 20px var(--accent-glow-pink) inset, 0 0 20px var(--accent-glow-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--brand-blue);
    border-radius: 0;
    animation: icon-jiggle 3s infinite ease-in-out;
}

.icon-wrapper svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 5px var(--brand-blue));
}

@keyframes icon-jiggle {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.05); }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(4, 8, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-text {
    font-size: 2.2rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--accent-glow-pink);
}

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-link {
    text-decoration: none;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.social-svg {
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.icon-ig {
    color: var(--social-ig);
    filter: drop-shadow(0 0 8px rgba(225, 48, 108, 0.5));
}

.icon-fb {
    color: var(--social-fb);
    filter: drop-shadow(0 0 8px rgba(24, 119, 242, 0.5));
}

.contact-link:hover .social-svg { transform: scale(1.15); }

.phone-link:hover {
    color: var(--brand-pink);
    text-shadow: 0 0 10px var(--accent-glow-pink);
}

/* Navigation Bar */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--brand-pink);
    border-radius: 0;
    cursor: pointer;
    padding: 0 8px;
    box-shadow: 0 0 12px rgba(255,107,181,0.3);
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--brand-blue);
    box-shadow: 0 0 6px var(--accent-glow-blue);
    transition: all 0.3s ease;
}

.main-nav {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 1rem;
    padding-top: 0.75rem;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1.75rem;
    flex-wrap: wrap;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.4rem 0.2rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-pink), var(--brand-blue));
    box-shadow: 0 0 8px var(--accent-glow-pink);
    transition: width 0.3s ease;
}

.nav-link:hover { color: var(--brand-pink); }
.nav-link:hover::after { width: 100%; }

.nav-link.active {
    color: #fff;
    text-shadow: 0 0 10px var(--accent-glow-blue);
}

.nav-link.active::after { width: 100%; }

.nav-cta {
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    padding: 0.4rem 1.2rem;
    box-shadow: 0 0 12px rgba(77,184,255,0.3) inset, 0 0 12px rgba(77,184,255,0.3);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background: rgba(77,184,255,0.1);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(77,184,255,0.6) inset, 0 0 20px rgba(77,184,255,0.6);
}

.trust-strip {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,107,181,0.2);
    border-bottom: 1px solid rgba(77,184,255,0.2);
    padding: 3rem 0;
    position: relative;
    z-index: 10;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.trust-item svg {
    width: 30px;
    height: 30px;
    color: var(--brand-pink);
    filter: drop-shadow(0 0 8px var(--brand-pink));
}

.faq-accordion {
    max-width: 920px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
    margin-bottom: 1rem;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 0 20px rgba(77,184,255,0.1);
}

.faq-question {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
    letter-spacing: 1px;
}

.faq-answer {
    color: #cbd5e1;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-accordion .faq-item {
    background: rgba(11, 17, 32, 0.58);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 0;
    overflow: hidden;
    box-shadow: inset 0 0 18px rgba(77,184,255,0.04), 0 10px 30px rgba(0,0,0,0.35);
}

.faq-accordion .faq-item:hover,
.faq-accordion .faq-item.is-open {
    border-color: var(--brand-blue);
    box-shadow: inset 0 0 22px rgba(77,184,255,0.08), 0 0 22px rgba(77,184,255,0.18);
}

.faq-accordion .faq-item.is-open {
    border-color: var(--brand-pink);
}

.faq-accordion .faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    text-align: left;
    font-family: var(--font-headings);
    font-size: 1.75rem;
    letter-spacing: 1px;
    line-height: 1.25;
}

.faq-accordion .faq-question:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: -6px;
}

.faq-toggle {
    flex: 0 0 auto;
    width: 2.1rem;
    height: 2.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 0 12px rgba(77,184,255,0.35) inset, 0 0 12px rgba(77,184,255,0.25);
    transition: all 0.3s ease;
}

.faq-accordion .faq-item.is-open .faq-toggle {
    border-color: var(--brand-pink);
    color: #fff;
    box-shadow: 0 0 14px rgba(255,107,181,0.4) inset, 0 0 18px rgba(255,107,181,0.35);
    transform: rotate(45deg);
}

.faq-accordion .faq-answer {
    padding: 0 2rem 1.5rem;
}

.faq-accordion .faq-answer p {
    margin: 0;
}

.policy-box {
    background: rgba(0,0,0,0.4);
    border: 2px solid var(--brand-pink);
    padding: 3rem;
    box-shadow: inset 0 0 30px rgba(255,107,181,0.1), 0 0 30px rgba(255,107,181,0.2);
    margin-top: 2rem;
}

.policy-box ul { list-style: none; }

.policy-box li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 1.1rem;
}

.policy-box li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--brand-pink);
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--brand-pink);
}

footer {
    background: var(--darker-bg);
    border-top: 2px solid rgba(77,184,255,0.3);
    padding: 5rem 0 2rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-heading {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-link:hover {
    color: var(--brand-blue);
    text-shadow: 0 0 8px var(--brand-blue);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #64748b;
    font-weight: 600;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .section-title { font-size: 2.8rem; text-align: center; }
    .section-subtitle { text-align: center; }
    .btn { display: flex; width: 100%; margin-bottom: 1rem; text-align: center; justify-content: center; }
    .btn-group { display: flex; flex-direction: column; }
    .hero-section * { text-align: center; }
    .mobile-column-stack { display: flex; flex-direction: column; }
    .mobile-column-stack > div:first-child { order: 1; margin-bottom: 2rem; }
    .mobile-column-stack > div:last-child { order: 2; }
    header { text-align: center; padding: 1rem 0; }
    .header-container { flex-direction: column; gap: 1rem; }
    .contact-info { flex-direction: row; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
    .hero-section { padding-top: 14rem !important; text-align: center; }
    .eyebrow { text-align: center; width: 100%; }
    .hero-animated-logo { margin: 1.5rem auto 2rem auto; }

    .nav-toggle { display: flex; }
    .main-nav { display: none; width: 100%; margin-top: 0.5rem; }
    .main-nav.open { display: block; }
    .nav-container { flex-direction: column; gap: 0.75rem; }
    .nav-link { width: 100%; text-align: center; padding: 0.6rem 0; }
    .faq-accordion .faq-question { font-size: 1.45rem; padding: 1.25rem 1.25rem; }
    .faq-accordion .faq-answer { padding: 0 1.25rem 1.25rem; }
}
