/* ====== SECTIONS & BACKGROUNDS ====== */

.section {
    padding: 10rem 0;
}

.section-dark-radial {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, #1e293b 0, #020617 45%, #000 100%);
}

.section-dark-radial-alt {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, #020617 0, #020617 40%, #020617 60%, #000 100%);
}

.section-light-gradient {
    background: linear-gradient(135deg, #f9fafb 0%, #eef2ff 40%, #e0f2fe 100%);
}

.section-light {
    background: #ffffff;
}

.section-soft-gray {
    background: #f9fafb;
}

/* Container overlay inside dark sections */
.section-overlay-container {
    position: relative;
    z-index: 2;
}

/* ====== TYPOGRAPHY ====== */

.section-title h2 {
    margin-bottom: 0.5rem;
}

.section-title.text-dark h2 {
    color: #0f172a;
}

.section-title.text-dark p {
    color: #4b5563;
}

.section-title.text-light h2 {
    color: #e5e7eb;
}

.section-title.text-light p {
    color: #9ca3af;
}

/* Hero / intro text */

.hero-title {
    color: #f9fafb;
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero p.hero-lead {
    color: #9ca3af;
    font-size: 1.02rem;
    margin-bottom: 1rem;
}

.hero-feature-list {
    color: #e5e7eb;
    padding-left: 0;
    list-style: none;
    margin-bottom: 1.3rem;
}

.hero-feature-list li {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.hero-feature-list i {
    font-size: 0.95rem;
    color: #22c55e;
}

/* Text utilities */

.text-dark-main {
    color: #0f172a;
}

.text-dark-muted {
    color: #4b5563;
}

.text-light-main {
    color: #e5e7eb;
}

.text-light-muted {
    color: #9ca3af;
}

/* ====== BADGES / PILLS ====== */

.chip-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.chip-pill--dark {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
}

.chip-pill--light {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: #4b5563;
}

.chip-pill-small {
    font-size: 0.85rem;
}

/* ====== BUTTONS ====== */

.btn-pill-primary-green {
    border-radius: 10px;
    padding: 0.6rem 1.6rem;
    border: none;
    background: linear-gradient(135deg, #38bdf8, #22c55e);
    font-weight: 500;
}

.btn-pill-primary-blue {
    border-radius: 10px;
    padding: 0.6rem 1.6rem;
    border: none;
    background: linear-gradient(135deg, #38bdf8, dodgerblue);
    font-weight: 500;
}

.btn-pill-primary-orange {
    border-radius: 10px;
    padding: 0.6rem 1.6rem;
    border: none;
    background: linear-gradient(135deg, #cf7032, #eb7d34);
    font-weight: 500;
}

.btn-pill-primary-gray {
    border-radius: 10px;
    padding: 0.6rem 1.6rem;
    border: 1px solid white;
    background: linear-gradient(135deg, #000000, #000000);
    font-weight: 500;
}

.btn-pill-primary-cta-green {
    border-radius: 10px;
    padding: 0.7rem 1.8rem;
    border: none;
    background: linear-gradient(135deg, #38bdf8, #22c55e);
    font-weight: 500;
}

.btn-pill-primary-cta-blue {
    border-radius: 10px;
    padding: 0.7rem 1.8rem;
    border: none;
    background: linear-gradient(135deg, #38bdf8, dodgerblue);
    font-weight: 500;
}

.btn-pill-primary-cta-orange {
    border-radius: 10px;
    padding: 0.7rem 1.8rem;
    border: none;
    background: linear-gradient(135deg, orange, #ffa500);
    font-weight: 500;
}

.btn-pill-primary-cta-gray {
    border-radius: 10px;
    padding: 0.7rem 1.8rem;
    border: none;
    background: linear-gradient(135deg, #000000, #000000);
    font-weight: 500;
}

.btn-pill-secondary-dark {
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
    border: 1px solid rgba(148, 163, 184, 0.9);
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.7);
}

/* ====== CARDS / BOXES ====== */

/* Generic elevated card on light background */
.card-elevated {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
    padding: 2.6rem 1.5rem;
    overflow: hidden;
    height: 100%;
}

/* Smaller padding for benefit cards */
.card-benefit {
    padding: 1.4rem 1.5rem;
}

/* Soft card (use cases) */
.card-soft {
    position: relative;
    background: #f9fafb;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
    padding: 3.6rem 1.6rem;
    overflow: hidden;
    height: 100%;
}

/* Dark elevated card */
.card-dark {
    position: relative;
    height: 100%;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.9));
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.85);
    padding: 1.7rem 1.8rem 1.6rem;
    overflow: hidden;
}

/* Generic title & body for cards */
.card-title {
    color: #0f172a;
    font-size: 1.05rem;
    margin-top: 1.8rem;
}

.card-text {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ====== BENEFIT NUMBER LABEL ====== */

.benefit-label {
    position: absolute;
    inset: 12px auto auto 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a5b4fc;
}

/* ====== HERO IMAGE CARD ====== */

.hero-visual-card-green {
    position: relative;
    max-width: 460px;
    width: 100%;
    border-radius: 24px;
    padding: 1.4rem;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(50, 168, 82, 0.35));
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 26px 48px rgba(15, 23, 42, 0.85);
    overflow: hidden;
}

.hero-visual-card-blue {
    position: relative;
    max-width: 460px;
    width: 100%;
    border-radius: 24px;
    padding: 1.4rem;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(7, 159, 219, 0.35));
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 26px 48px rgba(15, 23, 42, 0.85);
    overflow: hidden;
}

.hero-visual-card {
    position: relative;
    max-width: 460px;
    width: 100%;
    border-radius: 24px;
    padding: 1.4rem;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.85));
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 26px 48px rgba(15, 23, 42, 0.85);
    overflow: hidden;
}

.hero-visual-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.hero-visual-meta span {
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-visual-meta-right {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #e5e7eb;
}

.hero-visual-meta-right-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
}

.hero-visual-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #9ca3af;
}

/* ====== STEP CARDS (HOW IT WORKS) ====== */

.step-card .step-title {
    margin-top: 1.9rem;
    color: #0f172a;
    font-size: 1.05rem;
}

.step-card .step-text {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.step-badge {
    position: absolute;
    inset: 1rem auto auto 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 2;
}

/* Color variants for step badge */
.step-badge--blue {
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    box-shadow: 0 10px 22px rgba(59, 130, 246, 0.45);
}

.step-badge--teal {
    background: linear-gradient(135deg, #0ea5e9, #22c55e);
    box-shadow: 0 10px 22px rgba(34, 197, 94, 0.4);
}

.step-badge--green {
    background: linear-gradient(135deg, #22c55e, #84cc16);
    box-shadow: 0 10px 22px rgba(22, 163, 74, 0.4);
}

/* ====== USE-CASE CARDS ====== */

.usecase-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.usecase-card-icon--blue {
    background: linear-gradient(135deg, #38bdf8, #4f46e5);
}

.usecase-card-icon--green {
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
}

.usecase-card-icon--orange {
    background: linear-gradient(135deg, orange, #e6884c);
}

.usecase-card-title {
    margin: 1rem 0;
    color: #0f172a;
    font-size: 1.5rem;
}

.usecase-card-list {
    color: #4b5563;
    font-size: 0.95rem;
    padding-left: 1.1rem;
    margin-bottom: 0;
}

.usecase-card-list li {
    padding: 0.5rem 0;
}

/* ====== DARK FEATURE CARDS (WHY US, WHAT WE SYNC) ====== */

.dark-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.dark-card-header-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0b1120;
}

.dark-card-header-icon--blue {
    background: linear-gradient(135deg, #38bdf8, #4f46e5);
}

.dark-card-header-icon--green {
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
}

.dark-card-header-icon--orange {
    background: linear-gradient(135deg, orange, #e6884c);
}

.dark-card-title {
    margin: 0;
    color: #f9fafb;
    font-size: 1.05rem;
}

.dark-card-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    color: #cbd5f5;
    font-size: 0.95rem;
}

.dark-card-list li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.55rem;
    padding: 0.25rem 0;
}

.dark-card-list li:last-child {
    margin-bottom: 0;
}

/* ====== CTA SECTION ====== */

.cta-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 0;
}

.cta-subpill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4b5563;
    margin-bottom: 1rem;
}

.cta-note {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #6b7280;
    font-size: 0.9rem;
}

/* ====== DECORATIVE GEOMETRIES (GENERIC) ====== */

.decor-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.decor-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.35);
    pointer-events: none;
}

.decor-dashed-rect {
    position: absolute;
    border-radius: 24px;
    border: 1px dashed rgba(148, 163, 184, 0.35);
    pointer-events: none;
}
