:root {
    --pink: #E8006F;
    --pink-mid: #FF3D8F;
    --pink-light: #FF85B3;
    --dark: #1A0018;
    --darker: #0F000E;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(232, 0, 111, 0.2);
    --radius: 24px;
    --radius-lg: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--darker);
    font-family: 'DM Sans', sans-serif;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
}

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

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Background Gradients */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.glow-1 {
    top: -200px;
    right: -100px;
    background: var(--pink);
    animation: float 15s infinite alternate;
}

.glow-2 {
    bottom: -200px;
    left: -100px;
    background: var(--pink-mid);
    animation: float 20s infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 100px); }
}

/* Typography */
span {
    color: var(--pink-mid);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 32px;
}

.section-badge {
    display: inline-block;
    color: var(--pink-mid);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--pink-mid));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(232, 0, 111, 0.3);
}

.btn-secondary {
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

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

/* Nav */
#nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 14px 0;
    border-radius: 0;
    z-index: 1000;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(232, 0, 111, 0.25);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
}

.logo {
    font-size: 1.7rem;
    font-weight: 900;
    text-decoration: none;
    color: white;
    letter-spacing: -1.5px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.logo-img {
    height: 44px;
    width: auto;
    border-radius: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--pink-mid);
}

.mobile-menu {
    display: none;
}

.mobile-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-inner a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-inner a:hover {
    background: rgba(255, 255, 255, 0.12);
}

#nav.nav-open .mobile-toggle span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

#nav.nav-open .mobile-toggle span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

.mobile-toggle span {
    transition: transform 0.2s ease;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
}

/* Hero */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 96px 24px 80px;
    box-sizing: border-box;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    display: block;
    height: 224px;
    width: auto;
    margin: 0 auto 18px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1.05;
    margin: 24px 0;
    font-weight: 900;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    padding: 16px 32px;
    border-radius: var(--radius);
    min-width: 160px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--pink-mid);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

/* Section General */
.section {
    padding: 120px 0;
    scroll-margin-top: 96px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.about-card {
    padding: 40px;
    border-radius: var(--radius);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card.highlight {
    background: linear-gradient(135deg, rgba(232, 0, 111, 0.15), rgba(255, 61, 143, 0.1));
    border-color: rgba(232, 0, 111, 0.3);
}

.about-card .icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.about-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-item {
    padding: 48px;
    border-radius: var(--radius-lg);
}

.service-item h4 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--pink-mid);
}

.service-item p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.check-list {
    list-style: none;
}

.check-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pink-mid);
    font-weight: 900;
}

/* Experience */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 980px) {
    .experience-grid {
        grid-template-columns: repeat(3, minmax(280px, 1fr));
    }

    .experience-grid .experience-card.app-card {
        grid-column: 2;
    }
}

.experience-card {
    padding: 44px;
    border-radius: var(--radius-lg);
}

.experience-card h4 {
    font-size: 1.8rem;
    margin-bottom: 14px;
    color: var(--pink-mid);
}

.experience-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.experience-cta {
    margin-top: 32px;
    padding: 28px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.experience-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.experience-cta p {
    color: rgba(255, 255, 255, 0.6);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.info-items {
    margin: 32px 0;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--pink-mid);
}

.info-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.info-item p, .info-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.business-details {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-container {
    padding: 48px;
    border-radius: var(--radius-lg);
}

.form-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: min(420px, calc(100vw - 44px));
    padding: 18px 18px 18px 20px;
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.form-toast-title {
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.95);
}

.form-toast-message {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.35;
}

.form-toast-close {
    appearance: none;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    width: 36px;
    height: 36px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: background 0.2s ease, color 0.2s ease;
}

.form-toast-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
}

.form-toast-close:focus-visible {
    outline: 2px solid rgba(232, 0, 111, 0.55);
    outline-offset: 2px;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

input, textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--pink-mid);
}

.honeypot {
    display: none;
}

/* Footer */
footer {
    padding: 80px 0;
    margin-top: 120px;
    border-radius: 80px 80px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-brand .logo {
    margin-bottom: 12px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-copy {
    text-align: right;
}

.footer-copy p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-copy {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.25s ease, opacity 0.2s ease;
    }

    #nav.nav-open .mobile-menu {
        max-height: 360px;
        opacity: 1;
        pointer-events: auto;
    }

    .logo {
        font-size: 1.4rem;
        gap: 12px;
    }

    .logo-img {
        height: 38px;
        border-radius: 10px;
    }

    .hero-logo {
        height: 184px;
        margin-bottom: 14px;
    }

    #hero {
        padding-top: 72px;
        min-height: auto;
        padding-bottom: 80px;
    }
    .section {
        padding: 80px 0;
        scroll-margin-top: 84px;
    }

    .experience-card {
        padding: 36px;
    }

    .experience-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }
}
