/* ═══════════════════════════════════════════════════════════════════
   Weta Security — Custom Stylesheet
   Palette: Black #0a0a0a | Red #DC1414 | White #FFFFFF
   ═══════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────────────────────────────── */
:root {
    --weta-red:      #DC1414;
    --weta-red-hot:  #FF1A1A;
    --weta-red-dark: #8B0000;
    --weta-dark:     #0a0a0a;
    --weta-surface:  #111111;
    --weta-card:     #181818;
    --weta-border:   #2a2a2a;
    --weta-muted:    #9CA3AF;
    --weta-subtle:   #4B5563;
}

/* ── Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--weta-dark);
    color: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
main { padding-top: 74px; }

/* ── Typography ──────────────────────────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--weta-red);
    border: 1px solid rgba(220,20,20,0.4);
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    font-family: 'JetBrains Mono', monospace;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: white;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--weta-muted);
    line-height: 1.8;
    max-width: 600px;
}

.text-red { color: var(--weta-red) !important; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn-weta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--weta-red);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    padding: 0.65rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}
.btn-weta-primary:hover {
    background: var(--weta-red-hot);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(220,20,20,0.35);
    text-decoration: none;
}

.btn-weta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    padding: 0.65rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}
.btn-weta-outline:hover {
    border-color: var(--weta-red);
    background: rgba(220,20,20,0.08);
    color: white;
    text-decoration: none;
}

/* ── Navbar ──────────────────────────────────────────────────────── */
.nav-link-weta {
    display: inline-block;
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    text-decoration: none;
    border-radius: 5px;
    transition: color 0.2s, background 0.2s;
}
.nav-link-weta:hover {
    color: white;
    background: rgba(255,255,255,0.07);
    text-decoration: none;
}
.weta-logo-nav { transition: filter 0.2s; }
.weta-logo-nav:hover { filter: brightness(1.2); }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--weta-dark);
}
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(220,20,20,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220,20,20,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 65% 50%, rgba(139,0,0,0.2) 0%, transparent 70%);
    pointer-events: none;
}
.hero-watermark {
    position: absolute;
    right: -3%;
    top: 50%;
    transform: translateY(-50%);
    width: 90vw;
    height: auto;
    max-width: none;
    opacity: 0.15;
    pointer-events: none;
}

/* Terminal */
.terminal-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--weta-red);
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* Badge */
.red-glow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(220,20,20,0.12);
    border: 1px solid rgba(220,20,20,0.35);
    color: var(--weta-red);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
}
.red-dot {
    width: 7px;
    height: 7px;
    background: var(--weta-red);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220,20,20,0.6); }
    50%       { box-shadow: 0 0 0 6px rgba(220,20,20,0); }
}

/* ── Stats Bar ───────────────────────────────────────────────────── */
.stats-bar {
    background: var(--weta-surface);
    border-top: 1px solid var(--weta-border);
    border-bottom: 1px solid var(--weta-border);
    padding: 2.5rem 0;
}
.stat-item { text-align: center; padding: 0.5rem 1rem; }
.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-red { color: var(--weta-red); }
.stat-label {
    font-size: 0.78rem;
    color: var(--weta-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ── Cards ───────────────────────────────────────────────────────── */
.weta-card {
    background: var(--weta-card);
    border: 1px solid var(--weta-border);
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.weta-card:hover {
    border-color: rgba(220,20,20,0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(220,20,20,0.15);
}
.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(220,20,20,0.12);
    border: 1px solid rgba(220,20,20,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--weta-red);
    flex-shrink: 0;
}
.weta-card h3, .weta-card h4, .weta-card h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.weta-card p {
    color: var(--weta-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ── Section Spacing ─────────────────────────────────────────────── */
.section-pad   { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

/* ── CTA Banner ──────────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, #6B0000 0%, #DC1414 50%, #6B0000 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ── Process Steps ───────────────────────────────────────────────── */
.process-number {
    width: 56px;
    height: 56px;
    background: var(--weta-card);
    border: 2px solid var(--weta-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--weta-red);
}

/* ── Forms ───────────────────────────────────────────────────────── */
.form-control-weta {
    background: var(--weta-card) !important;
    border: 1px solid var(--weta-border) !important;
    border-radius: 8px !important;
    color: white !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}
.form-control-weta:focus {
    border-color: var(--weta-red) !important;
    box-shadow: 0 0 0 3px rgba(220,20,20,0.15) !important;
    outline: none !important;
    background: var(--weta-card) !important;
    color: white !important;
}
.form-control-weta::placeholder { color: var(--weta-subtle) !important; }

.form-select-weta {
    background-color: var(--weta-card) !important;
    border: 1px solid var(--weta-border) !important;
    border-radius: 8px !important;
    color: white !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
}
.form-select-weta:focus {
    border-color: var(--weta-red) !important;
    box-shadow: 0 0 0 3px rgba(220,20,20,0.15) !important;
    outline: none !important;
}
.form-select-weta option { background: #181818; color: white; }

.form-label-weta {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
    display: block;
}

/* ── Footer ──────────────────────────────────────────────────────── */
.footer-heading {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: var(--weta-muted);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-contact {
    color: var(--weta-muted);
    font-size: 0.875rem;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
}
.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--weta-card);
    border: 1px solid var(--weta-border);
    color: var(--weta-muted);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social:hover {
    background: rgba(220,20,20,0.15);
    border-color: rgba(220,20,20,0.4);
    color: var(--weta-red);
}
.footer-bottom-link {
    color: #4B5563;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-link:hover { color: var(--weta-muted); }

/* ── Animations ──────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp { animation: fadeInUp 0.7s ease-out both; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Feature List ────────────────────────────────────────────────── */
.feature-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    color: var(--weta-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}
.feature-check svg { flex-shrink: 0; margin-top: 2px; }

/* ── Page Hero ───────────────────────────────────────────────────── */
.page-hero {
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: var(--weta-dark);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(220,20,20,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220,20,20,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--weta-dark));
}

/* ── Red Divider ─────────────────────────────────────────────────── */
.red-divider {
    width: 48px;
    height: 3px;
    background: var(--weta-red);
    border-radius: 2px;
    margin: 1rem 0 1.5rem;
}

/* ── Contact ─────────────────────────────────────────────────────── */
.contact-info-box {
    background: var(--weta-card);
    border: 1px solid var(--weta-border);
    border-radius: 12px;
    padding: 2rem;
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(220,20,20,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.alert-weta-success {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: 10px;
    color: #86efac;
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .section-pad   { padding: 4rem 0; }
    .hero-watermark { height: 55vh; opacity: 0.07; }
    .stat-value { font-size: 1.9rem; }
    .section-title { font-size: 1.9rem; }
}
