/* ========================================
   SATINERO About Page - Exact Reference Match
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --ab-bg: #ffffff;
    --ab-bg-alt: #faf5f8;
    --ab-card-bg: #ffffff;
    --ab-card-border: rgba(255, 45, 141, 0.10);
    --ab-text: #0a0514;
    --ab-text-muted: #6b7280;
    --ab-pink: #ff2d8d;
    --ab-pink-light: #ff5fa8;
    --ab-pink-glow: rgba(255, 45, 141, 0.15);
    --ab-shadow: rgba(255, 45, 141, 0.06);
    --ab-stats-bg: linear-gradient(135deg, #ff2d8d, #ff5fa8);
    --ab-mv-bg: #ffffff;
    --ab-mv-border: rgba(255, 45, 141, 0.10);
    --ab-float-bg: rgba(255, 255, 255, 0.95);
    --ab-float-border: rgba(255, 45, 141, 0.22);
    --ab-pedestal-opacity: 0.45;
    --ab-shield-fill: #ffffff;
    --ab-shield-stroke: #ff2d8d;
    --ab-ring-opacity: 0.14;
}

html.dark {
    --ab-bg: #0a0514;
    --ab-bg-alt: #0d0818;
    --ab-card-bg: #1a0f2e;
    --ab-card-border: rgba(255, 45, 141, 0.18);
    --ab-text: #ffffff;
    --ab-text-muted: rgba(255, 255, 255, 0.55);
    --ab-pink-glow: rgba(255, 45, 141, 0.25);
    --ab-shadow: rgba(255, 45, 141, 0.10);
    --ab-mv-bg: #1a0f2e;
    --ab-mv-border: rgba(255, 45, 141, 0.12);
    --ab-float-bg: rgba(26, 15, 46, 0.95);
    --ab-float-border: rgba(255, 45, 141, 0.35);
    --ab-pedestal-opacity: 0.35;
    --ab-shield-fill: #1a0f2e;
    --ab-shield-stroke: #ff2d8d;
    --ab-ring-opacity: 0.12;
}

/* ===== BASE ===== */
.ab-hero, .ab-mv-section, .ab-stats-section,
.ab-problems-section, .ab-protection-section, .ab-cta-section {
    padding: 80px 0;
}

.ab-problems-section { background: var(--ab-bg); }
.ab-protection-section { background: var(--ab-bg-alt); }
.ab-cta-section { background: var(--ab-bg); padding: 60px 0 100px; }

/* ===== TEXT UTILITIES ===== */
.ab-text-dark { color: var(--ab-text); }
.ab-text-pink { color: var(--ab-pink); }

/* ===== HERO ===== */
.ab-hero {
    background: linear-gradient(180deg, #fff5f9 0%, #ffffff 60%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

html.dark .ab-hero {
    background: linear-gradient(180deg, #0f0818 0%, #0a0514 60%);
}

.ab-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ab-hero-label {
    display: inline-block;
    color: var(--ab-pink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.ab-hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--ab-text);
}

.ab-hero-title span { display: inline; }

.ab-hero-subtitle {
    font-size: 15px;
    color: var(--ab-text-muted);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 32px;
}

.ab-hero-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.ab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.ab-btn-primary {
    background: linear-gradient(135deg, var(--ab-pink), var(--ab-pink-light));
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 45, 141, 0.3);
}

.ab-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 45, 141, 0.45);
}

.ab-btn-secondary {
    background: transparent;
    color: var(--ab-text);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    padding: 11px 24px;
}

html.dark .ab-btn-secondary {
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.ab-btn-secondary:hover {
    border-color: var(--ab-pink);
    color: var(--ab-pink);
    transform: translateY(-2px);
}

.ab-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--ab-pink);
    border-radius: 50%;
    color: #ffffff;
    flex-shrink: 0;
}

/* ===== SHIELD SCENE - 3D APPROXIMATION ===== */
.ab-shield-scene {
    position: relative;
    width: 420px;
    height: 460px;
    margin: 0 auto;
}

/* Rotating rings */
.ab-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    margin-top: -200px;
    margin-left: -200px;
    pointer-events: none;
    animation: ringRotate 30s linear infinite;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* 3D Shield Container */
.ab-shield-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 260px;
    margin-top: -150px;
    margin-left: -100px;
    z-index: 2;
}

/* Main shield SVG */
.ab-shield-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 15px 50px rgba(255, 45, 141, 0.35));
}

html.dark .ab-shield-svg {
    filter: drop-shadow(0 15px 50px rgba(255, 45, 141, 0.5));
}

.ab-shield-body {
    fill: var(--ab-shield-fill);
    stroke: var(--ab-shield-stroke);
    stroke-width: 2.5;
    transition: fill 0.3s;
}

/* SR Logo on shield */
.ab-shield-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -80px;
    margin-left: -35px;
    object-fit: contain;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

/* ===== FLOATING ICONS - Circular badges around shield ===== */
.ab-float-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--ab-float-bg);
    border: 1.5px solid var(--ab-float-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ab-pink);
    box-shadow: 0 4px 20px rgba(255, 45, 141, 0.15);
    backdrop-filter: blur(10px);
    z-index: 5;
    animation: floatOrbit 5s ease-in-out infinite;
}

/* Position floating icons around the shield - matching reference */
.ab-f-star    { top: 5%;   left: 15%;  animation-delay: 0s;    }
.ab-f-zap     { top: 2%;   left: 50%;  margin-left: -20px; animation-delay: 0.8s; }
.ab-f-shield  { top: 5%;   right: 15%; animation-delay: 1.6s;  }
.ab-f-lock    { bottom: 28%; right: 8%; animation-delay: 2.4s;  }
.ab-f-check   { bottom: 28%; left: 8%;  animation-delay: 3.2s;  }

@keyframes floatOrbit {
    0%, 100% { transform: translateY(0) scale(1); }
    25%      { transform: translateY(-6px) scale(1.05); }
    50%      { transform: translateY(-3px) scale(0.95); }
    75%      { transform: translateY(-8px) scale(1.02); }
}

/* Pedestal - 3D platform under shield */
.ab-pedestal {
    position: absolute;
    bottom: 8%;
    left: 50%;
    width: 200px;
    height: 50px;
    margin-left: -100px;
    pointer-events: none;
    z-index: 1;
}

/* ===== MISSION & VISION ===== */
.ab-mv-section { background: var(--ab-bg); padding: 50px 0 70px; }

.ab-mv-wrapper {
    display: flex;
    background: var(--ab-mv-bg);
    border: 1px solid var(--ab-mv-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 50px var(--ab-shadow), inset 0 0 0 1px var(--ab-mv-border);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ab-mv-card {
    flex: 1;
    padding: 48px 40px;
    text-align: center;
}

.ab-mv-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--ab-pink), transparent);
    align-self: stretch;
    margin: 36px 0;
    opacity: 0.4;
}

.ab-mv-icon-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ab-mv-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 45, 141, 0.5) 0%, transparent 70%);
    filter: blur(20px);
    animation: mvGlowPulse 3.5s ease-in-out infinite;
}

@keyframes mvGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50%      { transform: scale(1.3); opacity: 1; }
}

.ab-mv-icon-wrap svg {
    position: relative;
    z-index: 1;
    color: var(--ab-pink);
}

.ab-mv-title {
    color: var(--ab-pink);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ab-mv-text {
    color: var(--ab-text-muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 340px;
    margin: 0 auto;
}

/* ===== SECTION HEADERS ===== */
.ab-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    padding: 0 20px;
}

.ab-section-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    color: var(--ab-text);
}

.ab-section-title span { display: inline; }

.ab-section-subtitle {
    color: var(--ab-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== CARDS GRID - 5 columns for reference match ===== */
.ab-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ab-card {
    background: var(--ab-card-bg);
    border: 1px solid var(--ab-card-border);
    border-radius: 18px;
    padding: 28px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.ab-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--ab-shadow);
    border-color: rgba(255, 45, 141, 0.25);
}

.ab-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--ab-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--ab-pink);
    background: transparent;
    transition: all 0.3s ease;
}

.ab-card:hover .ab-card-icon {
    background: var(--ab-pink);
    color: #ffffff;
    transform: scale(1.05);
}

.ab-card-title {
    color: var(--ab-text);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ab-card-text {
    color: var(--ab-text-muted);
    font-size: 12px;
    line-height: 1.6;
}

/* ===== STATS BAR - Compact pink bar matching reference ===== */
.ab-stats-section { padding: 20px; background: var(--ab-bg); }

.ab-stats-bar {
    background: linear-gradient(135deg, #c2185b, #e91e63);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 0;
}

html.dark .ab-stats-bar {
    background: linear-gradient(135deg, rgba(255, 45, 141, 0.25), rgba(255, 95, 168, 0.35));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 45, 141, 0.25);
    box-shadow: 0 8px 32px rgba(255, 45, 141, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ab-stat-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 8px;
}

.ab-stat-icon {
    display: flex;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 2px;
}

.ab-stat-icon svg {
    width: 20px;
    height: 20px;
}

.ab-stat-number {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.ab-stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.ab-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    align-self: center;
    flex-shrink: 0;
}

/* ===== CTA ===== */
.ab-cta-card {
    background: var(--ab-card-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px var(--ab-shadow);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--ab-card-border);
}

.ab-cta-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--ab-pink), var(--ab-pink-light));
}

.ab-cta-content {
    padding: 44px 40px;
    text-align: center;
}

.ab-cta-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--ab-text);
    margin-bottom: 12px;
}

.ab-cta-text {
    color: var(--ab-text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.ab-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .ab-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .ab-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .ab-hero-subtitle { margin: 0 auto 32px; }
    .ab-hero-buttons { justify-content: center; }
    .ab-shield-scene { width: 360px; height: 400px; }
    .ab-rings { width: 340px; height: 340px; margin-top: -170px; margin-left: -170px; }
    .ab-mv-wrapper { flex-direction: column; }
    .ab-mv-divider {
        width: auto;
        height: 1px;
        margin: 0 36px;
        background: linear-gradient(to right, transparent, var(--ab-pink), transparent);
    }
    .ab-mv-card { padding: 36px 28px; }
    .ab-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .ab-stats-bar { flex-wrap: wrap; gap: 20px; padding: 28px; }
    .ab-stat-divider { display: none; }
    .ab-stat-item { min-width: 130px; }
    .ab-section-title { font-size: 28px; }
    .ab-hero-title { font-size: 36px; }
}

@media (max-width: 576px) {
    .ab-hero { padding: 60px 0 40px; }
    .ab-hero-title { font-size: 28px; }
    .ab-hero-label { font-size: 11px; }
    .ab-shield-scene { width: 300px; height: 340px; }
    .ab-rings { width: 280px; height: 280px; margin-top: -140px; margin-left: -140px; }
    .ab-shield-wrap { width: 170px; height: 220px; margin-top: -125px; margin-left: -85px; }
    .ab-shield-logo { width: 60px; height: 60px; margin-top: -70px; margin-left: -30px; }
    .ab-float-icon { width: 36px; height: 36px; }
    .ab-cards-grid { grid-template-columns: 1fr; }
    .ab-cta-content { padding: 32px 24px; }
    .ab-cta-buttons { flex-direction: column; }
    .ab-btn { width: 100%; }
    .ab-stats-bar { padding: 24px 16px; }
    .ab-stat-number { font-size: 22px; }
    .ab-section-title { font-size: 24px; }
    .ab-mv-card { padding: 28px 20px; }
    .ab-mv-icon-wrap { width: 60px; height: 60px; }
}