/* ========================================
   VENDE - Futuristic / Tech Style
   Colors: #FFD100 (Neon Yellow) / #000000 (Black)
   Typography: Bebas Neue / Anton / Montserrat Bold
   Style: Futuristic / Cyber / Neon / Tech
   ======================================== */
:root {
    --color-bg: #000000;
    --color-bg-alt: #050505;
    --color-bg-card: rgba(10, 10, 10, 0.85);
    --color-bg-card-hover: rgba(18, 18, 12, 0.9);
    --color-border: rgba(255, 209, 0, 0.08);
    --color-border-hover: rgba(255, 209, 0, 0.3);
    --color-text: #ffffff;
    --color-text-muted: #aaaaaa;
    --color-text-dim: #555555;
    --color-primary: #FFD100;
    --color-primary-light: #FFE04D;
    --color-primary-dark: #E6BC00;
    --color-accent: #FFD100;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(255, 209, 0, 0.12), 0 0 60px rgba(255, 209, 0, 0.06);
    --shadow-glow-strong: 0 0 40px rgba(255, 209, 0, 0.2), 0 0 80px rgba(255, 209, 0, 0.1);
    --shadow-glow-cyan: 0 0 30px rgba(255, 209, 0, 0.1), 0 0 60px rgba(255, 209, 0, 0.05);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --font-heading: 'Anton', 'Bebas Neue', sans-serif;
    --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 12px;
}

/* ========================================
   Utilities
   ======================================== */
.highlight-text {
    color: var(--color-primary);
    position: relative;
    text-shadow: 0 0 30px rgba(255, 209, 0, 0.3);
}

/* ========================================
   Accessibility - Focus States
   ======================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ========================================
   Accessibility - Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero__subtitle { visibility: visible !important; }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
}

.btn--primary {
    background: var(--color-primary);
    color: #000000 !important;
    box-shadow: 0 0 20px rgba(255, 209, 0, 0.3), 0 0 40px rgba(255, 209, 0, 0.1);
    border: 1px solid rgba(255, 209, 0, 0.5);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 209, 0, 0.5), 0 0 60px rgba(255, 209, 0, 0.2);
    background: var(--color-primary-light);
}

.btn--outline {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid rgba(255, 209, 0, 0.3);
}

.btn--outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(255, 209, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 209, 0, 0.15), inset 0 0 20px rgba(255, 209, 0, 0.05);
}

.btn--sm { padding: 5px 12px; font-size: 0.78rem; }
.btn--lg { padding: 10px 22px; font-size: 0.9rem; }
.btn--block { width: 100%; }

/* ========================================
   Navbar
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar--scrolled {
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 209, 0, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 1px 0;
}

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

.navbar__logo {
    display: flex;
    align-items: center;
}

.logo__img {
    height: 48px;
    width: auto;
}

.logo__img--footer {
    height: 44px;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.navbar__links a {
    padding: 4px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-text-muted);
    border-radius: var(--radius-sm);
    letter-spacing: 0.08em;
    position: relative;
}

.navbar__links a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(255, 209, 0, 0.3);
}

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

.navbar__toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 0;
    transition: var(--transition);
    box-shadow: 0 0 6px rgba(255, 209, 0, 0.4);
}

.navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   Hero
   ======================================== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 4px 0 2px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 209, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 209, 0, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 100%);
    animation: gridPulse 4s ease-in-out infinite;
}

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

.hero__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
}

.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -300px;
    right: -150px;
    opacity: 0.07;
}

.hero__glow--2 {
    width: 500px;
    height: 500px;
    background: var(--color-accent);
    bottom: -250px;
    left: -150px;
    opacity: 0.05;
}

.hero__inner {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero__logo {
    margin-bottom: 4px;
    animation: fadeInUp 0.5s ease-out;
}

.hero__logo-img {
    height: 160px;
    width: auto;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: rgba(255, 209, 0, 0.04);
    border: 1px solid rgba(255, 209, 0, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 8px;
    letter-spacing: 0.15em;
    animation: fadeInUp 0.6s ease-out;
    text-shadow: 0 0 10px rgba(255, 209, 0, 0.3);
}

.badge__dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 209, 0, 0.6);
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px rgba(255, 209, 0, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 12px rgba(255, 209, 0, 0.8), 0 0 24px rgba(255, 209, 0, 0.3); }
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.8vw, 3.2rem);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
    text-transform: uppercase;
}

.hero__subtitle {
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    color: var(--color-text-muted);
    max-width: 520px;
    margin: 0 auto 10px;
    line-height: 1.55;
    font-weight: 500;
    min-height: 3em;
    visibility: hidden;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero__stats {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    padding: 6px 16px;
    background: rgba(255, 209, 0, 0.02);
    border: 1px solid rgba(255, 209, 0, 0.08);
    border-radius: var(--radius-sm);
    margin: 0 auto;
}

.stat { text-align: center; }

.stat__number {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--color-primary);
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 20px rgba(255, 209, 0, 0.3);
}

.stat__plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
}

.stat__label {
    display: block;
    font-size: 0.7rem;
    color: var(--color-accent);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.stat__divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(255, 209, 0, 0.3), transparent);
}

.hero__scroll {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.scroll__line {
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Section Headers
   ======================================== */
.section__header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 18px;
}

.section__tag {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(255, 209, 0, 0.04);
    border: 1px solid rgba(255, 209, 0, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 6px;
    font-family: var(--font-main);
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.section__desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-weight: 500;
}

/* ========================================
   Services
   ======================================== */
.services {
    padding: 28px 0;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 209, 0, 0.2), transparent);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
    align-items: start;
}

.pricing__grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 780px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing__grid--two .pricing-card {
    display: flex;
    flex-direction: column;
}

.pricing__grid--two .pricing-card__features {
    flex: 1;
}

.pricing__grid--two .pricing-card .btn {
    margin-top: auto;
}

.pricing-card {
    position: relative;
    padding: 14px 14px;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 209, 0, 0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-cyan);
    border-color: rgba(255, 209, 0, 0.15);
}

.pricing-card--featured {
    border-color: rgba(255, 209, 0, 0.2);
    background: rgba(255, 209, 0, 0.02);
    box-shadow: var(--shadow-glow);
    padding-top: 22px;
}

.pricing-card--featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-strong);
}

.pricing-card__popular {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary-dark);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(255, 209, 0, 0.45), 0 0 0 3px rgba(0, 0, 0, 0.6);
    line-height: 1;
    z-index: 2;
}

.pricing-card__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 209, 0, 0.06);
    border: 1px solid rgba(255, 209, 0, 0.12);
    border-radius: var(--radius-sm);
    color: var(--color-accent);
    margin-bottom: 6px;
}

.pricing-card--featured .pricing-card__icon {
    background: rgba(255, 209, 0, 0.1);
    border-color: rgba(255, 209, 0, 0.25);
    color: var(--color-primary);
    box-shadow: 0 0 15px rgba(255, 209, 0, 0.15);
}

.pricing-card__header { margin-bottom: 6px; }

.pricing-card__name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 0.08em;
    color: var(--color-accent);
}

.pricing-card--featured .pricing-card__name {
    color: var(--color-primary);
}

.pricing-card__desc {
    font-size: 0.83rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 209, 0, 0.08);
}

.pricing-card--featured .pricing-card__price {
    border-bottom-color: rgba(255, 209, 0, 0.1);
}

.price__currency {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
}

.price__amount {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--color-text);
    text-shadow: 0 0 20px rgba(255, 209, 0, 0.15);
}

.price__period {
    font-size: 0.83rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
}

.feature--included svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.pricing-card--featured .feature--included svg {
    color: var(--color-primary);
}

.feature--excluded {
    color: var(--color-text-dim);
}

.feature--excluded svg {
    color: var(--color-text-dim);
    flex-shrink: 0;
}

.pricing__note {
    text-align: center;
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    padding: 7px 12px;
    background: rgba(255, 209, 0, 0.03);
    border: 1px solid rgba(255, 209, 0, 0.08);
    border-radius: var(--radius-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
}

/* ========================================
   Portfolio
   ======================================== */
.portfolio { padding: 28px 0; }

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}

.portfolio-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 209, 0, 0.06);
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow-cyan);
    border-color: rgba(255, 209, 0, 0.2);
}

.portfolio-card__img {
    height: 140px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 10px;
}

.portfolio-card__overlay {
    position: relative;
    z-index: 1;
}

.portfolio-card__tag {
    padding: 2px 8px;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 209, 0, 0.2);
}

.portfolio-card__info { padding: 10px 12px; }

.portfolio-card__info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.portfolio-card__info p {
    font-size: 0.83rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ========================================
   Process
   ======================================== */
.process {
    padding: 28px 0;
    background: var(--color-bg-alt);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 209, 0, 0.2), transparent);
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.process-step {
    text-align: center;
    padding: 14px 12px;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 209, 0, 0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
}

.process-step:hover {
    border-color: rgba(255, 209, 0, 0.15);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-cyan);
}

.process-step__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 4px;
    line-height: 1;
    opacity: 0.6;
    text-shadow: 0 0 20px rgba(255, 209, 0, 0.3);
}

.process-step__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 4px;
    letter-spacing: 0.06em;
}

.process-step__desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-weight: 500;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
    padding: 28px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 209, 0, 0.15), transparent);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
}

.testimonial-card {
    padding: 14px;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 209, 0, 0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    border-color: rgba(255, 209, 0, 0.15);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-cyan);
}

.testimonial-card__stars {
    display: flex;
    gap: 3px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.testimonial-card__text {
    font-size: 0.92rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 500;
    border-left: 2px solid var(--color-accent);
    padding-left: 10px;
}

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

.author__avatar {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #000;
    flex-shrink: 0;
}

.author__name {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
}

.author__role {
    display: block;
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ========================================
   CTA
   ======================================== */
.cta {
    padding: 24px 0;
    background: var(--color-bg-alt);
}

.cta__inner {
    position: relative;
    text-align: center;
    padding: 22px 18px;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 209, 0, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-accent), transparent);
}

.cta__glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(255, 209, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 8px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cta__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    font-weight: 500;
}

.cta__actions { position: relative; }

/* ========================================
   Contact
   ======================================== */
.contact {
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 209, 0, 0.2), transparent);
}

.contact__bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 209, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Form Card */
.contact__card {
    position: relative;
    max-width: 700px;
    margin: 0 auto 16px;
    padding: 16px;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 209, 0, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.contact__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.contact__card-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 209, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Form Layout */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.form__group {
    position: relative;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
    width: 100%;
    padding: 16px 12px 6px;
    background: rgba(255, 209, 0, 0.02);
    border: 1px solid rgba(255, 209, 0, 0.06);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    outline: none;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
    color: transparent;
}

.contact__form label {
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-dim);
    pointer-events: none;
    transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left top;
}

/* Floating label active */
.contact__form input:focus ~ label,
.contact__form input:not(:placeholder-shown) ~ label,
.contact__form textarea:focus ~ label,
.contact__form textarea:not(:placeholder-shown) ~ label,
.contact__form select:focus ~ label,
.contact__form select.has-value ~ label {
    top: 4px;
    font-size: 0.62rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-shadow: 0 0 8px rgba(255, 209, 0, 0.3);
}

/* Animated underline */
.form__line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 209, 0, 0.4);
}

.contact__form input:focus ~ .form__line,
.contact__form select:focus ~ .form__line,
.contact__form textarea:focus ~ .form__line {
    width: 100%;
}

.contact__form select {
    cursor: pointer;
    color: var(--color-text);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FFD100' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-color: rgba(255, 209, 0, 0.02);
    padding-right: 32px;
}

.contact__form select option {
    background: #111111;
    color: var(--color-text);
}

.contact__form input:hover,
.contact__form select:hover,
.contact__form textarea:hover {
    background: rgba(255, 209, 0, 0.04);
    border-color: rgba(255, 209, 0, 0.12);
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
    background: rgba(255, 209, 0, 0.05);
    border-color: rgba(255, 209, 0, 0.2);
}

.contact__form textarea {
    resize: vertical;
    min-height: 80px;
}

.contact__form .btn {
    margin-top: 4px;
}

/* Info Cards Grid */
.contact__info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 700px;
    margin: 0 auto 12px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 209, 0, 0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(255, 209, 0, 0.15);
    box-shadow: var(--shadow-glow);
}

.contact-info-card__icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 209, 0, 0.06);
    border: 1px solid rgba(255, 209, 0, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-info-card__label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1px;
}

.contact-info-card__value {
    display: block;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Social centered */
.contact__social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 209, 0, 0.03);
    border: 1px solid rgba(255, 209, 0, 0.08);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    transition: var(--transition);
}

.social-link:hover {
    color: #000;
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 209, 0, 0.3);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 18px 0 10px;
    background: var(--color-bg-alt);
    border-top: 1px solid rgba(255, 209, 0, 0.08);
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__brand p {
    font-size: 0.83rem;
    color: var(--color-text-muted);
    margin-top: 8px;
    max-width: 320px;
    line-height: 1.6;
    font-weight: 500;
}

.footer__nap {
    margin-top: 10px;
    font-style: normal;
    font-size: 0.78rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-weight: 500;
}

.footer__nap a {
    color: var(--color-text-muted);
    transition: var(--transition);
}

.footer__nap a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 8px rgba(255, 209, 0, 0.3);
}

.footer__links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

.footer__links a {
    display: block;
    padding: 2px 0;
    font-size: 0.83rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.footer__links a:hover {
    color: var(--color-primary);
    text-shadow: 0 0 8px rgba(255, 209, 0, 0.3);
}

.footer__bottom {
    padding-top: 10px;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.75rem;
    color: var(--color-text-dim);
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* ========================================
   Floating WhatsApp CTA
   ======================================== */
.whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9997;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 4px rgba(37, 211, 102, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5), 0 0 0 6px rgba(37, 211, 102, 0.2);
    color: #fff;
}

.contact-info-card {
    color: inherit;
}

/* ========================================
   EFFECTS - Scanlines
   ======================================== */
.scanlines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
}

/* ========================================
   EFFECTS - Particles Canvas
   ======================================== */
#particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   EFFECTS - Glitch Title
   ======================================== */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch::before {
    color: var(--color-accent);
    z-index: -1;
    animation: glitch-1 4s infinite linear alternate-reverse;
}

.glitch::after {
    color: var(--color-primary);
    z-index: -2;
    animation: glitch-2 4s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0%, 92% { opacity: 0; transform: none; }
    93% { opacity: 0.8; transform: translate(3px, -2px); clip-path: inset(20% 0 30% 0); }
    94% { opacity: 0; transform: none; }
    96% { opacity: 0.6; transform: translate(-3px, 2px); clip-path: inset(50% 0 10% 0); }
    97%, 100% { opacity: 0; transform: none; }
}

@keyframes glitch-2 {
    0%, 94% { opacity: 0; transform: none; }
    95% { opacity: 0.7; transform: translate(-3px, 2px); clip-path: inset(40% 0 20% 0); }
    96% { opacity: 0; transform: none; }
    98% { opacity: 0.5; transform: translate(2px, -1px); clip-path: inset(10% 0 60% 0); }
    99%, 100% { opacity: 0; transform: none; }
}

/* ========================================
   EFFECTS - Animated border cards
   ======================================== */
.process-step,
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.pricing-card {
    position: relative;
    overflow: visible;
}

.process-step::after,
.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 209, 0, 0.15) 50%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.process-step:hover::after,
.testimonial-card:hover::after {
    opacity: 1;
    animation: borderShine 2s linear infinite;
}

@keyframes borderShine {
    0% { background: linear-gradient(135deg, transparent 20%, rgba(255, 209, 0, 0.2) 30%, transparent 40%); }
    50% { background: linear-gradient(135deg, transparent 50%, rgba(255, 209, 0, 0.2) 60%, transparent 70%); }
    100% { background: linear-gradient(135deg, transparent 80%, rgba(255, 209, 0, 0.2) 90%, transparent 100%); }
}

/* ========================================
   EFFECTS - Neon button pulse
   ======================================== */
.btn--primary {
    animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 209, 0, 0.3), 0 0 40px rgba(255, 209, 0, 0.1); }
    50% { box-shadow: 0 0 30px rgba(255, 209, 0, 0.5), 0 0 60px rgba(255, 209, 0, 0.2), 0 0 90px rgba(255, 209, 0, 0.05); }
}

/* ========================================
   EFFECTS - Floating badge animation
   ======================================== */
.hero__badge {
    animation: fadeInUp 0.6s ease-out, badgeFloat 3s ease-in-out infinite 1s;
}

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

/* ========================================
   EFFECTS - Section tag flicker
   ======================================== */
.section__tag {
    animation: tagFlicker 5s ease-in-out infinite;
}

@keyframes tagFlicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.4; }
    94% { opacity: 1; }
    96% { opacity: 0.6; }
    97% { opacity: 1; }
}

/* ========================================
   EFFECTS - Stats counter glow
   ======================================== */
.hero__stats {
    position: relative;
}

.hero__stats::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 209, 0, 0.15), rgba(255, 209, 0, 0.15), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: statsBorderMove 4s linear infinite;
}

@keyframes statsBorderMove {
    0% { background: linear-gradient(90deg, transparent, rgba(255, 209, 0, 0.2), transparent, transparent); }
    33% { background: linear-gradient(90deg, transparent, transparent, rgba(255, 209, 0, 0.2), transparent); }
    66% { background: linear-gradient(90deg, transparent, transparent, transparent, rgba(255, 209, 0, 0.2)); }
    100% { background: linear-gradient(90deg, rgba(255, 209, 0, 0.2), transparent, transparent, transparent); }
}

/* ========================================
   EFFECTS - CTA glow pulse
   ======================================== */
.cta__inner::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), var(--color-primary), transparent);
    animation: ctaLineGlow 3s ease-in-out infinite;
}

@keyframes ctaLineGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ========================================
   EFFECTS - Typing cursor on subtitle
   ======================================== */
.hero__subtitle::after {
    content: '|';
    color: var(--color-accent);
    animation: blink 1s step-end infinite;
    font-weight: 300;
}

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

/* ========================================
   Animations (Scroll Reveal)
   ======================================== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .pricing-card--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    .navbar__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(5, 5, 8, 0.98);
        border-left: 1px solid rgba(255, 209, 0, 0.1);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 56px 14px 16px;
        gap: 2px;
        transition: right 0.3s ease;
        z-index: 999;
        backdrop-filter: blur(20px);
    }

    .navbar__links.active { right: 0; }

    .navbar__links a {
        padding: 9px 10px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }

    .navbar__toggle {
        display: flex;
        z-index: 1001;
    }

    .hero__logo-img {
        height: 110px;
    }

    .hero__title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

    .hero__actions { flex-direction: column; gap: 8px; }
    .hero__stats { gap: 10px; padding: 5px 10px; }
    .stat__number { font-size: 1.5rem; }

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

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

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pricing__grid,
    .pricing__grid--two {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

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

@media (max-width: 480px) {
    .container { padding: 0 10px; }
    .hero { padding: 14px 0 6px; }

    .hero__logo-img { height: 72px; }

    .services, .pricing, .portfolio, .process, .testimonials, .contact {
        padding: 20px 0;
    }

    .portfolio__grid, .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .process__grid { grid-template-columns: 1fr 1fr; }
    .pricing-card { padding: 12px 10px; }
    .cta__inner { padding: 16px 10px; }
    .cta { padding: 18px 0; }
    .footer { padding: 14px 0 8px; }
    .logo__img { height: 36px; }
}
