/* ===== NODYX DESIGN SYSTEM — LIGHT FUTURISTIC ===== */
:root {
    --orange: #E8913A;
    --orange-light: #F0A050;
    --orange-dark: #D07A28;
    --orange-glow: rgba(232, 145, 58, 0.18);

    --teal: #0ABFAD;
    --teal-light: #22D9C7;
    --teal-dark: #089E8E;
    --teal-glow: rgba(10, 191, 173, 0.10);

    --accent: #6C5CE7;
    --accent-light: #A29BFE;
    --accent-glow: rgba(108, 92, 231, 0.10);

    --bg: #F4F7FA;
    --bg-secondary: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FAFC;
    --bg-input: #F0F3F8;
    --bg-glass: rgba(255, 255, 255, 0.72);

    --text: #1A2332;
    --text-secondary: #5B6B7D;
    --text-muted: #94A3B8;

    --border: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(232, 145, 58, 0.25);
    --border-teal: rgba(10, 191, 173, 0.18);
    --border-strong: rgba(0, 0, 0, 0.10);

    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.10);
    --shadow-glow: 0 0 40px rgba(10, 191, 173, 0.12);

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 72px;
    --container: 1200px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'SF Mono', 'Fira Code', 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --bg-transparent: rgba(244, 247, 250, 0.65);
    --bg-secondary-transparent: rgba(255, 255, 255, 0.65);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.teal-text { color: var(--teal); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
    border: 1.5px solid transparent;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn--primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px var(--orange-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 145, 58, 0.30);
}

.btn--outline {
    border-color: var(--border-strong);
    color: var(--text);
    background: var(--bg-card);
}

.btn--outline:hover {
    border-color: var(--teal);
    background: var(--teal-glow);
    color: var(--teal-dark);
}

.btn--teal {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px var(--teal-glow);
}

.btn--teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(10, 191, 173, 0.25);
}

.btn--ghost {
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
}

.btn--ghost:hover { color: var(--text); background: var(--bg-input); }

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; border-radius: var(--radius-sm); }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn--icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-sm);
}

.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
}

/* ===== TOPBAR ===== */
.topbar {
    background: #1A2332;
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    padding: 0.5rem 0;
    position: relative;
    z-index: 1001;
}

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

.topbar__left,
.topbar__right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
    font-weight: 500;
}

.topbar__item:hover { color: var(--teal-light); }
.topbar__item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    background: transparent;
    border-bottom: none;
    padding: 0;
}

.header .nav {
    max-width: var(--container);
    margin: 0 auto;
    background: rgba(22, 33, 50, 0.92);
    border-radius: var(--radius-full);
    padding: 0.1rem 2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.05);
}

.header.scrolled {
    background: transparent;
}

.header.scrolled .nav {
    background: rgba(22, 33, 50, 0.98);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 0 12px rgba(10, 191, 173, 0.08);
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
    border-color: rgba(10, 191, 173, 0.12);
}

.header .nav__link {
    color: rgba(255,255,255,0.7);
}

.header .nav__link:hover,
.header .nav__link.active {
    color: #fff;
}

.header .nav__toggle span {
    background: rgba(255,255,255,0.8);
}

.header--hidden {
    transform: translateY(-100%);
}


.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 1001;
}

.nav__logo svg,
.nav__logo-img {
    height: 44px;
    width: auto;
}


.nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__link {
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: var(--text);
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--teal));
    border-radius: 2px;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn--login {
    padding: 0.5rem 1.4rem;
    font-size: 0.88rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--teal);
    color: var(--teal);
    font-weight: 600;
    background: transparent;
}

.btn--login:hover {
    background: var(--teal);
    color: #fff;
}

.btn--register {
    padding: 0.5rem 1.4rem;
    font-size: 0.88rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-weight: 600;
    border: 2px solid transparent;
}

.btn--register:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--orange-glow);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.nav__close { display: none; }

/* ===== HERO ===== */
.hero {
    position: relative;
    z-index: 1;
    padding: 4rem 0 3rem;
    overflow: hidden;
    background: var(--bg-secondary);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 480px;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: clamp(2.2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text);
}

.hero__description {
    font-size: 1.08rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero__logo-showcase {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__logo-main {
    width: 180px;
    height: 180px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 40px rgba(10, 191, 173, 0.3)) drop-shadow(0 0 80px rgba(108, 92, 231, 0.15));
    animation: heroLogoFloat 6s ease-in-out infinite;
}

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

.hero__orb {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero__orb--1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    top: 10%;
    right: 5%;
    opacity: 0.7;
    animation: orbFloat 8s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(10, 191, 173, 0.4);
}

.hero__orb--2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    bottom: 15%;
    left: 5%;
    opacity: 0.7;
    animation: orbFloat 7s ease-in-out infinite 1s;
    box-shadow: 0 0 25px rgba(232, 145, 58, 0.4);
}

.hero__orb--3 {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    top: 25%;
    left: 10%;
    opacity: 0.6;
    animation: orbFloat 9s ease-in-out infinite 2s;
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
}

.hero__orb--4 {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--teal-light), var(--accent-light));
    bottom: 8%;
    right: 15%;
    opacity: 0.5;
    animation: orbFloat 10s ease-in-out infinite 0.5s;
    box-shadow: 0 0 20px rgba(10, 191, 173, 0.3);
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-15px) translateX(8px); }
    50% { transform: translateY(-5px) translateX(-5px); }
    75% { transform: translateY(-20px) translateX(3px); }
}

.hero__ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    z-index: 0;
}

.hero__ring--1 {
    width: 280px;
    height: 280px;
    border-color: rgba(10, 191, 173, 0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 4s ease-in-out infinite;
}

.hero__ring--2 {
    width: 350px;
    height: 350px;
    border-color: rgba(108, 92, 231, 0.08);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 5s ease-in-out infinite 1s;
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

.hero__particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    z-index: 1;
}

.hero__particle--1 {
    background: var(--teal);
    top: 15%;
    left: 30%;
    animation: particleDrift 12s linear infinite;
}

.hero__particle--2 {
    background: var(--orange);
    top: 70%;
    right: 25%;
    animation: particleDrift 10s linear infinite 2s;
}

.hero__particle--3 {
    background: var(--accent);
    bottom: 25%;
    left: 20%;
    animation: particleDrift 14s linear infinite 4s;
}

.hero__particle--4 {
    background: var(--teal-light);
    top: 40%;
    right: 8%;
    width: 4px;
    height: 4px;
    animation: particleDrift 11s linear infinite 1s;
}

.hero__particle--5 {
    background: var(--orange-light);
    top: 60%;
    left: 40%;
    width: 5px;
    height: 5px;
    animation: particleDrift 13s linear infinite 3s;
}

@keyframes particleDrift {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    10% { opacity: 1; transform: translateY(-10px) scale(1); }
    90% { opacity: 1; transform: translateY(-60px) scale(1); }
    100% { opacity: 0; transform: translateY(-70px) scale(0.5); }
}

.hero__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero__stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; position: relative; z-index: 1; }

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1.1rem;
    background: linear-gradient(135deg, var(--teal-glow), var(--accent-glow));
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}

.section__title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section__description {
    font-size: 1.08rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

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

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

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--border-teal);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-glow), rgba(10, 191, 173, 0.05));
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    color: var(--teal);
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px var(--teal-glow);
}

.service-card__icon svg { width: 24px; height: 24px; }

.service-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.service-card__text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.service-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.service-card__features li {
    font-size: 0.86rem;
    color: var(--text-secondary);
    padding-left: 1.2rem;
    position: relative;
    font-weight: 500;
}

.service-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    border-radius: 50%;
}

/* ===== INFRASTRUCTURE ===== */
.infra {
    background: var(--bg-secondary-transparent);
    position: relative;
}

.infra__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.infra__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
}

.infra__card:hover {
    border-color: var(--border-teal);
    box-shadow: 0 4px 20px rgba(10, 191, 173, 0.08);
    transform: translateY(-2px);
}

.infra__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 191, 173, 0.08);
    border-radius: 10px;
    margin-bottom: 1rem;
    color: var(--teal);
}

.infra__icon svg { width: 22px; height: 22px; }

.infra__card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.infra__card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* 3-column services layout */
.services__grid--3col {
    grid-template-columns: repeat(3, 1fr);
}

.service-card--highlight {
    display: flex;
    flex-direction: column;
}

.service-card--highlight .service-card__features {
    margin-bottom: 1.5rem;
}

/* ===== PLANS ===== */
.plans { background: var(--bg-transparent); }

.plans__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.plans__toggle-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.plans__toggle-label.active {
    color: var(--text);
    font-weight: 700;
}

.plans__discount {
    padding: 0.18rem 0.55rem;
    background: linear-gradient(135deg, var(--orange-glow), rgba(232, 145, 58, 0.08));
    border: 1px solid rgba(232, 145, 58, 0.2);
    color: var(--orange);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--bg-input);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 2px 6px var(--teal-glow);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    padding-top: 2rem;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-xs);
    text-align: center;
    overflow: visible;
}

.plan-card:hover {
    border-color: var(--border-teal);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.plan-card--featured {
    border-color: var(--orange);
    box-shadow: var(--shadow), 0 0 0 1px var(--orange);
    background: linear-gradient(180deg, rgba(232, 145, 58, 0.04) 0%, var(--bg-card) 40%);
}

.plan-card--featured:hover {
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--orange);
}

.plan-card__ribbon {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 1.5rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    letter-spacing: 0.02em;
}

.plan-card__img {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    height: 180px;
    align-items: center;
    overflow: visible;
}

.plan-card__img img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    position: relative;
    z-index: 3;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 8px 30px rgba(10, 191, 173, 0.35));
    animation: planImgFloat 5s ease-in-out infinite;
}

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

.plan-card:hover .plan-card__img img {
    transform: scale(1.15) translateY(-8px);
    filter: drop-shadow(0 12px 32px rgba(10, 191, 173, 0.4));
}

/* Inner ring */
.plan-card__img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(10, 191, 173, 0.25);
    box-shadow: 0 0 15px rgba(10, 191, 173, 0.08);
    animation: planRingPulse 4s ease-in-out infinite;
    z-index: 1;
}

/* Outer ring */
.plan-card__img::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border: 1.5px solid rgba(108, 92, 231, 0.15);
    border-radius: 50%;
    animation: planRingPulse 5s ease-in-out infinite 1s;
    z-index: 0;
}

@keyframes planRingPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.95); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.plan-card--featured .plan-card__img img {
    filter: drop-shadow(0 4px 20px rgba(232, 145, 58, 0.25));
}

.plan-card--featured .plan-card__img::before {
    border-color: rgba(232, 145, 58, 0.2);
}

.plan-card--featured .plan-card__img::after {
    border-color: rgba(232, 145, 58, 0.1);
}

.plan-card--featured:hover .plan-card__img img {
    filter: drop-shadow(0 12px 32px rgba(232, 145, 58, 0.45));
}

/* Plan orbs */
.plan-orb {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
}

.plan-orb--1 {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    top: 2%;
    right: 5%;
    opacity: 0.75;
    box-shadow: 0 0 16px rgba(10, 191, 173, 0.5);
    animation: orbFloat 7s ease-in-out infinite;
}

.plan-orb--2 {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    bottom: 8%;
    left: 4%;
    opacity: 0.7;
    box-shadow: 0 0 14px rgba(232, 145, 58, 0.5);
    animation: orbFloat 8s ease-in-out infinite 1s;
}

.plan-orb--3 {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    top: 25%;
    left: 0%;
    opacity: 0.65;
    box-shadow: 0 0 12px rgba(108, 92, 231, 0.4);
    animation: orbFloat 9s ease-in-out infinite 2s;
}

/* Plan particles */
.plan-particle {
    position: absolute;
    border-radius: 50%;
    z-index: 2;
}

.plan-particle--1 {
    width: 5px;
    height: 5px;
    background: var(--teal);
    top: 15%;
    right: 22%;
    box-shadow: 0 0 8px rgba(10, 191, 173, 0.6);
    animation: particleDrift 10s linear infinite;
}

.plan-particle--2 {
    width: 4px;
    height: 4px;
    background: var(--orange);
    bottom: 18%;
    right: 12%;
    box-shadow: 0 0 7px rgba(232, 145, 58, 0.5);
    animation: particleDrift 12s linear infinite 2s;
}

.plan-particle--3 {
    width: 5px;
    height: 5px;
    background: var(--accent-light);
    bottom: 28%;
    left: 18%;
    box-shadow: 0 0 7px rgba(108, 92, 231, 0.4);
    animation: particleDrift 11s linear infinite 4s;
}

.plan-card__name {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.plan-card__subtitle {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.plan-card__pricing {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1rem;
    margin: 1.25rem 0 1.5rem;
}

.plan-card__currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.plan-card__price {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text);
}

.plan-card__period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.plan-card__pricing--custom {
    justify-content: center;
    min-height: 60px;
    align-items: center;
}

.plan-card__custom-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--orange);
    text-align: center;
}

.plan-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.plan-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
}

.plan-card__features li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-card__features li.included svg { color: var(--teal); }
.plan-card__features li.excluded { color: var(--text-muted); }
.plan-card__features li.excluded svg { color: var(--text-muted); }

/* ===== ABOUT ===== */
.about { background: var(--bg-secondary-transparent); }

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__text {
    color: var(--text-secondary);
    font-size: 1.02rem;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.value {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.value:hover {
    background: var(--bg-input);
}

.value__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-glow), var(--accent-glow));
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-lg);
    color: var(--teal);
    flex-shrink: 0;
}

.value__icon svg { width: 22px; height: 22px; }
.value__title { font-size: 0.98rem; font-weight: 700; margin-bottom: 0.2rem; }
.value__text { font-size: 0.88rem; color: var(--text-secondary); }

/* Terminal */
.terminal {
    background: #0F172A;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.terminal__header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0.8rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.terminal__dot { width: 12px; height: 12px; border-radius: 50%; }
.terminal__dot--red { background: #FF5F57; }
.terminal__dot--yellow { background: #FEBC2E; }
.terminal__dot--green { background: #28C840; }
.terminal__title { margin-left: auto; font-size: 0.75rem; color: rgba(255,255,255,0.35); }

.terminal__body {
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.84rem;
    color: rgba(255,255,255,0.85);
}

.terminal__line { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.45rem; }
.terminal__line--output { padding-left: 1.5rem; color: rgba(255,255,255,0.55); }
.terminal__prompt { color: var(--teal-light); font-weight: 700; }
.terminal__command { color: rgba(255,255,255,0.85); }
.terminal__success { color: var(--teal-light); }

.terminal__cursor {
    color: var(--orange);
    animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* ===== FAQ ===== */
.faq { background: var(--bg-transparent); }

.faq__grid {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.faq__item.active {
    border-color: var(--border-teal);
    box-shadow: var(--shadow), var(--shadow-glow);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 0.98rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition-fast);
}

.faq__question:hover { color: var(--teal-dark); }

.faq__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq__item.active .faq__icon { transform: rotate(180deg); color: var(--teal); }

.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq__answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, rgba(26,35,50,0.97), rgba(15,25,40,0.98));
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 4rem 0;
}

.cta::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 191, 173, 0.15), transparent 70%);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 145, 58, 0.1), transparent 70%);
}

.cta__content { text-align: center; position: relative; }

.cta__title {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.cta__text {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact { background: var(--bg-secondary-transparent); }

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact__info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact__item:hover { background: var(--bg-input); }

.contact__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal-glow), var(--accent-glow));
    border: 1px solid var(--border-teal);
    border-radius: var(--radius-lg);
    color: var(--teal);
    flex-shrink: 0;
}

.contact__icon svg { width: 20px; height: 20px; }
.contact__item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.2rem; }
.contact__item p { font-size: 0.9rem; color: var(--text-secondary); }

.contact__form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form__group { margin-bottom: 1.15rem; }

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    color: var(--text);
}

.form__input {
    width: 100%;
    padding: 0.82rem 1rem;
    background: var(--bg-input);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 0.92rem;
    transition: var(--transition-fast);
}

.form__input::placeholder { color: var(--text-muted); }

.form__input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px var(--teal-glow);
    background: var(--bg-card);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form__textarea { resize: vertical; min-height: 110px; }

.form__status {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-size: 0.88rem;
    text-align: center;
    display: none;
    font-weight: 500;
}

.form__status.success {
    display: block;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.form__status.error {
    display: block;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--error);
}

/* ===== FOOTER ===== */
.footer {
    background: #0F172A;
    color: rgba(255,255,255,0.85);
    padding: 4.5rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer .nav__logo-img { filter: brightness(10); }

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer__description {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.75;
}

.footer__links h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 1.25rem; }

.footer__links ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer__links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

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

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.82rem;
}

/* ===== WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.blur-in {
    opacity: 0;
    filter: blur(12px);
    transform: scale(0.95);
    transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}

.blur-in.visible {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.flip-up {
    opacity: 0;
    transform: perspective(600px) rotateX(15deg) translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flip-up.visible {
    opacity: 1;
    transform: perspective(600px) rotateX(0) translateY(0);
}

.zoom-reveal {
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.zoom-reveal.visible {
    opacity: 1;
    transform: scale(1);
}

.slide-up-rotate {
    opacity: 0;
    transform: translateY(60px) rotate(3deg);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-up-rotate.visible {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.clip-reveal {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.clip-reveal.visible {
    clip-path: inset(0 0 0 0);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about__grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .infra__grid { grid-template-columns: repeat(2, 1fr); }
    .services__grid--3col { grid-template-columns: 1fr; }
    .plans__grid { grid-template-columns: repeat(2, 1fr); }
    .hero__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }

    .topbar__left,
    .topbar__right { gap: 0.8rem; }
    .topbar { font-size: 0.75rem; }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-card);
        border-left: 1px solid var(--border);
        padding: 5rem 2rem 2rem;
        transition: 0.4s ease;
        z-index: 1000;
        box-shadow: -8px 0 30px rgba(0,0,0,0.08);
    }

    .nav__menu.show { right: 0; }

    .nav__list { flex-direction: column; gap: 0.5rem; }

    .nav__link { display: block; padding: 0.8rem 1rem; font-size: 1.02rem; border-radius: var(--radius); }
    .nav__link:hover { background: var(--bg-input); }

    .nav__close {
        display: block;
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        font-size: 1.8rem;
        color: var(--text);
    }

    .nav__toggle { display: flex; }
    .nav__actions .btn--login,
    .nav__actions .btn--register { display: none; }

    .hero__grid { grid-template-columns: 1fr; text-align: center; }
    .hero__content { order: 1; }
    .hero__visual { order: 0; }
    .hero__logo-showcase { width: 260px; height: 260px; margin: 0 auto; }
    .hero__logo-main { width: 120px; height: 120px; }
    .hero__ring--1 { width: 200px; height: 200px; }
    .hero__ring--2 { width: 250px; height: 250px; }
    .hero__description { margin-left: auto; margin-right: auto; }
    .hero__buttons { justify-content: center; }
    .hero__stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }

    .services__grid, .services__grid--3col { grid-template-columns: 1fr; }
    .infra__grid { grid-template-columns: 1fr; }

    .plans__grid {
        grid-template-columns: 1fr 1fr;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact__grid { grid-template-columns: 1fr; }
    .contact__form { padding: 1.75rem; }
    .footer__grid { grid-template-columns: 1fr; }
    .section { padding: 4.5rem 0; }
    .infra__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .topbar { display: none; }
    .hero__title { font-size: 1.8rem; }
    .hero__buttons { flex-direction: column; }
    .hero__buttons .btn { width: 100%; }
    .hero__stats { gap: 1.25rem; }
    .hero__stat-number { font-size: 1.4rem; }
    .hero__logo-showcase { width: 200px; height: 200px; }
    .hero__logo-main { width: 90px; height: 90px; }
    .cta__buttons { flex-direction: column; align-items: center; }
    .infra__grid { grid-template-columns: 1fr; }
    .gs-store__grid { grid-template-columns: 1fr !important; }
    .plans__grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* ===== GAME SERVERS STORE ===== */
.gameservers-store {
    background: linear-gradient(180deg, var(--bg-transparent) 0%, rgba(20,184,166,0.05) 50%, var(--bg-transparent) 100%);
}
.gs-store__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.gs-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.gs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.gs-card--featured {
    border-color: var(--teal);
    box-shadow: 0 0 0 1px var(--teal), 0 8px 30px rgba(20,184,166,0.12);
}
.gs-card__ribbon {
    position: absolute;
    top: 12px;
    right: -30px;
    background: linear-gradient(135deg, var(--teal), #0d9488);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
    letter-spacing: 0.05em;
}
.gs-card__header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}
.gs-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}
.gs-card__icon--mc { background: linear-gradient(135deg, rgba(76,175,80,0.15), rgba(76,175,80,0.05)); color: #4caf50; }
.gs-card__icon--pz { background: linear-gradient(135deg, rgba(139,69,19,0.15), rgba(139,69,19,0.05)); color: #8b4513; }
.gs-card__icon--fm { background: linear-gradient(135deg, rgba(255,152,0,0.15), rgba(255,152,0,0.05)); color: #f57c00; }
.gs-card__icon--rs { background: linear-gradient(135deg, rgba(205,50,50,0.15), rgba(205,50,50,0.05)); color: #cd3232; }
.gs-card__icon--other { background: linear-gradient(135deg, rgba(156,39,176,0.15), rgba(156,39,176,0.05)); color: #9c27b0; font-size: 1.4rem; }
.gs-card__title { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.gs-card__tag { font-size: 0.75rem; color: var(--text-muted); }
.gs-card__specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: var(--bg-input, rgba(0,0,0,0.02));
    border-radius: 10px;
}
.gs-card__spec {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
}
.gs-card__spec span { color: var(--text-muted); }
.gs-card__spec strong { color: var(--text); font-weight: 600; }
.gs-card__pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.gs-card__from { font-size: 0.8rem; color: var(--text-muted); }
.gs-card__price-value {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gs-card__price-value small {
    font-size: 0.7rem;
    font-weight: 500;
    -webkit-text-fill-color: var(--text-muted);
}
.gs-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}
.gs-card__features li {
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding-left: 1.2rem;
    position: relative;
}
.gs-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}
.gs-store__features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.gs-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.gs-feature svg { width: 20px; height: 20px; color: var(--teal); }

/* Order modal */
.gs-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.gs-modal {
    background: var(--bg-card, #fff);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    animation: gsModalIn 0.3s ease;
}
@keyframes gsModalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.gs-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
}
.gs-modal__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.gs-modal__config { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.gs-modal__summary {
    padding: 1rem;
    background: var(--bg-input, rgba(0,0,0,0.02));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.gs-modal__summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}
.gs-modal__summary-row span { color: var(--text-muted); }
.gs-modal__summary-total {
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
    font-size: 1rem;
}
.gs-modal__summary-total strong {
    color: var(--teal);
    font-size: 1.1rem;
}
.gs-modal__footer {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    justify-content: flex-end;
}

/* Glow pulse on featured cards */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 0 1px var(--teal), 0 8px 30px rgba(20,184,166,0.12); }
    50% { box-shadow: 0 0 0 2px var(--teal), 0 8px 40px rgba(20,184,166,0.2); }
}
.gs-card--featured { animation: glowPulse 3s ease-in-out infinite; }
.gs-card--featured:hover { animation: none; }

/* Shimmer on section tags */
@keyframes shimmerSlide {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.section__tag.shimmer {
    background: linear-gradient(90deg, var(--teal) 0%, var(--orange) 40%, var(--teal) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerSlide 0.8s ease forwards;
}

/* Smooth entrance for GS features bar */
.gs-store__features .gs-feature {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.gs-store__features .gs-feature.visible {
    opacity: 1;
    transform: translateY(0);
}
