/* ===================================
   ANR SHIELD - STYLESHEET (UPDATED)
   Brand Colors: Pink (#FF1493) + Blue (#00BFFF)
   =================================== */

/* DESIGN TOKENS */
:root {
    --bg-main: #000000;
    --anr-pink: #FF1493;
    --anr-blue: #00BFFF;
    --blue-dark: #1E3A8A;
    --text-light: #F9FAFB;
    --text-muted: #9CA3AF;
}

/* BASE STYLES */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg-main);
    color: var(--text-light);
}

a {
    color: inherit;
    text-decoration: none;
}

.page-wrapper {
    min-height: 100vh;
    background: radial-gradient(circle at top, rgba(0, 191, 255, 0.15), transparent 55%),
        radial-gradient(circle at bottom, rgba(255, 20, 147, 0.25), transparent 60%),
        #000000;
    padding: 0 16px 60px;
}

/* NAVBAR */
.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shield-logo {
    width: 40px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid var(--anr-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(0, 191, 255, 0.5), rgba(255, 20, 147, 0.3));
    box-shadow: 0 0 18px rgba(255, 20, 147, 0.4);
    position: relative;
    overflow: hidden;
}

.shield-logo::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 10px;
    border: 1px solid rgba(249, 250, 251, 0.2);
}

.shield-logo span {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.1em;
}

.anr-logo {
    background: linear-gradient(135deg, #FF1493 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    filter: drop-shadow(0 0 10px rgba(255, 20, 147, 0.5));
}

.anr-shield {
    background: linear-gradient(135deg, var(--anr-pink) 0%, var(--anr-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: clamp(2rem, 8vw, 4rem);
    filter: drop-shadow(0 0 15px rgba(255, 20, 147, 0.7));
    text-align: center;
}

.brand-sub {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.16em;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-pill {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(156, 163, 175, 0.5);
    color: var(--text-muted);
}

.nav-cta {
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--anr-pink);
    color: #000;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 0 18px rgba(255, 20, 147, 0.5);
}

/* HERO */
.hero {
    max-width: 1200px;
    margin: 10px auto 40px;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 36px;
    align-items: center;
}

.hero-left-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--anr-blue);
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-left-eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, var(--anr-blue), transparent);
}

.hero-title {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero-title span {
    color: var(--anr-pink);
    text-shadow: 0 0 18px rgba(255, 20, 147, 0.55);
}

.hero-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 440px;
    margin-bottom: 18px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.hero-chip {
    font-size: 11px;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(55, 65, 81, 0.8);
    background: rgba(15, 23, 42, 0.75);
    color: var(--text-muted);
}

.hero-chip strong {
    color: var(--text-light);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.btn-primary {
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    background: var(--anr-pink);
    color: #000000;
    box-shadow: 0 0 22px rgba(255, 20, 147, 0.65);
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 26px rgba(255, 20, 147, 0.9);
    background: #ff2ba0;
}

.btn-secondary {
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(148, 163, 184, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.12s ease, border-color 0.12s ease, transform 0.12s ease;
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: var(--anr-pink);
    transform: translateY(-1px);
}

.btn-secondary-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--anr-blue);
    box-shadow: 0 0 12px rgba(0, 191, 255, 0.8);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 11px;
    color: var(--text-muted);
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-meta-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--anr-blue);
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.7);
}

.hero-card {
    border-radius: 22px;
    background: radial-gradient(circle at top left, rgba(0, 191, 255, 0.55), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255, 20, 147, 0.45), transparent 55%),
        rgba(15, 23, 42, 0.96);
    padding: 18px 18px 16px;
    border: 1px solid rgba(75, 85, 99, 0.8);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.hero-card-gradient-ring {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.12), transparent 55%),
        radial-gradient(circle at 90% 100%, rgba(251, 113, 133, 0.2), transparent 55%);
    opacity: 0.65;
    pointer-events: none;
    mix-blend-mode: screen;
}

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

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.hero-card-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.hero-card-badge {
    font-size: 11px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-card-badge-pill {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--anr-blue);
    box-shadow: 0 0 12px rgba(0, 191, 255, 1);
}

.hero-card-main {
    margin-bottom: 12px;
}

.hero-card-main-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
}

.hero-card-main-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.hero-card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.hero-stat {
    flex: 1 1 90px;
    min-width: 0;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(55, 65, 81, 0.9);
    padding: 8px 10px;
    font-size: 11px;
    color: var(--text-muted);
}

.hero-stat-label {
    margin-bottom: 2px;
}

.hero-stat-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
}

.hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-muted);
}

.hero-card-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.hero-card-chip {
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(75, 85, 99, 0.9);
    background: rgba(15, 23, 42, 0.9);
}

.hero-card-cta {
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--anr-pink);
    color: #000;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(255, 20, 147, 0.8);
    border: none;
}

/* SERVICES GRID */
.section-label {
    max-width: 1200px;
    margin: 0 auto 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(0, 191, 255, 0.55), transparent 60%),
        radial-gradient(circle at bottom, rgba(255, 20, 147, 0.45), transparent 60%),
        rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(75, 85, 99, 0.9);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    display: flex;
    flex-direction: column;
    min-height: 170px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.85);
    border-color: var(--anr-pink);
}

.service-thumb {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.service-thumb-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2), transparent 60%);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.service-faux-video {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.85), rgba(255, 20, 147, 0.8));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-faux-video::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(15, 23, 42, 0.4) 25%, transparent 25%, transparent 50%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0.4) 75%, transparent 75%, transparent);
    background-size: 24px 24px;
    opacity: 0.6;
    mix-blend-mode: soft-light;
}

.play-button {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid rgba(249, 250, 251, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.8);
}

.play-button::before {
    content: "";
    margin-left: 3px;
    border-style: solid;
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #ffffff;
}

.service-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 9px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.7);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.service-caption {
    padding: 10px 12px 11px;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.service-title {
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-pill {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid rgba(75, 85, 99, 0.9);
    color: var(--text-muted);
}

/* BOTTOM CTAS */
.bottom-cta {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    background: radial-gradient(circle at left, rgba(0, 191, 255, 0.55), transparent 60%), radial-gradient(circle at right, rgba(255, 20, 147, 0.5), transparent 60%), rgba(15, 23, 42, 0.96);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bottom-cta-text {
    font-size: 13px;
    color: var(--text-muted);
}

.bottom-cta-text span {
    color: var(--text-light);
    font-weight: 600;
}

.bottom-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        margin-top: 20px;
    }

    .hero-card {
        order: -1;
    }
}

@media (max-width: 700px) {
    .nav {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .nav-right {
        width: 100%;
        justify-content: flex-end;
    }

    .services-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .bottom-cta {
        align-items: flex-start;
    }
}

@media (min-width: 701px) and (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Revenue list toggle styles */
.rev-item {
    padding: 8px 10px;
    margin-bottom: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: background 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
    list-style: disc;
}

.rev-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.rev-item.active {
    background: linear-gradient(90deg, rgba(0, 191, 255, 0.08), rgba(255, 20, 147, 0.04));
    border: 1px solid rgba(255, 20, 147, 0.18);
    box-shadow: 0 8px 24px rgba(255, 20, 147, 0.04);
    color: var(--text-light);
}

/* FOOTER */
.footer {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 24px 16px;
    border-top: 1px solid rgba(75, 85, 99, 0.6);
    text-align: center;
    color: var(--text-muted);
    font-size: 11px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.12s ease;
}

.footer-nav a:hover {
    color: var(--anr-pink);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(75, 85, 99, 0.6);
    color: var(--text-muted);
    font-size: 13px;
    transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.footer-social a:hover {
    background: var(--anr-pink);
    border-color: var(--anr-pink);
    color: #000;
}

/* HOVER CARDS - DYNAMIC CONTENT REVEAL */
.hover-cards-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.hover-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(0, 191, 255, 0.3), rgba(15, 23, 42, 0.95));
    border: 1px solid rgba(75, 85, 99, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 200px;
}

.hover-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 20, 147, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hover-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--anr-pink);
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.25);
}

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

.hover-card-content {
    position: relative;
    z-index: 1;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hover-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.6), rgba(255, 20, 147, 0.4));
    border: 1px solid rgba(148, 163, 184, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-card:hover .hover-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
}

.hover-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.hover-card:hover .hover-card-title {
    color: var(--anr-pink);
}

.hover-card-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.hover-card-reveal {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
}

.hover-card:hover .hover-card-reveal {
    max-height: 200px;
    opacity: 1;
}

.hover-card-details {
    padding-top: 16px;
    border-top: 1px solid rgba(75, 85, 99, 0.4);
}

.hover-card-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    transform: translateX(-10px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.hover-card:hover .hover-card-detail-item {
    transform: translateX(0);
    opacity: 1;
}

.hover-card-detail-item:nth-child(1) {
    transition-delay: 0.05s;
}

.hover-card-detail-item:nth-child(2) {
    transition-delay: 0.1s;
}

.hover-card-detail-item:nth-child(3) {
    transition-delay: 0.15s;
}

.hover-card-detail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--anr-blue);
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.6);
}

.hover-card-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--anr-pink);
    color: var(--anr-pink);
    font-size: 12px;
    font-weight: 600;
    margin-top: auto;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.hover-card:hover .hover-card-action {
    opacity: 1;
    transform: translateY(0);
}

.hover-card-action:hover {
    background: var(--anr-pink);
    color: #000;
}

/* CARD VARIANTS */
.hover-card-variant-1 {
    background: linear-gradient(145deg, rgba(255, 20, 147, 0.2), rgba(15, 23, 42, 0.95));
}

.hover-card-variant-1::before {
    background: radial-gradient(circle at 50% 0%, rgba(255, 20, 147, 0.2), transparent 70%);
}

.hover-card-variant-1:hover {
    border-color: var(--anr-pink);
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.25);
}

.hover-card-variant-1:hover .hover-card-title {
    color: var(--anr-pink);
}

.hover-card-variant-2 {
    background: linear-gradient(145deg, rgba(0, 191, 255, 0.3), rgba(15, 23, 42, 0.95));
}

.hover-card-variant-2::before {
    background: radial-gradient(circle at 50% 0%, rgba(0, 191, 255, 0.2), transparent 70%);
}

.hover-card-variant-2:hover {
    border-color: var(--anr-blue);
    box-shadow: 0 20px 50px rgba(0, 191, 255, 0.25);
}

.hover-card-variant-2:hover .hover-card-title {
    color: var(--anr-blue);
}

.hover-card-variant-2 .hover-card-detail-dot {
    background: var(--anr-blue);
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.6);
}

/* GLINT EFFECT ON HOVER */
.hover-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.hover-card:hover::after {
    left: 100%;
}