/* ASJK Digital Hub — Luxury Premium Theme */

:root {
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Space Grotesk', system-ui, sans-serif;

    --color-primary: #8b5cf6;
    --color-primary-hover: #a78bfa;
    --color-primary-light: #c4b5fd;
    --color-accent: #ec4899;
    --color-gold: #f59e0b;
    --color-gold-light: #fbbf24;
    --color-cyan: #06b6d4;
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-whatsapp: #25d366;

    --bg-primary: #050816;
    --bg-secondary: #0a0f1e;
    --bg-tertiary: #0d1117;
    --bg-elevated: rgba(13, 17, 23, 0.96);
    --bg-hero:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 85% 75%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 35% at 10% 60%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
        #050816;

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-inverse: #050816;

    --border-color: rgba(255, 255, 255, 0.08);
    --border-focus: #8b5cf6;
    --border-gold: rgba(245, 158, 11, 0.35);

    --input-bg: rgba(255, 255, 255, 0.04);
    --card-bg: rgba(255, 255, 255, 0.03);
    --overlay: rgba(5, 8, 22, 0.75);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.25);
    --shadow-gold: 0 0 30px rgba(245, 158, 11, 0.2);

    --transition: 0.25s ease;
    --header-height: 76px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 3px; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    top: var(--header-height);
    background: var(--overlay);
    z-index: 998;
}

img, svg {
    display: block;
    max-width: 100%;
}

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

a:hover {
    color: var(--color-primary-hover);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 8px 16px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    top: 16px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
}

.container-wide {
    max-width: 1400px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.display-title {
    font-family: var(--font-display);
    font-weight: 700;
}

.lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(139, 92, 246, 0.5);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    color: white;
    transform: translateY(-1px);
}

.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(5, 8, 22, 0.55);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
    background: rgba(5, 8, 22, 0.92);
    border-bottom-color: var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 1.0625rem;
    font-weight: 800;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.logo-text small {
    font-size: 0.625rem;
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-menu a {
    display: block;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.1);
}

.nav-menu a.active {
    color: #fff;
    background: rgba(139, 92, 246, 0.15);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: 1px;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
    background: var(--bg-hero);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-1 {
    width: 520px;
    height: 520px;
    top: -18%;
    right: -10%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -12%;
    left: -8%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.25) 0%, transparent 70%);
    animation-delay: -4s;
}

.hero-orb-3 {
    width: 320px;
    height: 320px;
    top: 35%;
    left: 30%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
    animation-delay: -8s;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
}

.hero-float {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.35;
    animation: floatSoft 8s ease-in-out infinite;
}

.hero-float-1 { top: 18%; left: 8%; animation-delay: 0s; }
.hero-float-2 { top: 25%; right: 12%; animation-delay: -2s; font-size: 1.25rem; }
.hero-float-3 { bottom: 22%; left: 15%; animation-delay: -4s; font-size: 1.75rem; }
.hero-float-4 { bottom: 30%; right: 25%; animation-delay: -6s; font-size: 1.125rem; }

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.hero-brand-pill,
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 12px;
    margin-bottom: 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-primary-light);
    text-transform: uppercase;
}

.section-badge .hero-badge-dot {
    width: 6px;
    height: 6px;
    margin: 0;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.8);
    background: var(--color-primary);
}

.hero-brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-accent), var(--color-primary));
    color: white;
    border-radius: 6px;
    font-size: 0.625rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #4ade80;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -25px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(8deg); }
}

.hero h1 {
    margin-bottom: 24px;
    line-height: 1.15;
}

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

.text-gradient.shimmer {
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
}

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

.hero .lead {
    margin-bottom: 36px;
    max-width: 540px;
    font-size: 1.125rem;
}

.hero .lead strong {
    color: var(--color-gold-light);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
}

.btn-glass:hover {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.45);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.2);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent), var(--color-primary));
    background-size: 200% 200%;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: shimmer 3s linear infinite;
}

.btn-glow:hover::after {
    opacity: 0.35;
    filter: blur(12px);
}

.hero-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 100px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-gold);
}

.stat-card .stat-value,
.stat-item strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-accent) 50%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-card span,
.stat-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero visual showcase */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-showcase {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 8px;
}

.hero-showcase-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 65%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.hero-showcase-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(139, 92, 246, 0.25);
    border-radius: 50%;
    animation: spinSlow 20s linear infinite;
}

.hero-showcase-ring::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 50%;
    animation: spinSlow 15s linear infinite reverse;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-showcase-core {
    position: absolute;
    inset: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(145deg, var(--card-bg), var(--bg-secondary));
    border: 1px solid var(--border-color);
    border-radius: 50%;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    animation: floatSoft 6s ease-in-out infinite;
}

.hero-diamond-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
    animation: diamondBounce 3s ease-in-out infinite;
}

@keyframes diamondBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.hero-showcase-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.hero-showcase-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    animation: floatSoft 5s ease-in-out infinite;
}

.hero-showcase-badge-1 { top: 0; right: -20px; animation-delay: 0s; }
.hero-showcase-badge-2 { bottom: 20px; left: -30px; animation-delay: -1.5s; }
.hero-showcase-badge-3 { bottom: -8px; right: 10px; animation-delay: -3s; color: var(--color-primary); border-color: rgba(139, 92, 246, 0.3); }

.hero-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.hero-card-premium:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(139, 92, 246, 0.25);
}

.hero-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: cardShine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cardShine {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.hero-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.hero-card-tag {
    margin-left: auto;
    padding: 4px 10px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

.hero-card-header h3 {
    font-size: 1.0625rem;
}

.hero-card-header p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.quick-packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.quick-pkg {
    display: flex;
    flex-direction: column;
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quick-pkg:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
    color: var(--text-primary);
}

.quick-pkg strong {
    font-size: 0.9375rem;
}

.quick-pkg span {
    font-size: 0.8125rem;
    color: var(--color-primary);
    font-weight: 600;
}

.diamond-emoji {
    display: inline-block;
    animation: diamondBounce 2s ease-in-out infinite;
}

.trust-badges-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-header .section-badge {
    margin-bottom: 20px;
}

.section-header h2 {
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-alt {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: var(--shadow-md), 0 0 30px rgba(139, 92, 246, 0.12);
    transform: translateY(-6px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-4deg);
    background: rgba(139, 92, 246, 0.22);
}

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

.section-header p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
}

.feature-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 28px 20px;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    font-weight: 800;
    font-size: 1.125rem;
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.12);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.package-card:hover {
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: var(--shadow-md), 0 0 30px rgba(139, 92, 246, 0.15);
    transform: translateY(-8px) scale(1.02);
}

.package-card.popular {
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: var(--shadow-gold);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--color-gold), #ef4444);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

.package-diamonds {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-accent), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.package-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.package-price small {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(236, 72, 153, 0.85) 50%, rgba(245, 158, 11, 0.75) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.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 h2 {
    color: white;
    margin-bottom: 12px;
    position: relative;
}

.cta-banner p {
    opacity: 0.9;
    margin-bottom: 28px;
    font-size: 1.0625rem;
    position: relative;
}

.cta-banner .btn {
    position: relative;
}

.cta-banner .btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #5b21b6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.cta-banner .btn-primary:hover {
    background: #fff;
    color: #6d28d9;
}

/* Forms */
.page-hero {
    background: var(--bg-hero);
    padding: 56px 0 64px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.form-section {
    padding: 56px 0 80px;
}

.form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-label .required {
    color: var(--color-error);
}

.form-hint {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.form-input.error,
.form-select.error {
    border-color: var(--color-error);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.package-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.package-option {
    position: relative;
}

.package-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.package-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 10px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.package-option input:checked + label {
    border-color: var(--color-primary);
    background: rgba(139, 92, 246, 0.08);
}

.package-option label strong {
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.package-option label span {
    font-size: 0.8125rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 2px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.payment-option input {
    position: absolute;
    opacity: 0;
}

.payment-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition);
}

.payment-option input:checked + label {
    border-color: var(--color-primary);
    background: rgba(139, 92, 246, 0.08);
    color: var(--color-primary);
}

.form-alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    margin-bottom: 20px;
    display: none;
}

.form-alert.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--color-error);
}

.form-alert.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--color-success);
}

.form-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.form-note-icon {
    flex-shrink: 0;
    font-size: 1.125rem;
}

.custom-fields {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.custom-fields.visible {
    display: grid;
}

.form-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: '✓';
    color: var(--color-success);
    font-weight: 700;
    flex-shrink: 0;
}

.recharge-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--card-bg);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Content Pages */
.content-page {
    padding: 56px 0 80px;
}

.content-body {
    max-width: 800px;
    margin: 0 auto;
}

.content-body h2 {
    margin: 40px 0 16px;
    font-size: 1.5rem;
}

.content-body h3 {
    margin: 28px 0 12px;
    font-size: 1.125rem;
}

.content-body p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.content-body ul, .content-body ol {
    margin: 0 0 20px 24px;
    color: var(--text-secondary);
}

.content-body li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-body a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.toc {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 40px;
}

.toc h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.toc ol {
    margin: 0;
    padding-left: 20px;
}

.toc a {
    font-size: 0.9375rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-method h4 {
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.contact-method p, .contact-method a {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Footer */
.site-footer {
    background: rgba(5, 8, 22, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 0;
    margin-top: auto;
}

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

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 16px 0;
    line-height: 1.7;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-whatsapp);
    font-size: 0.875rem;
    font-weight: 600;
}

.footer-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    color: var(--color-whatsapp);
}

.footer-links h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-features li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}

.footer-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer-disclaimer {
    font-size: 0.75rem !important;
}

.footer-credit {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.footer-credit a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}

/* Breadcrumb */
.breadcrumb {
    padding: 16px 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb span {
    margin: 0 8px;
}

/* Trust badges */
.quick-pkg span {
    font-size: 0.8125rem;
    color: var(--color-gold-light);
    font-weight: 600;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
}

.trust-badge-icon {
    font-size: 1.25rem;
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── Scroll reveal & global soft animations ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-fade.visible {
    opacity: 1;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

.btn {
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:active {
    transform: scale(0.97);
}

.form-card,
.info-card,
.contact-info-card,
.faq-item,
.cta-banner {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.form-card:hover,
.info-card:hover,
.contact-info-card:hover {
    box-shadow: var(--shadow-md);
}

.cta-banner {
    animation: ctaGlow 6s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25); }
    50% { box-shadow: 0 16px 56px rgba(139, 92, 246, 0.35); }
}

.trust-badge {
    transition: transform 0.35s ease, color 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    color: var(--text-primary);
}

.trust-badge-icon {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-badge:hover .trust-badge-icon {
    transform: scale(1.2) rotate(-8deg);
}

.logo {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
    color: var(--text-primary);
}

.site-footer {
    animation: fadeInUp 1s ease both;
}

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-fade,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 80px 0 80px;
    }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { order: -1; }
    .hero-showcase { width: 180px; height: 180px; margin-bottom: 0; }
    .hero-showcase-badge-1 { right: -10px; }
    .hero-showcase-badge-2 { left: -10px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .recharge-layout { grid-template-columns: 1fr; }
    .form-sidebar { position: static; }
}

@media (max-width: 992px) {
    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex: none;
        justify-content: stretch;
        background: rgba(5, 8, 22, 0.97);
        border-bottom: 1px solid var(--border-color);
        padding: 16px;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        transform: translateY(calc(-100% - var(--header-height)));
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .nav-menu a {
        padding: 12px 16px;
    }

    .header-actions .btn-primary { display: none; }
}

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

    .header-inner { gap: 12px; }

    .hero-content { order: 1; }
    .hero-visual { order: 2; }

    .quick-packages {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
    }

    .quick-pkg {
        padding: 10px 4px;
        text-align: center;
        align-items: center;
    }

    .quick-pkg strong {
        font-size: 0.6875rem;
        line-height: 1.25;
    }

    .quick-pkg span {
        font-size: 0.625rem;
    }

    .diamond-emoji {
        font-size: 0.625rem;
    }

    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .payment-options { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { padding: 48px 0 64px; }
    .hero-showcase { display: none; }
    .hero-stats { gap: 10px; }
    .stat-card { min-width: calc(33% - 8px); padding: 12px 10px; }
    .stat-card .stat-value { font-size: 1.125rem; }
    section { padding: 56px 0; }
    .form-card { padding: 24px; }
    .cta-banner { padding: 40px 24px; }
    .custom-fields.visible { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    :root { --header-height: 64px; }

    .logo-text small { display: none; }

    .packages-grid { grid-template-columns: 1fr; }
    .package-options { grid-template-columns: repeat(2, 1fr); }
    .payment-options { grid-template-columns: 1fr 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .page-hero { padding: 40px 0 48px; }
    .cta-banner { padding: 32px 20px; }
    .trust-badges-inner { gap: 16px; }
    .footer-bottom { text-align: center; }
}
