/* ════════════════════════════════
   SECTIONS — COMMON + ABOUT +
   SOLUTION + SERVICES + WHY
   jotno.ai — sections.css
════════════════════════════════ */

/* ─── COMMON ─── */
section {
    padding: 90px 5%;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 600;
    max-width: 580px;
    margin: 0 auto 3rem;
    line-height: 1.75;
}

.divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--cyan));
    border-radius: 4px;
    margin: 0.8rem auto 1.5rem;
}

.cta-wrap {
    text-align: center;
    margin-top: 1rem;
}

/* ─── ABOUT ─── */
#about {
    background: transparent;
}

.about-inner {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 10px 50px rgba(8, 145, 178, 0.1);
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 740px;
    margin: 0 auto;
}

.vm-card {
    border-radius: var(--radius);
    padding: 1.8rem 2rem;
    text-align: center;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.5;
    color: white;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background: repeating-linear-gradient(45deg, white 0px, white 1px, transparent 1px, transparent 12px);
}

.vm-card.vision {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    box-shadow: 0 8px 30px rgba(8, 145, 178, 0.35);
}

.vm-card.mission {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.35);
}

.vm-label {
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 0.4rem;
    opacity: 0.85;
}

/* ─── SOLUTION ─── */
#solution {
    background: transparent;
}

.steps-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(6, 182, 212, 0.25);
    border-radius: 50px;
    padding: 0.5rem 1.8rem;
    font-weight: 800;
    color: var(--primary);
    font-size: 0.93rem;
    box-shadow: 0 4px 18px rgba(8, 145, 178, 0.12);
    margin-bottom: 3rem;
}

.steps-track {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 130px;
}

.step-circle {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 10px 32px rgba(8, 145, 178, 0.32);
    position: relative;
    z-index: 1;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid rgba(255, 255, 255, 0.7);
}

.step-circle:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 18px 50px rgba(8, 145, 178, 0.4);
}

.step-item:nth-child(even) .step-circle {
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
}

.step-num {
    position: absolute;
    top: -6px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    font-size: 0.68rem;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow {
    font-size: 1.8rem;
    color: var(--primary);
    opacity: 0.4;
    padding-top: 28px;
    flex-shrink: 0;
}

.step-label {
    font-weight: 800;
    font-size: 0.86rem;
    color: var(--text);
    max-width: 110px;
    line-height: 1.4;
}

.solution-icon {
    height: 50px;
    width: 50px;
}

/* ─── SERVICES ─── */
#services {
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(8, 145, 178, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 55px rgba(8, 145, 178, 0.2);
}

.service-header {
    padding: 1.1rem 1.5rem;
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 12px);
}

.service-card:nth-child(1) .service-header {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.service-card:nth-child(2) .service-header {
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
}

.service-card:nth-child(3) .service-header {
    background: linear-gradient(135deg, #059669, #10b981);
}

.service-card:nth-child(4) .service-header {
    background: linear-gradient(135deg, #dc2626, #f87171);
}

.service-card:nth-child(5) .service-header {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.service-card:nth-child(6) .service-header {
    background: linear-gradient(135deg, #1d4ed8, #0891b2);
}

.service-card:nth-child(7) .service-header {
    background: linear-gradient(135deg, #059669, #10b981);
}

.service-card:nth-child(8) .service-header {
    background: linear-gradient(135deg, #dc2626, #f87171);
}

.service-body {
    padding: 1.3rem 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid rgba(8, 145, 178, 0.07);
}

.service-item:last-child {
    border-bottom: none;
}

.check {
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ─── WHY CHOOSE ─── */
#why {
    background: transparent;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    padding: 2.2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(8, 145, 178, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 55px rgba(8, 145, 178, 0.2);
}

.why-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: white;
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 28px rgba(8, 145, 178, 0.3);
    transition: transform 0.3s;
}

.why-card:hover .why-icon {
    transform: rotate(5deg) scale(1.1);
}

.why-card h3 {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
}

.why-card p {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.5rem;
    font-weight: 600;
    line-height: 1.6;
}

.why-choose-icon {
    height: 50px;
    width: 50px;
}