/* =============================================
   Power of AI - Shared Styles
   ============================================= */

:root {
    /* Power of AI — Eigen identiteit: warm amber/orange + electric blue */
    --amber: #F59E0B;
    --amber-bright: #FBBF24;
    --orange: #F97316;
    --orange-deep: #EA580C;
    --blue: #3B82F6;
    --blue-deep: #2563EB;
    --sky: #0EA5E9;
    --bg-dark: #07080F;
    --bg-card: #0C0D16;
    --bg-elevated: #12131F;
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);
    --glow-amber: rgba(245,158,11,0.15);
    --glow-blue: rgba(59,130,246,0.15);
    --gradient-main: linear-gradient(135deg, var(--orange), var(--amber-bright));
    --gradient-accent: linear-gradient(135deg, var(--blue), var(--sky));
    --gradient-mix: linear-gradient(135deg, var(--orange) 0%, var(--amber) 40%, var(--blue) 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(245,158,11,0.3); color: white; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gradient-main); border-radius: 3px; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ===== SHOOTING STARS ===== */
.shooting-stars {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shooting-star {
    position: absolute;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, rgba(251,191,36,0.8), transparent);
    border-radius: 50%;
    animation: shoot linear infinite;
    opacity: 0;
}

.shooting-star::before {
    content: '';
    position: absolute;
    right: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--amber-bright);
    box-shadow: 0 0 10px var(--amber), 0 0 30px rgba(251,191,36,0.5);
}

.ss-1 { top: 8%; left: -120px; animation-duration: 2.5s; animation-delay: 1s; transform: rotate(-15deg); }
.ss-2 { top: 22%; left: -120px; animation-duration: 3s; animation-delay: 4s; transform: rotate(-8deg); width: 80px; }
.ss-3 { top: 45%; left: -120px; animation-duration: 2s; animation-delay: 7s; transform: rotate(-20deg); width: 150px; }
.ss-4 { top: 65%; left: -120px; animation-duration: 2.8s; animation-delay: 11s; transform: rotate(-12deg); width: 100px; }
.ss-5 { top: 15%; left: -120px; animation-duration: 2.2s; animation-delay: 15s; transform: rotate(-5deg); width: 90px; }
.ss-6 { top: 78%; left: -120px; animation-duration: 3.2s; animation-delay: 19s; transform: rotate(-18deg); width: 130px; }
.ss-7 { top: 35%; left: -120px; animation-duration: 1.8s; animation-delay: 23s; transform: rotate(-10deg); width: 110px; }

@keyframes shoot {
    0% { transform: translateX(0) rotate(inherit); opacity: 0; }
    5% { opacity: 1; }
    70% { opacity: 1; }
    100% { transform: translateX(calc(100vw + 200px)) rotate(inherit); opacity: 0; }
}

/* ===== BG ORBS ===== */
.bg-effects {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.bg-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(249,115,22,0.07), transparent 70%);
    top: -10%; left: -10%;
    animation: orbDrift 25s ease-in-out infinite;
}

.bg-orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.06), transparent 70%);
    top: 30%; right: -15%;
    animation: orbDrift 30s ease-in-out infinite reverse;
}

.bg-orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,0.05), transparent 70%);
    bottom: 10%; left: 20%;
    animation: orbDrift 20s ease-in-out infinite 5s;
}

@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -40px) scale(1.1); }
    50% { transform: translate(-40px, 60px) scale(0.95); }
    75% { transform: translate(30px, 30px) scale(1.05); }
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 50% 30%, black, transparent 80%);
}

/* ===== FLOATING 3D ELEMENT ===== */
.floating-element {
    position: fixed;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    pointer-events: none;
    transition: top 0.1s linear;
}

.float-cube-wrapper {
    width: 60px;
    height: 60px;
    perspective: 400px;
    animation: floatBob 5s ease-in-out infinite;
}

.float-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeRotate 12s linear infinite;
}

.float-cube-face {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 1.5px solid rgba(245,158,11,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    backdrop-filter: blur(4px);
}

.fcf-front  { background: rgba(249,115,22,0.08); transform: translateZ(30px); }
.fcf-back   { background: rgba(59,130,246,0.08); transform: rotateY(180deg) translateZ(30px); }
.fcf-right  { background: rgba(245,158,11,0.08); transform: rotateY(90deg) translateZ(30px); }
.fcf-left   { background: rgba(14,165,233,0.08); transform: rotateY(-90deg) translateZ(30px); }
.fcf-top    { background: rgba(251,191,36,0.1); transform: rotateX(90deg) translateZ(30px); }
.fcf-bottom { background: rgba(59,130,246,0.06); transform: rotateX(-90deg) translateZ(30px); }

.float-cube-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,0.15), transparent 70%);
    filter: blur(20px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes cubeRotate {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

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

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Trail particles behind cube */
.float-trail {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--amber);
    opacity: 0;
    animation: trailFade 2s ease-out infinite;
}

.float-trail:nth-child(1) { bottom: -10px; left: 20px; animation-delay: 0s; }
.float-trail:nth-child(2) { bottom: -15px; left: 35px; animation-delay: 0.4s; }
.float-trail:nth-child(3) { bottom: -8px; left: 50px; animation-delay: 0.8s; }

@keyframes trailFade {
    0% { opacity: 0; transform: translateY(0) scale(1); }
    20% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(30px) scale(0); }
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    padding: 12px 0;
    background: rgba(7,8,15,0.85);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: white;
}

.nav-logo-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 30px rgba(249,115,22,0.3), 0 0 60px rgba(245,158,11,0.15);
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(249,115,22,0.3), 0 0 60px rgba(245,158,11,0.15); }
    50% { box-shadow: 0 0 40px rgba(249,115,22,0.4), 0 0 80px rgba(245,158,11,0.25); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.92rem;
    transition: all 0.3s;
}

.nav-links a:hover { color: white; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 5px; }
.nav-dropdown-toggle svg { transition: transform 0.3s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: rgba(12,13,22,0.95);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-hover);
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: 200;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px; left: 0; right: 0; height: 12px;
}

.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 16px 16px 0 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: var(--text-secondary) !important;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: rgba(249,115,22,0.08);
    color: var(--amber) !important;
    padding-left: 20px;
}

.nav-dropdown-menu a::after { display: none !important; }

.nav-cta {
    padding: 10px 28px !important;
    background: var(--gradient-main) !important;
    color: white !important;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 0 25px rgba(249,115,22,0.2);
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 0 40px rgba(249,115,22,0.35) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span { width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ===== MARQUEE ===== */
.marquee {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.marquee-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.marquee-track {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-inner {
    display: flex;
    gap: 56px;
    align-items: center;
    animation: scroll 25s linear infinite;
}

.marquee-inner:hover { animation-play-state: paused; }

.marquee-item {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.marquee-item:hover { color: var(--text-secondary); }
.marquee-sep { width: 4px; height: 4px; background: var(--text-muted); border-radius: 50%; opacity: 0.4; flex-shrink: 0; }

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}


/* ===== BUTTON STYLES ===== */
.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 40px rgba(249,115,22,0.25), 0 0 80px rgba(245,158,11,0.1);
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--orange), var(--amber-bright), var(--orange));
    background-size: 300% 300%;
    border-radius: 18px;
    z-index: -1;
    animation: borderShift 4s linear infinite;
    filter: blur(8px);
    opacity: 0.5;
}

@keyframes borderShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 60px rgba(249,115,22,0.35), 0 0 120px rgba(245,158,11,0.15);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: rgba(255,255,255,0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
    border-radius: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(249,115,22,0.3);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(249,115,22,0.1);
}


    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ===== SECTION HEADERS ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.section-tag-line {
    width: 28px; height: 2px;
    background: var(--gradient-main);
    border-radius: 1px;
}

.section-heading {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-mix);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
}

/* ===== FOOTER ===== */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--border); position: relative; z-index: 1; }

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

.footer-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-heading { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.88rem; color: white; margin-bottom: 20px; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-list a { text-decoration: none; color: var(--text-muted); font-size: 0.88rem; transition: all 0.3s; }
.footer-list a:hover { color: var(--amber); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-socials { display: flex; gap: 10px; }

.footer-social {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s;
}

.footer-social:hover {
    background: var(--gradient-main);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(249,115,22,0.2);
}

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .floating-element { right: 20px; }
    .float-cube-wrapper { width: 45px; height: 45px; }
    .float-cube-face { width: 45px; height: 45px; font-size: 18px; border-radius: 9px; }
    .fcf-front { transform: translateZ(22px); }
    .fcf-back { transform: rotateY(180deg) translateZ(22px); }
    .fcf-right { transform: rotateY(90deg) translateZ(22px); }
    .fcf-left { transform: rotateY(-90deg) translateZ(22px); }
    .fcf-top { transform: rotateX(90deg) translateZ(22px); }
    .fcf-bottom { transform: rotateX(-90deg) translateZ(22px); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; }
    .floating-element { display: none; }
    .custom-cursor, .cursor-glow { display: none; }
}

/* ===== LOADING SCREEN ===== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: opacity 0.6s, visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 70px; height: 70px;
    border-radius: 18px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    animation: loaderPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(249,115,22,0.3);
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(249,115,22,0.3); }
    50% { transform: scale(1.08); box-shadow: 0 0 90px rgba(249,115,22,0.5); }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-main);
    border-radius: 2px;
    animation: loadBar 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes loadBar {
    0% { width: 0%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

.loader-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: var(--gradient-main);
    z-index: 9998;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(249,115,22,0.5);
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    position: fixed;
    width: 8px; height: 8px;
    background: var(--amber);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    transition: width 0.3s, height 0.3s, margin 0.3s, opacity 0.3s;
    margin-left: -4px;
    margin-top: -4px;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    width: 48px; height: 48px;
    margin-left: -24px;
    margin-top: -24px;
    background: rgba(245,158,11,0.15);
    border: 2px solid var(--amber);
}

.cursor-glow {
    position: fixed;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,0.06), transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    font-size: 1.2rem;
    z-index: 90;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    backdrop-filter: blur(12px);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gradient-main);
    color: white;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(249,115,22,0.3);
}

/* ===== WORD REVEAL ANIMATION ===== */
.word-reveal {
    overflow: hidden;
    display: inline-block;
}

.word-reveal-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.word-reveal.visible .word-reveal-inner {
    transform: translateY(0);
}

/* ===== MAGNETIC BUTTON EFFECT ===== */
.btn-glow, .btn-ghost, .nav-cta {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s ease-out;
}

/* ===== SECTION DIVIDER GLOW ===== */
.section-glow {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249,115,22,0.2), rgba(59,130,246,0.2), transparent);
    margin: 0;
}

/* ===== HOVER CARD SHINE ===== */
.service-card .card-shine {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s;
    background: radial-gradient(600px circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(249,115,22,0.06), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.service-card:hover .card-shine { opacity: 1; }