/* =========================================================
   INDEX PAGE STYLING: EDITORIAL AGENCY CASINO
   Inspired by Reference Image (Hero, Split About, Portfolio, Services, Testimonials, Blog, Guides)
   ========================================================= */

/* =========================================================
   1. HERO SECTION (Moody Atmospheric Dark Slate)
   ========================================================= */
.hero-editorial {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 75% 25%, rgba(37, 99, 235, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                linear-gradient(180deg, #090e17 0%, #0d1524 50%, #101a2d 100%);
    color: var(--text-light);
    overflow: hidden;
}

.hero-editorial::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.hero-editorial-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Hero Content */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-editorial h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-editorial h1 .highlight-text {
    background: linear-gradient(135deg, #60a5fa 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 24px var(--primary-glow);
    transition: all var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #3b82f6 0%, var(--primary) 100%);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e2e8f0;
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    transition: all var(--transition);
}

.btn-hero-secondary:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Stats Glass Strip */
.hero-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    gap: 12px;
}

.hero-stat-item {
    text-align: center;
    padding: 0 8px;
    position: relative;
}

.hero-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-stat-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.hero-stat-label {
    display: block;
    font-size: 0.76rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 4px;
}

/* Right Hero Visual Card (Casino VIP Persona) */
.hero-visual-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.hero-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-brand {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: #ffffff;
}

.hero-card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.hero-card-media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    background: #0f172a;
}

.hero-card-media img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-visual-card:hover .hero-card-media img {
    transform: scale(1.04);
}

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(0deg, rgba(12, 18, 30, 0.95) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot-green {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: pulseGlow 1.5s infinite;
}

.hero-card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hero-feature-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature-icon {
    font-size: 1.2rem;
}

.hero-feature-info strong {
    display: block;
    font-size: 0.82rem;
    color: #ffffff;
}

.hero-feature-info span {
    font-size: 0.7rem;
    color: #94a3b8;
}

/* =========================================================
   2. SPLIT "ABOUT" SECTION (Matching Reference Image)
   ========================================================= */
.section-split-about {
    padding: 90px 0;
    background: var(--bg-body);
}

.split-about-card {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
}

/* Left Half: Dark / Visual with Bold Typography Overlay */
.split-about-visual {
    position: relative;
    background: #080d16;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px;
    overflow: hidden;
}

.split-about-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    transition: transform 0.6s ease;
}

.split-about-card:hover .split-about-bg {
    transform: scale(1.05);
}

.split-about-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 13, 22, 0.2) 0%, rgba(8, 13, 22, 0.95) 85%);
}

.split-about-overlay-content {
    position: relative;
    z-index: 2;
}

.split-about-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 12px;
}

.split-about-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.split-about-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.split-chip {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Right Half: Sleek Dark Surface */
.split-about-content {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-card);
}

.split-about-role {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 6px;
}

.split-about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.5vw, 2.3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.split-about-desc {
    font-size: 0.98rem;
    color: var(--text-muted-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

.split-about-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 36px;
}

.split-point-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.split-point-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.12);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.split-point-text strong {
    display: block;
    font-size: 0.92rem;
    color: #ffffff;
}

.split-point-text span {
    font-size: 0.82rem;
    color: var(--text-muted-light);
}

/* Follow Us / Social Circles */
.split-about-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.split-about-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.split-about-socials-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: #cbd5e1;
}

.social-circle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.social-circle-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.btn-split-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 14px var(--primary-glow);
    transition: all var(--transition);
}

.btn-split-cta:hover {
    background: linear-gradient(135deg, #3b82f6 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
}

/* =========================================================
   3. PORTFOLIO GRID SECTION (Atmospheric Midnight)
   ========================================================= */
.section-portfolio {
    padding: 90px 0;
    background: #0b1120;
}

.portfolio-header-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-header-bar .title-wrap h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 6px;
}

.portfolio-header-bar .title-wrap p {
    font-size: 1rem;
    color: var(--text-muted-light);
}

.btn-view-all-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #cbd5e1;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 22px;
    border-radius: var(--radius-pill);
    transition: all var(--transition);
}

.btn-view-all-pill:hover {
    border-color: var(--cyan);
    color: #ffffff;
    background: rgba(6, 182, 212, 0.1);
}

/* 6-Grid Portfolio Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.portfolio-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
    border-color: rgba(6, 182, 212, 0.35);
}

.portfolio-media-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #0f172a;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.08);
}

.portfolio-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.portfolio-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.portfolio-content p {
    font-size: 0.88rem;
    color: var(--text-muted-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.portfolio-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.btn-card-play {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--cyan);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}

.btn-card-play:hover {
    color: #38bdf8;
    transform: translateX(3px);
}

.portfolio-rtp-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #4ade80;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.25);
    padding: 2px 8px;
    border-radius: 4px;
}

/* =========================================================
   4. CORE SERVICES / ADVANTAGES (Deep Midnight Blue #162238)
   ========================================================= */
.section-services {
    padding: 100px 0;
    background: linear-gradient(180deg, #101a2c 0%, var(--bg-services) 50%, #0d1524 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.section-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 10%, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    position: relative;
    z-index: 1;
}

.service-card {
    text-align: center;
    padding: 36px 28px;
    border-radius: var(--radius-md);
    background: var(--bg-services-card);
    border: 1px solid var(--bg-services-border);
    transition: all var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.service-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.1);
    border: 1.5px solid rgba(6, 182, 212, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--cyan);
    font-size: 1.6rem;
    transition: all var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--cyan);
    color: #0c121e;
    box-shadow: 0 0 24px var(--cyan-glow);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* =========================================================
   5. REAL PLAYER TESTIMONIALS (Dark Slate Elegance)
   ========================================================= */
.section-testimonials {
    padding: 96px 0;
    background: var(--bg-body);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 36px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(6, 182, 212, 0.35);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1e293b;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 0 2px var(--cyan);
    margin-bottom: 18px;
    background: #1e293b;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 22px;
    flex-grow: 1;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.testimonial-handle {
    display: block;
    font-size: 0.8rem;
    color: var(--cyan);
    font-weight: 600;
    margin-top: 2px;
}

/* =========================================================
   6. LATEST FROM BLOG / GUIDES (Atmospheric Dark)
   ========================================================= */
.section-blog {
    padding: 96px 0;
    background: #0b1120;
}

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

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(6, 182, 212, 0.35);
}

.blog-media {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #0f172a;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.06);
}

.blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    color: var(--text-muted-light);
    margin-bottom: 12px;
}

.blog-author {
    font-weight: 600;
    color: var(--cyan);
}

.blog-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 10px;
}

.blog-body p {
    font-size: 0.88rem;
    color: var(--text-muted-light);
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-link {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--cyan);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}

.blog-link:hover {
    color: #38bdf8;
    transform: translateX(4px);
}

/* =========================================================
   7. SEO CONTENT & PLATFORM GUIDE SECTION (Dark Editorial)
   ========================================================= */
.section-platform-seo {
    padding: 96px 0;
    background: var(--bg-body);
}

.seo-card-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-md);
}

.seo-card-wrapper h3.seo-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.seo-card-wrapper h4.seo-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cyan);
    margin: 28px 0 10px;
}

.seo-card-wrapper p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* =========================================================
   DUAL-TRACK INTERACTIVE STEPPER GUIDE (Cara Daftar & Login)
   ========================================================= */
.guide-section-wrapper {
    background: linear-gradient(145deg, #10192e 0%, #0c1424 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 52px 40px;
    margin-bottom: 48px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.guide-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--primary), transparent);
}

.guide-main-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 40px;
}

.guide-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.25);
    border-radius: var(--radius-pill);
    padding: 6px 18px;
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.guide-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: pulseGlow 2s infinite ease-in-out;
}

.guide-main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.guide-main-title .highlight-text {
    background: linear-gradient(135deg, #60a5fa 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.guide-main-desc {
    font-size: 1rem;
    color: var(--text-muted-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Filter Tabs */
.guide-filter-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
    padding: 4px;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.guide-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    color: #94a3b8;
    background: transparent;
    transition: all var(--transition);
}

.guide-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.guide-tab-btn.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    box-shadow: 0 4px 14px var(--primary-glow);
}

/* Dual Grid */
.guide-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.guide-column-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition);
    position: relative;
}

.guide-column-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.guide-col-daftar {
    border-top: 3px solid var(--cyan);
}

.guide-col-login {
    border-top: 3px solid var(--primary);
}

.guide-col-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 22px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-col-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.icon-cyan {
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--cyan);
    box-shadow: 0 0 16px var(--cyan-glow);
}

.icon-blue {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--primary);
    box-shadow: 0 0 16px var(--primary-glow);
}

.guide-col-header-text {
    flex-grow: 1;
}

.guide-col-sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 2px;
}

.guide-col-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
}

.guide-col-count {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    flex-shrink: 0;
}

.guide-col-daftar .guide-col-count {
    background: rgba(6, 182, 212, 0.12);
    color: var(--cyan);
    border: 1px solid rgba(6, 182, 212, 0.25);
}

.guide-col-login .guide-col-count {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

/* Timeline & Steps */
.guide-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.timeline-cyan::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(180deg, var(--cyan) 0%, rgba(6, 182, 212, 0.15) 100%);
}

.timeline-blue::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary) 0%, rgba(59, 130, 246, 0.15) 100%);
}

.guide-step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.guide-step-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0d1525;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}

.timeline-cyan .guide-step-node {
    border: 2px solid var(--cyan);
    box-shadow: 0 0 14px var(--cyan-glow);
}

.timeline-blue .guide-step-node {
    border: 2px solid var(--primary);
    box-shadow: 0 0 14px var(--primary-glow);
}

.guide-node-num {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
}

.guide-step-body {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    transition: all var(--transition);
}

.guide-step-item:hover .guide-step-body {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.timeline-cyan .guide-step-item:hover .guide-step-body {
    border-color: rgba(6, 182, 212, 0.4);
}

.timeline-blue .guide-step-item:hover .guide-step-body {
    border-color: rgba(59, 130, 246, 0.4);
}

.guide-step-title-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.guide-step-icon {
    font-size: 0.88rem;
}

.timeline-cyan .guide-step-icon {
    color: var(--cyan);
}

.timeline-blue .guide-step-icon {
    color: #60a5fa;
}

.guide-step-title-wrap strong {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
}

.guide-step-body p {
    font-size: 0.86rem;
    color: var(--text-muted-light);
    line-height: 1.6;
    margin: 0;
}

/* Bottom CTA Actions */
.guide-column-footer {
    padding-top: 10px;
}

.btn-guide-action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 22px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all var(--transition);
}

.btn-guide-register {
    background: linear-gradient(135deg, var(--cyan) 0%, #0284c7 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 16px var(--cyan-glow);
}

.btn-guide-register:hover {
    background: linear-gradient(135deg, #38bdf8 0%, var(--cyan) 100%);
    box-shadow: 0 6px 22px rgba(6, 182, 212, 0.5);
    transform: translateY(-2px);
}

.btn-guide-login {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
}

.btn-guide-login:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    box-shadow: 0 4px 18px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Fallback simple steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 24px 0 32px;
}

.step-card {
    background: #15223c;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    position: relative;
    transition: all var(--transition);
}

.step-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.step-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Platform Specifications Table */
.spec-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 28px 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    background: var(--bg-card);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.spec-table th,
.spec-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-light);
}

.spec-table th {
    background: #16233d;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    width: 35%;
    text-align: left;
}

.spec-table td {
    color: #cbd5e1;
}

.spec-badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4ade80;
    font-weight: 700;
}

/* =========================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ========================================================= */

@media (max-width: 1024px) {
    .hero-editorial {
        padding: 130px 0 70px;
    }

    .hero-editorial-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-editorial-left {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .hero-stat-item:nth-child(2)::after {
        display: none;
    }

    .hero-visual-card {
        max-width: 600px;
        margin: 0 auto;
    }

    .split-about-card {
        grid-template-columns: 1fr;
    }

    .split-about-visual {
        min-height: 320px;
        padding: 36px 28px;
    }

    .portfolio-grid,
    .services-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .guide-dual-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .hero-editorial {
        padding: 100px 0 50px;
    }

    .hero-editorial h1 {
        font-size: clamp(1.85rem, 6vw, 2.5rem);
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    .section-split-about,
    .section-portfolio,
    .section-services,
    .section-testimonials,
    .section-blog,
    .section-platform-seo {
        padding: 56px 0;
    }

    .split-about-content {
        padding: 32px 20px;
    }

    .split-about-heading {
        font-size: 2rem;
    }

    .split-about-title {
        font-size: 1.45rem;
    }

    .portfolio-grid,
    .services-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-header-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 14px;
    }

    .btn-view-all-pill {
        align-self: center;
    }

    .guide-section-wrapper {
        padding: 32px 20px;
    }

    .seo-card-wrapper {
        padding: 28px 18px;
        border-radius: 14px;
    }

    .seo-card-wrapper h3.seo-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 640px) {
    .hero-editorial {
        padding: 90px 0 40px;
    }

    .hero-stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 12px;
    }

    .hero-stat-val {
        font-size: 1.2rem;
    }

    .hero-stat-label {
        font-size: 0.68rem;
    }

    .hero-visual-card {
        padding: 16px 12px;
    }

    .hero-feature-row {
        flex-direction: column;
        gap: 10px;
    }

    .split-about-visual {
        min-height: 240px;
        padding: 22px 16px;
    }

    .split-about-content {
        padding: 24px 16px;
    }

    .split-about-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        text-align: center;
    }

    .split-about-socials {
        justify-content: center;
    }

    .btn-split-cta {
        width: 100%;
        justify-content: center;
    }

    .cta-banner-strip {
        padding: 16px 0;
    }

    .cta-banner-text {
        font-size: 0.9rem;
        text-align: center;
    }

    .btn-banner-pill {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .portfolio-media-wrap {
        height: 175px;
    }

    .portfolio-content {
        padding: 16px 14px;
    }

    .service-card {
        padding: 24px 16px;
    }

    .service-icon-wrap {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
        margin-bottom: 14px;
    }

    .testimonial-card {
        padding: 24px 16px;
    }

    .testimonial-avatar {
        width: 64px;
        height: 64px;
        margin-bottom: 12px;
    }

    .blog-media {
        height: 170px;
    }

    .blog-body {
        padding: 16px 14px;
    }

    .guide-section-wrapper {
        padding: 22px 14px;
        border-radius: 14px;
    }

    .guide-main-title {
        font-size: 1.3rem;
    }

    .guide-main-desc {
        font-size: 0.86rem;
        margin-bottom: 16px;
    }

    .guide-filter-tabs {
        width: 100%;
        border-radius: 12px;
        padding: 3px;
        gap: 3px;
    }

    .guide-tab-btn {
        flex: 1 1 100%;
        justify-content: center;
        font-size: 0.74rem;
        padding: 8px;
    }

    .guide-column-card {
        padding: 18px 14px;
        border-radius: 12px;
    }

    .guide-col-header {
        gap: 10px;
        padding-bottom: 14px;
        margin-bottom: 16px;
    }

    .guide-col-icon-wrap {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }

    .guide-col-title {
        font-size: 0.98rem;
    }

    .guide-timeline {
        gap: 12px;
        margin-bottom: 20px;
    }

    .guide-step-item {
        gap: 10px;
    }

    .guide-step-node {
        width: 32px;
        height: 32px;
    }

    .guide-node-num {
        font-size: 0.8rem;
    }

    .timeline-cyan::before,
    .timeline-blue::before {
        left: 15px;
        top: 16px;
        bottom: 16px;
    }

    .guide-step-body {
        padding: 11px 12px;
    }

    .guide-step-title-wrap strong {
        font-size: 0.88rem;
    }

    .guide-step-body p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .btn-guide-action {
        font-size: 0.78rem;
        padding: 11px 14px;
    }

    .spec-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 8px;
        margin: 18px 0;
    }

    .spec-table th,
    .spec-table td {
        padding: 10px 10px;
        font-size: 0.78rem;
    }

    .spec-table th {
        width: 38%;
        min-width: 95px;
    }

    .spec-table td {
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 1.65rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero-stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 10px;
    }

    .hero-stat-item::after {
        display: none !important;
    }

    .hero-stat-val {
        font-size: 1.15rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
    }

    .split-chip {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .service-card {
        padding: 20px 14px;
    }

    .testimonial-card {
        padding: 20px 14px;
    }

    .blog-body {
        padding: 14px 12px;
    }
}
