/* WG Soft Tech — Layout v3 */

:root {
    --ink: #0c1222;
    --ink-2: #151d2e;
    --ink-3: #1e293b;
    --cream: #f8f6f3;
    --cream-2: #f0ece6;
    --surface: #ffffff;
    --surface-2: var(--cream);
    --surface-3: var(--cream-2);
    --border: #e8e4de;
    --border-strong: #d4cec4;

    --color-primary: #10b981;
    --color-primary-dark: #059669;
    --color-primary-light: #34d399;
    --color-accent: #10b981;
    --color-accent-2: #06b6d4;
    --color-orange: #f97316;
    --wg-green: #10b981;

    --gradient-brand: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #3b82f6 100%);
    --gradient-hero: linear-gradient(160deg, #0c1222 0%, #1a2744 35%, #0f3460 65%, #0c1222 100%);
    --gradient-text: linear-gradient(135deg, #34d399 0%, #22d3ee 45%, #60a5fa 100%);

    --color-dark: var(--ink);
    --color-dark-2: var(--ink-2);
    --color-dark-3: var(--ink-3);
    --color-text: var(--ink);
    --color-text-muted: #5c6578;
    --color-text-light: #8b95a8;
    --color-white: #ffffff;
    --color-bg: var(--cream);
    --color-border: var(--border);

    --font-display: 'Outfit', sans-serif;
    --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 3px rgba(12, 18, 34, 0.06);
    --shadow-md: 0 8px 30px rgba(12, 18, 34, 0.08);
    --shadow-lg: 0 20px 50px rgba(12, 18, 34, 0.12);
    --shadow-xl: 0 30px 70px rgba(12, 18, 34, 0.16);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.3);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (max-width: 768px) {
    body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0)); }
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition), transform var(--transition), opacity var(--transition), border-color var(--transition), box-shadow var(--transition); }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Scroll progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-brand);
    z-index: 10001;
    transition: width 0.1s linear;
}

/* Sections */
.section { padding: 96px 0; position: relative; }

.section--dark {
    background: var(--ink);
    color: white;
    position: relative;
    overflow: hidden;
}

.section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.section--accent {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.section--accent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section__header--left { text-align: left; margin-left: 0; }

.section__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.section__tag--pill { border-radius: 100px; }

.section--dark .section__tag,
.section--accent .section__tag,
.crypto .section__tag {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-primary-light);
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 16px;
}

.section__title--left { text-align: left; }

.section--dark .section__title,
.section--accent .section__title,
.crypto .section__title { color: white; }

.section__subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.section__subtitle--left { text-align: left; margin-left: 0; }

.section--dark .section__subtitle { color: var(--color-text-light); }

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-shimmer {
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-in { animation: fadeUp 0.8s ease forwards; }
.animate-in--delay { animation-delay: 0.15s; opacity: 0; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-family);
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn--primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.btn--glow { box-shadow: 0 0 30px rgba(16, 185, 129, 0.35); }

.btn--outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn--full { width: 100%; }

.btn--call {
    background: #2563eb;
    color: white;
}

.btn--call:hover { background: #1d4ed8; transform: translateY(-2px); }

.btn--whatsapp {
    background: #16a34a;
    color: white;
}

.btn--whatsapp:hover { background: #15803d; transform: translateY(-2px); }

.btn--ripple { position: relative; overflow: hidden; }

.btn--ripple::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
    transform: scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.btn--ripple:active::after { transform: scale(2.5); opacity: 1; transition: 0s; }

/* FAB */
.fab-group {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
}

.fab svg { width: 24px; height: 24px; }
.fab:hover { transform: scale(1.08); }
.fab--call { background: #2563eb; color: white; }
.fab--whatsapp { background: #16a34a; color: white; }

/* Mobile bar */
.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0));
    gap: 8px;
}

.mobile-bar__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 700;
}

.mobile-bar__btn--call { background: #eff6ff; color: #1e40af; }
.mobile-bar__btn--whatsapp { background: #f0fdf4; color: #16a34a; }
.mobile-bar__btn--contact { background: var(--ink); color: white; }

/* Header — solid white always on site-v3 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    height: var(--header-height);
    gap: 8px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo__mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.brand-logo__mark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(16, 185, 129, 0.2));
}

.brand-logo__letter {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.brand-logo__letter--w { color: white; }
.brand-logo__letter--g { color: var(--wg-green); }

.brand-logo__text { display: flex; flex-direction: column; line-height: 1.1; }

.brand-logo__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-logo__name-w { color: var(--ink); }
.brand-logo__name-g { color: var(--color-accent); }

.brand-logo__tagline {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-logo--footer .brand-logo__name-w { color: white; }
.brand-logo--footer .brand-logo__name-g { color: var(--wg-green); }
.brand-logo--footer .brand-logo__tagline { color: rgba(255, 255, 255, 0.5); }

.nav__menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav__link {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border-radius: 8px;
    transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-primary);
    background: rgba(16, 185, 129, 0.08);
}

.nav__link--cta {
    background: var(--ink);
    color: white !important;
    margin-left: 8px;
    font-weight: 600;
}

.nav__link--cta:hover {
    background: var(--ink-2);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(16, 185, 129, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero__aurora {
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 180deg at 50% 50%, transparent, rgba(16, 185, 129, 0.06), transparent, rgba(59, 130, 246, 0.05), transparent);
    animation: auroraSpin 30s linear infinite;
    opacity: 0.6;
}

@keyframes auroraSpin {
    to { transform: rotate(360deg); }
}

.hero__stars { position: absolute; inset: 0; }

.hero__star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.4;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}

.hero__orb--1 { width: 400px; height: 400px; background: #10b981; top: -10%; right: 10%; }
.hero__orb--2 { width: 300px; height: 300px; background: #f97316; bottom: 10%; left: -5%; opacity: 0.25; }
.hero__orb--3 { width: 200px; height: 200px; background: #3b82f6; top: 40%; left: 40%; opacity: 0.2; }

.hero__particles { position: absolute; inset: 0; }

.hero__particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 0.7; }
}

.hero__layout {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 48px 0 32px;
}

.hero__layout--centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
}

.hero__content--centered {
    max-width: 820px;
    width: 100%;
}

.hero__content { color: white; }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--wg-green);
    animation: pulse 2s ease infinite;
    box-shadow: 0 0 8px var(--wg-green);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto 32px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}

/* Hero bento tiles */
.hero__bento {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

.hero__bento-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    transition: all var(--transition);
    cursor: pointer;
}

.hero__bento-tile:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--tile-color, rgba(255, 255, 255, 0.3));
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.hero__bento-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.hero__bento-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.75);
}

/* Hero stats strip */
.hero__stats--strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 900px;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
}

.hero__stats--strip .stat {
    flex: 1;
    min-width: 140px;
    padding: 24px 20px;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__stats--strip .stat:last-child { border-right: none; }

.hero__stats--strip .stat:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: none;
}

.stat {
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition);
}

.stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.stat--color-1 .stat__number, .stat--color-1 .stat__plus { color: #818cf8; }
.stat--color-2 .stat__number, .stat--color-2 .stat__plus { color: #4ade80; }
.stat--color-3 .stat__number, .stat--color-3 .stat__plus { color: #fbbf24; }
.stat--color-4 .stat__number { color: #22d3ee; }

.stat__number {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1;
    display: inline;
}

.stat__plus { font-size: 1.25rem; font-weight: 700; }

.stat__label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    font-weight: 500;
}

/* Trust strip */
.trust-strip {
    background: var(--ink);
    padding: 16px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-strip__track {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trust-strip__item {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.trust-strip__dot { color: var(--wg-green); font-size: 0.6rem; }

/* About */
.about {
    background: var(--cream);
    position: relative;
}

.about__stats-band {
    background: var(--ink);
    padding: 32px 0;
    margin-bottom: 64px;
}

.about__stats-band-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.about__stats-band-inner .stat {
    flex: 1;
    min-width: 140px;
    padding: 16px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
}

.about__stats-band-inner .stat:last-child { border-right: none; }

.about__stats-band-inner .stat:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: none;
}

.about__single-col {
    max-width: 1000px;
}

.about__grid--2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about__card {
    padding: 28px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.about__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-color, var(--color-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.about__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.about__card:hover::before { transform: scaleX(1); }

.about__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--card-color, #6366f1) 12%, transparent);
    color: var(--card-color, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform var(--transition);
}

.about__card:hover .about__icon { transform: scale(1.1); }
.about__icon svg { width: 24px; height: 24px; }

.about__card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.about__card p { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; }

/* Services bento */
.services__bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.service-card--featured {
    display: flex;
    flex-direction: column;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.service-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--service-color, var(--color-primary));
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card--featured:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.service-card--featured:hover::before { opacity: 1; }

.service-card--highlight {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.12) 0%, rgba(255, 255, 255, 0.04) 50%);
    border-color: rgba(234, 179, 8, 0.25);
}

.service-card--highlight .service-card__icon {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 56px;
    height: 56px;
}

.service-card--highlight .service-card__badge { position: static; }

.service-card--highlight > h3,
.service-card--highlight > p {
    flex: 1;
}

.service-card--highlight .service-card__features--tags {
    flex: 1;
    margin-bottom: 0;
}

.service-card--highlight .service-card__actions {
    flex-shrink: 0;
    flex-direction: column;
    margin-top: 0;
}

.service-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: color-mix(in srgb, var(--service-color, #6366f1) 18%, transparent);
    color: var(--service-color, #6366f1);
}

.service-card__icon svg { width: 22px; height: 22px; }

.service-card__badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--service-color, var(--color-primary-light));
    background: color-mix(in srgb, var(--service-color, #10b981) 15%, transparent);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
    width: fit-content;
}

.service-card--featured h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.service-card--featured p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.service-card__features--tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
    list-style: none;
}

.service-card__features--tags li {
    font-size: 0.72rem;
    padding: 5px 11px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.service-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.service-card__actions .btn {
    padding: 10px 16px;
    font-size: 0.8rem;
    flex: 1;
    min-width: 0;
}

/* Crypto split layout */
.crypto {
    background: var(--ink);
    color: white;
    position: relative;
    overflow: hidden;
}

.crypto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.4), transparent);
}

.crypto::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 40% at 80% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.crypto__split {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.crypto__sidebar {
    position: sticky;
    top: calc(var(--header-height) + 32px);
}

.crypto .section__subtitle { color: rgba(255, 255, 255, 0.55); }

.crypto__sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.crypto__sidebar-actions .btn { width: 100%; justify-content: center; }

.crypto__services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.crypto__service-item {
    display: flex;
    gap: 14px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.crypto__service-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(249, 115, 22, 0.35);
    transform: translateY(-4px);
}

.crypto__service-icon { font-size: 1.6rem; flex-shrink: 0; }

.crypto__service-item strong {
    display: block;
    font-size: 0.92rem;
    color: #fdba74;
    margin-bottom: 6px;
}

.crypto__service-item p { font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); line-height: 1.55; }

/* Showcase — static 3-col masonry grid */
.showcase {
    background: var(--cream);
    overflow: hidden;
}

.showcase__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: auto;
}

.showcase__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: var(--surface);
    transition: transform var(--transition), box-shadow var(--transition);
}

.showcase__item:nth-child(1) { grid-row: span 1; }
.showcase__item:nth-child(2) { margin-top: 24px; }
.showcase__item:nth-child(4) { margin-top: -12px; }
.showcase__item:nth-child(5) { margin-top: 16px; }
.showcase__item:nth-child(6) { margin-top: -8px; }

.showcase__item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.showcase__item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase__item:nth-child(2) img,
.showcase__item:nth-child(5) img { height: 240px; }

.showcase__item:nth-child(4) img { height: 180px; }

.showcase__item:hover img { transform: scale(1.08); }

.showcase__item span {
    display: block;
    padding: 14px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    background: var(--surface);
    color: var(--color-text);
}

/* Tech stack */
.tech-stack { background: var(--surface); }

.tech-stack__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
    transition: all var(--transition);
}

.tech-pill:hover {
    border-color: var(--color-primary);
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Solutions mosaic — 4-col compact */
.solutions { background: var(--cream); }

.solutions__mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.solution-item--featured {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.solution-item--compact {
    padding: 20px 18px 20px 22px;
    border-left: 3px solid var(--sol-color, var(--color-primary));
    position: relative;
}

.solution-item--compact:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
    border-left-color: var(--sol-color, var(--color-primary));
}

.solution-item__num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--sol-color, var(--color-primary));
    opacity: 0.7;
    margin-bottom: 8px;
}

.solution-item--featured h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.solution-item--featured p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    flex: 1;
    margin-bottom: 12px;
}

.solution-item__link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: auto;
}

.solution-item__link:hover { color: var(--color-primary-dark); }

/* Security split */
.security__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.security__content p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
    line-height: 1.75;
}

.security__list { display: flex; flex-direction: column; gap: 16px; }

.security__list li {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.security__list li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
}

.security__list strong { display: block; font-size: 0.95rem; color: white; margin-bottom: 4px; }
.security__list span { font-size: 0.84rem; color: rgba(255, 255, 255, 0.5); }

.security__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
}

.security__rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(16, 185, 129, 0.2);
    animation: ringPulse 4s ease-in-out infinite;
}

.security__ring--1 { width: 280px; height: 280px; }
.security__ring--2 { width: 220px; height: 220px; animation-delay: 0.5s; border-color: rgba(59, 130, 246, 0.2); }
.security__ring--3 { width: 160px; height: 160px; animation-delay: 1s; }

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
}

.security__shield {
    position: relative;
    text-align: center;
    z-index: 2;
}

.security__shield-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(16, 185, 129, 0.4);
    margin: 0 auto 16px;
}

.security__shield-icon {
    width: 48px;
    height: 48px;
    color: var(--wg-green);
    margin: 0 auto 8px;
}

.security__shield span { font-size: 0.88rem; font-weight: 600; color: rgba(255, 255, 255, 0.7); }

/* Process timeline */
.process { background: var(--surface); }

.process__timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 48px;
}

.process__timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary), var(--color-accent-2), #8b5cf6);
    border-radius: 2px;
}

.process__step {
    position: relative;
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    padding: 0;
    background: transparent;
    border: none;
    text-align: left;
}

.process__step:last-child { margin-bottom: 0; }

.process__step-num {
    position: absolute;
    left: -48px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--step-color, var(--color-primary));
    color: white;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px var(--surface), 0 0 0 6px color-mix(in srgb, var(--step-color, #6366f1) 25%, transparent);
    z-index: 1;
}

.process__step-content {
    flex: 1;
    padding: 20px 24px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.process__step:hover .process__step-content {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: color-mix(in srgb, var(--step-color, #6366f1) 30%, transparent);
}

.process__step-content h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
}

.process__step-content p {
    font-size: 0.86rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    background: var(--gradient-brand);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.cta-banner__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.cta-banner__content p { color: rgba(255, 255, 255, 0.85); font-size: 1rem; }

.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }

.cta-banner .btn--primary {
    background: white;
    color: var(--ink);
    box-shadow: var(--shadow-lg);
}

.cta-banner .btn--primary:hover { background: #f0fdf4; }

/* Contact stacked */
.contact {
    background: var(--cream);
}

.contact--stacked .contact__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.contact__details--grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact__item {
    display: flex;
    gap: 16px;
    padding: 20px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.contact__item--link:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact__item--whatsapp:hover { border-color: #16a34a; }

.contact__item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 2px;
}

.contact__item--whatsapp svg { color: #16a34a; }

.contact__item strong { display: block; font-size: 0.82rem; color: var(--color-text-muted); margin-bottom: 2px; }
.contact__item span { font-size: 0.95rem; font-weight: 600; }

.contact__hint {
    display: block;
    font-size: 0.75rem;
    color: var(--color-primary);
    font-style: normal;
    margin-top: 2px;
}

.contact__form--full {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__group--full { grid-column: 1 / -1; }

.form__group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text);
}

.form__group input,
.form__group select,
.form__group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-family);
    font-size: 0.92rem;
    color: var(--color-text);
    background: var(--cream);
    transition: all var(--transition);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.form__group textarea { resize: vertical; min-height: 100px; }

.form__success {
    grid-column: 1 / -1;
    padding: 12px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 10px;
    color: #16a34a;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.6);
    padding-top: 64px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p { font-size: 0.88rem; line-height: 1.7; margin: 16px 0; max-width: 280px; }

.footer__contact { display: flex; flex-direction: column; gap: 8px; }

.footer__contact a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--wg-green);
}

.footer__contact a:hover { color: #86efac; }

.footer__links h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.88rem; }
.footer__links a:hover { color: var(--wg-green); }

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.82rem;
}

.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: var(--wg-green); }

/* Reveal animations */
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-up { transform: translateY(30px); }

.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed {
    opacity: 1;
    transform: translate(0);
}

.section__header.reveal-up { opacity: 0; transform: translateY(24px); transition: all 0.7s ease; }
.section__header.reveal-up.revealed { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .trust-strip__track { animation: none; }
    .hero__aurora { animation: none; }
}

/* Responsive — 1024px */
@media (max-width: 1024px) {
    .hero__bento { grid-template-columns: repeat(5, 1fr); max-width: 100%; }

    .hero__stats--strip .stat { min-width: 120px; padding: 20px 16px; }

    .about__grid--2x2 { grid-template-columns: repeat(2, 1fr); }

    .services__bento { grid-template-columns: repeat(2, 1fr); }

    .service-card--highlight {
        flex-direction: column;
        align-items: stretch;
    }

    .service-card--highlight .service-card__actions {
        flex-direction: row;
    }

    .crypto__split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .crypto__sidebar {
        position: static;
    }

    .crypto__services { grid-template-columns: repeat(2, 1fr); }

    .showcase__grid { grid-template-columns: repeat(2, 1fr); }

    .showcase__item:nth-child(n) { margin-top: 0; }

    .solutions__mosaic { grid-template-columns: repeat(2, 1fr); }

    .security__inner { grid-template-columns: 1fr; gap: 40px; }

    .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* Responsive — 768px */
@media (max-width: 768px) {
    .section { padding: 72px 0; }

    .nav__menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        margin-left: 0;
    }

    .nav__menu.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav__toggle { display: flex; }
    .nav__link { width: 100%; padding: 12px 16px; }
    .nav__link--cta { margin-left: 0; text-align: center; }

    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }

    .hero__bento {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .hero__bento-tile:nth-child(4),
    .hero__bento-tile:nth-child(5) {
        grid-column: span 1;
    }

    .hero__stats--strip {
        flex-wrap: wrap;
        border-radius: var(--radius-md);
    }

    .hero__stats--strip .stat {
        flex: 1 1 50%;
        min-width: 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero__stats--strip .stat:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero__stats--strip .stat:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .about__stats-band-inner .stat {
        flex: 1 1 50%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about__stats-band-inner .stat:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about__grid--2x2 { grid-template-columns: 1fr; }

    .services__bento { grid-template-columns: 1fr; }

    .crypto__services { grid-template-columns: 1fr; }

    .showcase__grid { grid-template-columns: 1fr; }

    .showcase__item img,
    .showcase__item:nth-child(n) img { height: 200px; }

    .solutions__mosaic { grid-template-columns: 1fr; }

    .process__timeline { padding-left: 40px; }

    .process__step-num {
        left: -40px;
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner__actions {
        justify-content: center;
        width: 100%;
    }

    .cta-banner__actions .btn { flex: 1; }

    .contact__details--grid { grid-template-columns: 1fr; }

    .contact__form--full {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .footer__grid { grid-template-columns: 1fr; }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .fab-group { bottom: 80px; right: 16px; }
    .mobile-bar { display: flex; }
}

/* Responsive — 480px */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero__title { font-size: 2rem; }

    .hero__bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__bento-tile:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
        width: 100%;
    }

    .stat__number { font-size: 1.4rem; }

    .hero__stats--strip .stat {
        flex: 1 1 100%;
        min-width: 100%;
        border-right: none !important;
    }

    .hero__stats--strip .stat:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .about__stats-band-inner .stat {
        flex: 1 1 100%;
        border-right: none !important;
    }

    .service-card__actions { flex-direction: column; }
    .service-card__actions .btn { width: 100%; }

    .crypto__sidebar-actions .btn { font-size: 0.85rem; padding: 12px 16px; }
}
