/* ============================================
   JINGLE BUSINESS — Premium Animated Site
   ============================================ */

:root {
    --bg-dark: #f3eeff;
    --bg-card: #ffffff;
    --bg-elevated: #faf7ff;
    --text-primary: #1a1035;
    --text-secondary: #524a72;
    --text-muted: #7a7196;
    --accent-1: #ff6b35;
    --accent-2: #e91e8c;
    --accent-3: #7c3aed;
    --accent-4: #2563eb;
    --gradient-main: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
    --gradient-glow: linear-gradient(135deg, rgba(255,107,53,.35), rgba(233,30,140,.3), rgba(124,58,237,.3));
    --gradient-bg: linear-gradient(160deg, #fff8f3 0%, #f3eeff 35%, #ede9ff 60%, #e8f4ff 100%);
    --border: rgba(26,16,53,.1);
    --shadow-soft: 0 8px 32px rgba(124,58,237,.12);
    --shadow-glow: 0 8px 40px rgba(233,30,140,.25);
    --radius: 16px;
    --radius-lg: 24px;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --header-h: 80px;
    --transition: .4s cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font-body);
    background: var(--gradient-bg);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

main {
    position: relative;
    z-index: 1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- HEADER ---- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

.header.on-hero:not(.scrolled) {
    background: transparent;
}

.header.on-hero:not(.scrolled) .nav-link {
    color: rgba(255,255,255,.88);
}

.header.on-hero:not(.scrolled) .nav-link:hover {
    color: #fff;
}

.header.on-hero:not(.scrolled) .logo {
    color: #fff;
}

.header.on-hero:not(.scrolled) .logo span {
    background: linear-gradient(135deg, #ffb020, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header.on-hero:not(.scrolled) .nav-toggle span {
    background: #fff;
}

.header.on-hero:not(.scrolled) .nav-cta {
    background: #ff6b35;
    color: #fff !important;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover { color: var(--text-primary); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after { width: 60%; }

.nav-cta {
    background: var(--gradient-main);
    color: #fff !important;
    font-weight: 600;
    margin-left: 8px;
}

.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
}

.btn-outline {
    background: rgba(255,255,255,.9);
    color: var(--text-primary);
    border: 2px solid rgba(124,58,237,.25);
    box-shadow: var(--shadow-soft);
}

.btn-outline:hover {
    border-color: var(--accent-2);
    background: rgba(233,30,140,.08);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-block { width: 100%; }

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 48px) 0 72px;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(160deg, #050310 0%, #0c0620 40%, #120828 70%, #08040f 100%);
}

#hero-notes-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-nebula {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 75% 25%, rgba(124, 58, 237, 0.35), transparent 55%),
        radial-gradient(ellipse 45% 40% at 15% 70%, rgba(255, 107, 53, 0.2), transparent 50%),
        radial-gradient(ellipse 35% 30% at 60% 80%, rgba(233, 30, 140, 0.15), transparent 45%);
    pointer-events: none;
    animation: nebula-drift 20s ease-in-out infinite alternate;
}

@keyframes nebula-drift {
    0% { opacity: 0.85; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 80% at 50% 40%, rgba(5, 3, 16, 0.5) 0%, rgba(5, 3, 16, 0.84) 100%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - var(--header-h) - 120px);
    gap: 48px;
}

.hero-copy {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.hero-text-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(720px, 95vw);
    height: min(420px, 55vh);
    transform: translate(-50%, -52%);
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(ellipse 60% 50% at 50% 42%, rgba(124, 58, 237, 0.38) 0%, transparent 68%),
        radial-gradient(ellipse 45% 38% at 50% 55%, rgba(255, 107, 53, 0.22) 0%, transparent 62%),
        radial-gradient(ellipse 35% 30% at 50% 48%, rgba(255, 255, 255, 0.1) 0%, transparent 55%);
    filter: blur(48px);
    animation: hero-light-pulse 7s ease-in-out infinite alternate;
}

@keyframes hero-light-pulse {
    0% {
        opacity: 0.75;
        transform: translate(-50%, -52%) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -52%) scale(1.05);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6.5vw, 5.25rem);
    line-height: 1.02;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 28px;
    text-shadow:
        0 0 40px rgba(124, 58, 237, 0.35),
        0 4px 24px rgba(0, 0, 0, 0.45);
}

.hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(32px);
    filter: blur(6px);
    animation: hero-line-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.1s; }
.hero-title span:nth-child(2) { animation-delay: 0.28s; }
.hero-title span:nth-child(3) { animation-delay: 0.46s; }

.hero-title em {
    font-style: normal;
    color: #ff6b35;
    display: inline-block;
    animation: hero-gruda-glow 3s ease-in-out 1.1s infinite;
}

.hero-lead {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 auto 36px;
    max-width: 580px;
    opacity: 0;
    transform: translateY(20px);
    animation: hero-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
}

.hero-actions .btn {
    opacity: 0;
    transform: translateY(16px);
    animation: hero-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-actions .btn:nth-child(1) { animation-delay: 0.82s; }
.hero-actions .btn:nth-child(2) { animation-delay: 0.94s; }

@keyframes hero-line-in {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes hero-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-gruda-glow {
    0%, 100% {
        color: #ff6b35;
        text-shadow: 0 0 18px rgba(255, 107, 53, 0.25);
    }
    50% {
        color: #ffb020;
        text-shadow: 0 0 28px rgba(255, 107, 53, 0.55);
    }
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: #ff6b35;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: background .2s;
}

.btn-hero-primary:hover {
    background: #e85a28;
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: border-color .2s, background .2s;
}

.btn-hero-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    list-style: none;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metrics li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: .8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.35;
    opacity: 0;
    transform: translateY(12px);
    animation: hero-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-metrics li:nth-child(1) { animation-delay: 1.15s; }
.hero-metrics li:nth-child(2) { animation-delay: 1.25s; }
.hero-metrics li:nth-child(3) { animation-delay: 1.35s; }
.hero-metrics li:nth-child(4) { animation-delay: 1.45s; }

.hero-metrics li span {
    text-transform: lowercase;
}

.hero-metrics li span::first-letter {
    text-transform: uppercase;
}

.hero-metrics strong {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: #fff;
    letter-spacing: .02em;
    line-height: 1;
}

.hero-metrics li:nth-child(1) strong::after { content: '+'; font-size: 0.75em; opacity: 0.7; }
.hero-metrics li:nth-child(2) strong::after { content: '+'; font-size: 0.75em; opacity: 0.7; }
.hero-metrics li:nth-child(3) strong::after { content: '%'; font-size: 0.75em; opacity: 0.7; }
.hero-metrics li:nth-child(4) strong::after { content: 'h'; font-size: 0.75em; opacity: 0.7; }

@media (prefers-reduced-motion: reduce) {
    .hero-title span,
    .hero-lead,
    .hero-actions .btn,
    .hero-metrics li {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none;
    }

    .hero-title em {
        animation: none;
        text-shadow: none;
    }

    .hero-text-glow {
        animation: none;
        opacity: 0.85;
    }
}

@keyframes wave-bar {
    0%, 100% { transform: scaleY(.3); }
    50% { transform: scaleY(1); }
}

/* ---- MARQUEE ---- */
.marquee-section {
    padding: 18px 0;
    background: #080412;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.marquee { overflow: hidden; }

.marquee-content {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marquee 28s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.9;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-content {
        animation: none;
    }
}

/* ---- SECTIONS ---- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(233,30,140,.1);
    border: 1px solid rgba(233,30,140,.25);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- SERVICES ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(247,37,133,.3);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
    border-color: rgba(233,30,140,.35);
    background: linear-gradient(135deg, rgba(255,107,53,.08), rgba(233,30,140,.06), #fff);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--gradient-main);
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--text-secondary);
    font-size: .95rem;
    margin-bottom: 16px;
}

.service-card ul li {
    padding: 6px 0;
    font-size: .85rem;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.service-card ul li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--accent-2);
    font-size: .7rem;
}

/* ---- PORTFOLIO ---- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.portfolio-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.portfolio-cover {
    position: relative;
    height: 200px;
    background: linear-gradient(
        135deg,
        hsl(var(--hue, 280), 60%, 30%),
        hsl(calc(var(--hue, 280) + 40), 70%, 20%)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-wave-mini {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    padding-bottom: 20px;
}

.portfolio-wave-mini::before,
.portfolio-wave-mini::after {
    content: '';
    display: block;
}

.portfolio-item:hover .portfolio-cover {
    animation: cover-pulse .6s ease;
}

@keyframes cover-pulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.play-btn {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.play-btn .icon-pause { display: none; }

.portfolio-item.playing .play-btn {
    background: var(--gradient-main);
    border-color: transparent;
    animation: play-pulse 1s ease-in-out infinite;
}

.portfolio-item.playing .icon-play { display: none; }
.portfolio-item.playing .icon-pause { display: block; }

@keyframes play-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(247,37,133,.5); }
    50% { box-shadow: 0 0 0 15px rgba(247,37,133,0); }
}

.portfolio-info {
    padding: 20px;
}

.portfolio-tag {
    font-size: .75rem;
    font-weight: 600;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-info h3 {
    font-size: 1.1rem;
    margin: 8px 0 4px;
}

.portfolio-info p {
    font-size: .85rem;
    color: var(--text-muted);
}

/* ---- PRICING ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.price-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.price-card:hover {
    transform: translateY(-6px);
}

.price-card.popular {
    border-color: var(--accent-2);
    background: linear-gradient(180deg, rgba(233,30,140,.1), #fff);
    transform: scale(1.05);
}

.price-card.popular:hover { transform: scale(1.05) translateY(-6px); }

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-main);
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    white-space: nowrap;
}

.price-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.price {
    margin-bottom: 12px;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-muted);
    vertical-align: super;
}

.amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-desc {
    color: var(--text-secondary);
    font-size: .9rem;
    margin-bottom: 24px;
}

.price-features {
    text-align: left;
    margin-bottom: 32px;
}

.price-features li {
    padding: 10px 0;
    font-size: .9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    padding-left: 28px;
    position: relative;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-1);
    font-weight: 700;
}

/* ---- PROCESS ---- */
.process-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid var(--accent-2);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--accent-2);
    z-index: 1;
    box-shadow: var(--shadow-soft);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: .95rem;
}

/* ---- TESTIMONIALS ---- */
.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform .5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-card footer strong {
    display: block;
    font-size: 1rem;
}

.testimonial-card footer span {
    font-size: .85rem;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots button.active {
    background: var(--gradient-main);
    width: 28px;
    border-radius: 5px;
}

/* ---- ORDER FORM ---- */
.order {
    background: linear-gradient(180deg, transparent, rgba(124,58,237,.06));
}

.order-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.order-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.order-info > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.order-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: .95rem;
    color: var(--text-secondary);
}

.order-benefits svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
    flex-shrink: 0;
}

.order-contact {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-contact a {
    color: var(--accent-2);
    font-weight: 500;
    transition: var(--transition);
}

.order-contact a:hover { color: var(--accent-1); }

.order-form {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: .95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-2);
    box-shadow: 0 0 0 3px rgba(247,37,133,.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

#submit-btn {
    margin-top: 8px;
    position: relative;
}

#submit-btn .btn-loading { display: none; }
#submit-btn.loading .btn-text { display: none; }
#submit-btn.loading .btn-loading { display: inline; }
#submit-btn.loading { pointer-events: none; opacity: .7; }

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: .9rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34,197,94,.1);
    border: 1px solid rgba(34,197,94,.3);
    color: #22c55e;
}

.form-message.error {
    display: block;
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.3);
    color: #ef4444;
}

/* ---- FOOTER ---- */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(10px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: .9rem;
    margin-top: 12px;
    max-width: 300px;
}

.footer-links h4 {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links a,
.footer-links span {
    display: block;
    padding: 6px 0;
    font-size: .9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover { color: var(--accent-2); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: .85rem;
    color: var(--text-muted);
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    transition: var(--transition);
    animation: wa-bounce 3s ease-in-out infinite;
}

.whatsapp-float svg { width: 32px; height: 32px; color: #fff; }

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,.6);
}

@keyframes wa-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .order-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .price-card.popular { transform: none; }
    .price-card.popular:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
    .hero {
        padding: calc(var(--header-h) + 32px) 0 48px;
    }

    .hero-inner {
        min-height: auto;
        gap: 36px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
    }

    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
        max-width: none;
        margin: 0 auto;
    }

    .hero-metrics li {
        align-items: center;
    }
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(255,255,255,.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid var(--border);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link { width: 100%; text-align: center; padding: 14px; }
    .nav-cta { margin-left: 0; margin-top: 8px; }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .scroll-indicator { display: none; }
    .process-timeline::before { left: 20px; }
    .step-number { width: 44px; height: 44px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .order-form { padding: 24px; }
    .hero-metrics { gap: 20px; }
}
