/* ============================================================
   HOME PAGE — DARK EDITORIAL DESIGN
   ============================================================ */

/* ── Base ── */
body { background: #0d0d0d; color: #d4d4d4; }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 72px;
    overflow: hidden;
    background: #0d0d0d;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(122,28,46,0.14) 0%, transparent 70%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 56px;
    position: relative;
    z-index: 1;
}

/* badge */
.hero-badge { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }

.badge-primary {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    background: #7A1C2E;
    padding: 5px 12px;
    border-radius: 4px;
}

.badge-muted {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    background: #242424;
    border: 1px solid #333;
    padding: 5px 12px;
    border-radius: 4px;
}

/* title */
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.13;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #c0392b, #e87070);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 0.97rem;
    color: #999;
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* visual */
.hero-visual { display: flex; justify-content: flex-end; align-items: center; }

.hero-illustration { position: relative; width: 100%; max-width: 520px; }

.premium-feature-img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    border: 1px solid #1e1e1e;
}

/* float badges */
.float-badge {
    position: absolute;
    background: #141414;
    border: 1px solid #242424;
    border-radius: 30px;
    padding: 7px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ccc;
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
}

.float-1 { top: -16px; right: 16px; animation-delay: 0s; }
.float-2 { bottom: 20px; left: -16px; animation-delay: 1s; }
.float-3 { top: 45%; right: -16px; animation-delay: 2s; animation-name: float3; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}
@keyframes float3 {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(calc(-50% - 7px)) translateX(0); }
}

/* ── Muted section ── */
.bg-muted-section { background: #080808; }

/* ── Section shared ── */
.section { padding: 80px 0; background: #0d0d0d; }

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: #fff;
    background: #7A1C2E;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #999;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Value Cards (why-us) ── */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 14px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, transform 0.25s;
    min-height: 200px;
}

.value-card.card--image, .value-card.card--overlay {
    background: #111 !important;
    min-height: 200px !important;
    background-image: none !important;
}

.value-card:hover {
    border-color: #7A1C2E;
    transform: translateY(-4px);
}

.value-card .icon-box {
    display: flex;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(122,28,46,0.15);
    border: 1px solid rgba(122,28,46,0.3);
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.value-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 10px;
}

.value-card p { font-size: 0.88rem; color: #666; line-height: 1.65; }

/* ── Services Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 14px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, transform 0.25s;
    position: relative;
}

.service-card.card--image, .service-card.card--overlay {
    background: #111 !important;
    background-image: none !important;
    min-height: auto !important;
}

.service-card:hover {
    border-color: #7A1C2E;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(122,28,46,0.12);
}

.service-icon {
    display: flex !important;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(122,28,46,0.15);
    border: 1px solid rgba(122,28,46,0.3);
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 10px;
}

.service-card p { font-size: 0.88rem; color: #666; line-height: 1.65; margin-bottom: 20px; }

.link-arrow {
    font-size: 0.8rem;
    font-weight: 700;
    color: #888;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    margin-top: auto;
}

.link-arrow:hover { color: #c0392b; }

/* CTA service card */
.service-cta-card {
    background: linear-gradient(135deg, #1a0810, #0f0f0f) !important;
    border: 1px solid #3a1020 !important;
    background-image: none !important;
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 36px 40px;
}

.service-cta-card .service-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
}

.service-cta-card h3 { color: #f0f0f0 !important; font-size: 1.2rem !important; margin-bottom: 8px; }
.service-cta-card p { color: #999 !important; margin-bottom: 0; }

.service-cta-card .btn {
    margin-left: auto;
    flex-shrink: 0;
    background: #7A1C2E !important;
    color: #fff !important;
    border: none !important;
    white-space: nowrap;
}

/* ── Benefits Grid ── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    background: #111;
    border: 1px solid #1e1e1e;
    border-radius: 14px;
    padding: 32px 28px;
    transition: border-color 0.25s, transform 0.25s;
}

.benefit-item.card--image {
    background: #111 !important;
    background-image: none !important;
    min-height: auto !important;
}

.benefit-item:hover {
    border-color: #7A1C2E;
    transform: translateY(-3px);
}

.benefit-content { height: 100%; display: flex; flex-direction: column; }

.benefit-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f0f0f0 !important;
    margin-bottom: 10px;
}

.benefit-content p { font-size: 0.88rem; color: #999 !important; line-height: 1.65; margin-bottom: 18px; }

.benefit-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(122,28,46,0.1);
    border-radius: 8px;
    border-left: 3px solid #7A1C2E;
    margin-top: auto;
}

.benefit-stat strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: #c0392b !important;
    font-family: var(--font-heading);
}

.benefit-stat span { font-size: 0.78rem; color: #999 !important; }

/* ── CTA Section ── */
.cta-section {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(122,28,46,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin: 14px 0 18px;
    letter-spacing: -0.02em;
}

.cta-inner p {
    color: #999;
    max-width: 480px;
    margin: 0 auto 36px;
    font-size: 0.97rem;
    line-height: 1.7;
}

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: 1.5px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #7A1C2E;
    color: #fff;
    border-color: #7A1C2E;
}

.btn-primary:hover { background: #9b2335; border-color: #9b2335; color: #fff; }

.btn-outline {
    background: transparent;
    color: #ccc;
    border-color: #2a2a2a;
}

.btn-outline:hover { border-color: #7A1C2E; color: #fff; }

.btn-lg { padding: 14px 30px; font-size: 0.93rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-subtitle { margin: 0 auto 32px; }
    .hero-actions { justify-content: center; }
    .hero-visual { justify-content: center; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .service-cta-card { grid-column: span 2; flex-direction: column; text-align: center; }
    .service-cta-card .btn { margin: 0 auto; }
    .grid-4 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    .hero { padding: 90px 0 56px; min-height: auto; }
    .services-grid { grid-template-columns: 1fr; }
    .service-cta-card { grid-column: span 1; }
    .benefits-grid { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .float-1, .float-2, .float-3 { display: none; }
}