/* ═══ SEO REDIRECT MANAGER — YELLOW ACCENT THEME ═══ */
:root {
    --srm-bg: #0a0a0a;
    --srm-surface: #1a1a1a;
    --srm-accent: #ffdb00;
    --srm-accent-glow: rgba(255, 219, 0, 0.2);
    --srm-accent-subtle: rgba(255, 219, 0, 0.05);
    --srm-text: #ffffff;
    --srm-text-dim: #888888;
    --srm-text-muted: #555555;
    --srm-border: #1a1a1a;
    --srm-teal: #004d56;
}

.srm-page {
    background: var(--srm-bg);
    color: var(--srm-text);
}

/* ═══ HERO ═══ */
.srm-hero {
    padding: 160px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.srm-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 219, 0, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.srm-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.srm-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid var(--srm-accent);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--srm-accent);
    margin-bottom: 32px;
    background: var(--srm-accent-subtle);
}

.srm-hero h1 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.srm-hero h1 .srm-hl {
    color: var(--srm-accent);
}

.srm-hero-sub {
    font-size: 18px;
    color: var(--srm-text-dim);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.srm-hero-sub strong {
    color: #ef4444;
}

.srm-cta-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.srm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: linear-gradient(90deg, #ffdb00, #ffd000, #ffdb00);
    color: #000;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(255, 219, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.3s;
}

.srm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(255, 219, 0, 0.35);
}

.srm-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: var(--srm-text);
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.srm-btn-ghost:hover {
    border-color: var(--srm-accent);
    background: var(--srm-accent-subtle);
}

/* ═══ PLATFORM BADGE ═══ */
.srm-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    font-size: 12px;
    color: var(--srm-text-muted);
}

.srm-platform-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--srm-surface);
    border: 1px solid var(--srm-border);
    border-radius: 8px;
    font-weight: 700;
    color: var(--srm-text-dim);
}

.srm-platform-soon {
    font-size: 11px;
    color: var(--srm-text-muted);
}

/* ═══ SECTIONS ═══ */
.srm-section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.srm-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.srm-section-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--srm-accent);
    margin-bottom: 16px;
}

.srm-section-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.srm-section-desc {
    font-size: 16px;
    color: var(--srm-text-dim);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══ PROBLEM CARDS ═══ */
.srm-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.srm-problem-card {
    background: var(--srm-surface);
    border: 1px solid var(--srm-border);
    border-radius: 16px;
    padding: 32px;
    transition: border-color 0.3s, transform 0.2s;
}

.srm-problem-card:hover {
    border-color: rgba(255, 219, 0, 0.3);
    transform: translateY(-4px);
}

.srm-problem-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.srm-problem-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.srm-problem-card p {
    font-size: 14px;
    color: var(--srm-text-dim);
    line-height: 1.7;
}

/* ═══ MODES / FEATURES ═══ */
.srm-modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.srm-mode-card {
    background: var(--srm-surface);
    border: 1px solid var(--srm-border);
    border-radius: 16px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.2s;
}

.srm-mode-card:hover {
    border-color: var(--srm-accent);
    transform: translateY(-4px);
}

.srm-mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--srm-accent);
    border-radius: 4px 0 0 4px;
}

.srm-mode-num {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--srm-accent);
    color: #000;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    line-height: 32px;
    text-align: center;
    margin-bottom: 16px;
}

.srm-mode-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.srm-mode-card p {
    font-size: 14px;
    color: var(--srm-text-dim);
    line-height: 1.7;
}

/* ═══ COMPARISON TABLE ═══ */
.srm-compare {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-top: 48px;
}

.srm-compare th {
    padding: 16px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--srm-text-muted);
    border-bottom: 1px solid var(--srm-border);
}

.srm-compare th:last-child {
    background: var(--srm-accent-subtle);
    color: var(--srm-accent);
    border-radius: 12px 12px 0 0;
}

.srm-compare td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--srm-text-dim);
}

.srm-compare td:last-child {
    background: var(--srm-accent-subtle);
    color: var(--srm-text);
    font-weight: 700;
}

.srm-compare tr:last-child td:last-child {
    border-radius: 0 0 12px 12px;
}

.srm-compare td:first-child {
    font-weight: 600;
    color: var(--srm-text);
}

/* ═══ PRICING ═══ */
.srm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.srm-price-card {
    background: var(--srm-surface);
    border: 1px solid var(--srm-border);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: border-color 0.3s, transform 0.2s;
}

.srm-price-card:hover {
    border-color: rgba(255, 219, 0, 0.3);
    transform: translateY(-4px);
}

.srm-price-card.featured {
    border-color: var(--srm-accent);
    box-shadow: 0 0 40px rgba(255, 219, 0, 0.08);
}

.srm-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--srm-accent);
    color: #000;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    border-radius: 100px;
    white-space: nowrap;
}

.srm-price-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--srm-text-dim);
    margin-bottom: 16px;
}

.srm-price-amount {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 4px;
}

.srm-price-period {
    font-size: 13px;
    color: var(--srm-text-muted);
    margin-bottom: 24px;
}

.srm-price-card .srm-btn-primary {
    width: 100%;
    justify-content: center;
}

.srm-price-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    text-align: left;
}

.srm-price-features li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--srm-text-dim);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.srm-price-features li::before {
    content: '✓ ';
    color: var(--srm-accent);
    font-weight: 700;
}

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

.srm-faq-item {
    border-bottom: 1px solid var(--srm-border);
    padding: 24px 0;
    transition: border-color 0.2s;
}

.srm-faq-item:hover {
    border-bottom-color: rgba(255, 219, 0, 0.3);
}

.srm-faq-q {
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.srm-faq-q:hover {
    color: var(--srm-accent);
}

.srm-faq-q::after {
    content: '+';
    font-size: 24px;
    color: var(--srm-accent);
    transition: transform 0.3s;
}

.srm-faq-item.open .srm-faq-q::after {
    transform: rotate(45deg);
}

.srm-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.srm-faq-item.open .srm-faq-a {
    max-height: 400px;
    padding-top: 16px;
}

.srm-faq-pain {
    margin-top: 10px;
    padding: 10px 14px;
    background: rgba(239, 68, 68, 0.06);
    border-left: 3px solid #ef4444;
    border-radius: 0 8px 8px 0;
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}

.srm-faq-item.open .srm-faq-pain {
    opacity: 1;
}

.srm-faq-a p {
    font-size: 14px;
    color: var(--srm-text-dim);
    line-height: 1.7;
}

/* ═══ CTA FINAL ═══ */
.srm-cta-final {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, transparent, rgba(255, 219, 0, 0.03));
    border-top: 1px solid var(--srm-border);
}

.srm-cta-final h2 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

/* ═══ TERMINAL DEMO ═══ */
.srm-terminal {
    background: #000;
    border: 1px solid rgba(255, 219, 0, 0.15);
    border-radius: 12px;
    max-width: 700px;
    margin: 48px auto 0;
    overflow: hidden;
}

.srm-terminal-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.srm-dot { width: 10px; height: 10px; border-radius: 50%; }
.srm-dot.r { background: #ef4444; }
.srm-dot.y { background: #eab308; }
.srm-dot.g { background: #22c55e; }

.srm-terminal-body {
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    line-height: 1.9;
    color: var(--srm-text-dim);
}

.srm-terminal-body .t-yellow { color: var(--srm-accent); }
.srm-terminal-body .t-green { color: #22c55e; }
.srm-terminal-body .t-red { color: #ef4444; }
.srm-terminal-body .t-dim { color: #555; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
    .srm-problem-grid { grid-template-columns: 1fr; }
    .srm-modes-grid { grid-template-columns: 1fr; }
    .srm-pricing-grid { grid-template-columns: 1fr; }
    .srm-compare { font-size: 12px; }
    .srm-compare th, .srm-compare td { padding: 10px 12px; }
    .srm-hero { padding: 130px 20px 70px; }
}
