/* ============================================================
   NEXT LEVEL CRIATIVOS — Premium Dark Creative Agency
   ============================================================ */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
    --bg:           #0D0D0D;
    --bg-card:      #111111;
    --bg-card-hover:#161616;
    --purple:       #6B21C8;
    --purple-light: #7B35D4;
    --purple-glow:  rgba(107, 33, 200, 0.35);
    --gold-dark:    #B8860B;
    --gold:         #D4A520;
    --gold-light:   #F0C040;
    --gold-glow:    rgba(212, 165, 32, 0.25);
    --white:        #FFFFFF;
    --text:         #E0E0E0;
    --text-muted:   #888888;
    --font-heading: 'Bebas Neue', 'Barlow Condensed', sans-serif;
    --font-body:    'Inter', 'Manrope', sans-serif;
    --nav-height:   72px;
}

/* ---- RESET ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ---- UTILITY ---- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section__label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg);
    border: none;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn--gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn--gold:hover::before {
    opacity: 1;
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--gold-glow), 0 0 60px rgba(212, 165, 32, 0.15);
}

.btn--gold span,
.btn--gold svg {
    position: relative;
    z-index: 1;
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--purple);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn--outline:hover {
    border-color: var(--purple-light);
    background: rgba(107, 33, 200, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--purple-glow);
}

.btn--lg {
    padding: 20px 48px;
    font-size: 16px;
}

/* ---- ANIMATIONS ---- */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.anim-delay-1 { transition-delay: 0.15s; }
.anim-delay-2 { transition-delay: 0.3s; }
.anim-delay-3 { transition-delay: 0.45s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(13, 13, 13, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 33, 200, 0.1);
    transition: background 0.3s, border-color 0.3s;
}

.nav--scrolled {
    background: rgba(13, 13, 13, 0.95);
    border-bottom-color: rgba(107, 33, 200, 0.25);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 4px;
    color: var(--white);
    opacity: 0;
    animation: logoTextIn 0.6s ease-out 1.2s forwards;
}

/* ---- Logo Entrance Animation ---- */
.logo-n {
    opacity: 0;
    animation: logoNIn 0.5s ease-out 0.3s forwards;
}

.logo-bolt {
    opacity: 0;
    transform-origin: center;
    animation: logoBoltStrike 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
}

.logo-bolt-glow {
    opacity: 0;
    animation: logoBoltFlash 0.8s ease-out 0.85s forwards;
}

@keyframes logoNIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    60% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoBoltStrike {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.5);
    }
    30% {
        opacity: 0.9;
    }
    60% {
        transform: translateY(2px) scale(1.1);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0) scale(1);
    }
}

@keyframes logoBoltFlash {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
    }
}

@keyframes logoTextIn {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav__links {
    display: flex;
    gap: 36px;
}

.nav__link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple);
    transition: width 0.3s;
}

.nav__link:hover {
    color: var(--white);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta-btn {
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: all 0.3s;
}

.nav__cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--gold-glow);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.nav__hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu__links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 36px;
    letter-spacing: 6px;
    color: var(--text);
    transition: color 0.3s;
}

.mobile-menu__link:hover {
    color: var(--gold);
}

.mobile-menu__link--cta {
    color: var(--gold);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* ---- Hero Lightning Layer (CSS Animated Bolts) ---- */
.hero__lightning-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__bolt {
    position: absolute;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(123, 53, 212, 0.1) 10%,
        rgba(212, 165, 32, 0.6) 30%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(212, 165, 32, 0.6) 70%,
        rgba(123, 53, 212, 0.1) 90%,
        transparent 100%
    );
    opacity: 0;
    filter: blur(0.5px);
    animation: boltFlash var(--bolt-duration, 4s) var(--bolt-delay, 0s) infinite;
}

.hero__bolt::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: inherit;
    filter: blur(8px);
    opacity: 0.5;
}

.hero__bolt::after {
    content: '';
    position: absolute;
    inset: -12px;
    background: inherit;
    filter: blur(20px);
    opacity: 0.3;
}

.hero__bolt--1 {
    left: 12%;
    top: -5%;
    height: 65%;
    transform: rotate(8deg);
    --bolt-duration: 5s;
    --bolt-delay: 0.5s;
}

.hero__bolt--2 {
    right: 15%;
    top: -8%;
    height: 55%;
    transform: rotate(-6deg);
    --bolt-duration: 6s;
    --bolt-delay: 2.2s;
}

.hero__bolt--3 {
    left: 35%;
    top: -3%;
    height: 45%;
    width: 2px;
    transform: rotate(3deg);
    --bolt-duration: 4.5s;
    --bolt-delay: 1s;
}

.hero__bolt--4 {
    right: 30%;
    top: -10%;
    height: 70%;
    width: 2px;
    transform: rotate(-10deg);
    --bolt-duration: 7s;
    --bolt-delay: 3.5s;
}

.hero__bolt--5 {
    left: 55%;
    top: -5%;
    height: 50%;
    width: 2px;
    transform: rotate(12deg);
    --bolt-duration: 5.5s;
    --bolt-delay: 4.5s;
}

@keyframes boltFlash {
    0%, 100% {
        opacity: 0;
        transform: scaleY(0.6) var(--bolt-rotate, rotate(0deg));
    }
    2% {
        opacity: 0.9;
        transform: scaleY(1);
    }
    4% {
        opacity: 0.2;
    }
    5% {
        opacity: 1;
    }
    8% {
        opacity: 0.7;
    }
    12% {
        opacity: 0;
    }
}

/* Energy Rings */
.hero__energy-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(107, 33, 200, 0.15);
    pointer-events: none;
    z-index: 0;
}

.hero__energy-ring--1 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: energyPulse 6s ease-in-out infinite;
}

.hero__energy-ring--2 {
    width: 750px;
    height: 750px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: energyPulse 8s ease-in-out 2s infinite;
    border-color: rgba(212, 165, 32, 0.08);
}

@keyframes energyPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(107, 33, 200, 0.18) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 30%, rgba(212, 165, 32, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 60%, rgba(107, 33, 200, 0.08) 0%, transparent 40%),
                linear-gradient(180deg, rgba(13, 13, 13, 0.15) 0%, rgba(13, 13, 13, 0.75) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero__label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 9vw, 110px);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: 4px;
}

.hero__title-line {
    display: block;
}

.hero__title-line--gradient {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 30%, var(--purple-light) 70%, var(--purple) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50%      { background-position: 200% center; }
}

.hero__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    max-width: 650px;
    margin: 0 auto 40px;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero decorative angular shapes */
.hero__deco {
    position: absolute;
    z-index: 0;
}

.hero__deco--left {
    bottom: 10%;
    left: -60px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(107, 33, 200, 0.15);
    transform: rotate(45deg);
}

.hero__deco--right {
    top: 20%;
    right: -40px;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(212, 165, 32, 0.1);
    transform: rotate(30deg);
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero__scroll-indicator span {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--text-muted);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--purple), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50%      { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    background: var(--bg);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(107, 33, 200, 0.15);
    padding: 40px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(107, 33, 200, 0.5);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
}

.service-card__glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--purple-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

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

.service-card__icon {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 26px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.service-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ============================================================
   RESULTS
   ============================================================ */
.results {
    background: linear-gradient(180deg, var(--bg) 0%, #0a0a0a 50%, var(--bg) 100%);
    overflow: hidden;
}

.results__bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, var(--purple-glow), transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.results__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.result-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.result-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--purple));
}

.result-card__prefix,
.result-card__suffix {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--gold-light);
    vertical-align: top;
}

.result-card__number {
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
    display: inline-block;
}

.result-card__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    background: var(--bg);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step {
    flex: 1;
    max-width: 340px;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid rgba(107, 33, 200, 0.15);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    position: relative;
    transition: border-color 0.4s, transform 0.4s;
}

.step:hover {
    border-color: rgba(212, 165, 32, 0.4);
    transform: translateY(-4px);
}

.step__number {
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--purple);
    opacity: 0.25;
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}

.step__icon {
    margin-bottom: 20px;
}

.step__title {
    font-family: var(--font-heading);
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 12px;
}

.step__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.step__connector {
    flex-shrink: 0;
    margin: 0 -8px;
    opacity: 0.6;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio {
    background: linear-gradient(180deg, var(--bg) 0%, #080808 100%);
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    border: 1px solid rgba(107, 33, 200, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover {
    border-color: rgba(107, 33, 200, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(107, 33, 200, 0.15);
}

.portfolio-card__image {
    aspect-ratio: 1;
    overflow: hidden;
}

.portfolio-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-card__image img {
    transform: scale(1.08);
}

.portfolio-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-card__overlay {
    transform: translateY(0);
}

.portfolio-card__tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--bg);
    background: var(--gold);
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    margin-bottom: 8px;
}

.portfolio-card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--white);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
    padding: 140px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple) 0%, rgba(107, 33, 200, 0.4) 30%, var(--bg) 70%);
    opacity: 0.2;
}

.cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(44px, 7vw, 88px);
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 3px;
}

.cta__desc {
    font-size: 18px;
    color: var(--text);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta__bolt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.cta__bolt--left { left: 5%; }
.cta__bolt--right { right: 5%; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #080808;
    border-top: 1px solid rgba(107, 33, 200, 0.1);
    padding: 60px 0 40px;
}

.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 6px;
    color: var(--text-muted);
}

.footer__links {
    display: flex;
    gap: 32px;
}

.footer__links a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__divider {
    width: 100%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107, 33, 200, 0.25), transparent);
}

.footer__copy {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
    opacity: 0.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        flex-direction: column;
        gap: 20px;
    }

    .step { max-width: 100%; }

    .step__connector {
        transform: rotate(90deg);
        margin: -8px 0;
    }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }

    .nav__links,
    .nav__cta-btn {
        display: none;
    }

    .nav__hamburger { display: flex; }

    .hero__title {
        font-size: clamp(36px, 12vw, 64px);
    }

    .hero__subtitle {
        font-size: 15px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .results__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .result-card__number {
        font-size: 48px;
    }

    .portfolio__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cta__title {
        font-size: clamp(32px, 10vw, 56px);
    }

    .cta__bolt { display: none; }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__deco { display: none; }

    /* Make lightning bolts more visible on mobile */
    .hero__bolt {
        width: 3px;
    }

    .hero__bolt--1 {
        left: 8%;
        height: 60%;
    }

    .hero__bolt--2 {
        right: 10%;
        height: 50%;
    }

    .hero__bolt--3 {
        left: 25%;
        height: 40%;
    }

    .hero__bolt--4 {
        right: 22%;
        height: 55%;
    }

    .hero__bolt--5 {
        left: 60%;
        height: 45%;
    }

    .hero__energy-ring--1 {
        width: 320px;
        height: 320px;
    }

    .hero__energy-ring--2 {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 480px) {
    .portfolio__grid {
        grid-template-columns: 1fr;
    }

    .results__grid {
        grid-template-columns: 1fr;
    }
}
