/* ============================================================
   Kiosk - Smart Incident Management IoT Application Stylesheet
   VSM Global Technologies
   ============================================================ */

/* ===== CSS Variables & Design Tokens ===== */
:root {
    --kiosk-primary: #1d4ed8;
    --kiosk-primary-dark: #1e3a8a;
    --kiosk-primary-light: #3b82f6;
    --kiosk-accent-cyan: #0284c7;
    --kiosk-accent-teal: #0d9488;
    --kiosk-good-bos: #10b981;
    --kiosk-good-bos-bg: #ecfdf5;
    --kiosk-good-bos-border: #a7f3d0;
    --kiosk-bad-bos: #ef4444;
    --kiosk-bad-bos-bg: #fef2f2;
    --kiosk-bad-bos-border: #fecaca;
    --kiosk-text-dark: #0f172a;
    --kiosk-text-muted: #475569;
    --kiosk-text-light: #64748b;
    --kiosk-card-bg: #ffffff;
    --kiosk-border: #e2e8f0;
    --kiosk-shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
    --kiosk-shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
    --kiosk-shadow-lg: 0 20px 45px rgba(29, 78, 216, 0.12);
}

/* ===== Typography & Gradients ===== */
.gradient-text {
    background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 50%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.gradient-text-emerald {
    background: linear-gradient(90deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.gradient-text-amber {
    background: linear-gradient(90deg, #dc2626 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ===== HERO SECTION ===== */
.kiosk-hero-section {
    position: relative;
    padding: 170px 0 90px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f7ff 35%, #e0f2fe 75%, #bae6fd 100%) !important;
    overflow: hidden;
}

.kiosk-hero-blob {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: kioskBlobFloat ease-in-out infinite;
}

@keyframes kioskBlobFloat {
    0%   { transform: translate(0px, 0px) scale(1); }
    25%  { transform: translate(24px, -20px) scale(1.05); }
    50%  { transform: translate(-18px, 22px) scale(0.96); }
    75%  { transform: translate(16px, 14px) scale(1.02); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.kiosk-hero-container {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
}

.kiosk-hero-content {
    flex: 1.05;
    animation: kioskFadeUp 0.8s ease both;
}

.kiosk-hero-visual {
    flex: 1.08;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: kioskFadeUp 1s ease 0.2s both;
}

@keyframes kioskFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge */
.kiosk-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e0edff;
    border: 1px solid #bfdbfe;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1d4ed8;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.kiosk-badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2563eb;
    box-shadow: 0 0 10px #3b82f6;
    animation: kioskPulseDot 2s infinite ease-in-out;
}

@keyframes kioskPulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.45); opacity: 0.6; }
}

/* Hero Titles */
.kiosk-hero-title {
    font-size: clamp(2.3rem, 4.2vw, 3.6rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.16;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.kiosk-hero-subtitle {
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 18px;
    line-height: 1.35;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kiosk-hero-subtitle::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, #1d4ed8, #0284c7);
    border-radius: 2px;
}

.kiosk-hero-lead {
    color: #334155;
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.kiosk-hero-subtext {
    color: #1e293b;
    font-size: 1.08rem;
    line-height: 1.78;
    margin-bottom: 24px;
    padding-left: 14px;
    border-left: 3px solid #2563eb;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 0 10px 10px 0;
    padding-top: 6px;
    padding-bottom: 6px;
}

/* Hero Pill Row */
.kiosk-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.kiosk-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #bfdbfe;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1e3a8a;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.06);
    transition: all 0.25s ease;
}

.kiosk-pill i {
    color: #2563eb;
    font-size: 1rem;
}

.kiosk-pill:hover {
    transform: translateY(-2px);
    border-color: #93c5fd;
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.12);
}

/* Hero Action Buttons */
.kiosk-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.btn-kiosk-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(29, 78, 216, 0.28);
    transition: all 0.3s ease;
}

.btn-kiosk-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(29, 78, 216, 0.4);
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
}

.btn-kiosk-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #1e293b !important;
    border: 1.5px solid #cbd5e1;
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 26px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-kiosk-outline:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
}

/* ===== HERO VISUAL SHOWCASE ===== */
.kiosk-showcase-wrapper {
    position: relative;
    width: 100%;
    max-width: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
}

.kiosk-glow-pedestal {
    position: absolute;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.32) 0%, rgba(56, 189, 248, 0.18) 55%, transparent 72%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(28px);
}

.kiosk-terminal-img-box {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.kiosk-terminal-img {
    height: clamp(520px, 48vw, 750px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 28px 48px rgba(15, 23, 42, 0.28));
    animation: kioskFloat 6s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes kioskFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* Floating Telemetry Chips */
.kiosk-float-card {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(219, 234, 254, 0.95);
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 16px 36px rgba(30, 58, 138, 0.16);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: kioskChipHover 4s ease-in-out infinite;
    pointer-events: auto;
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.kiosk-float-card:hover {
    transform: scale(1.05);
}

.card-telugu {
    top: 40px;
    right: -15px;
    animation-delay: 0s;
}

.card-auth {
    top: 48%;
    left: -35px;
    animation-delay: -2s;
}

.card-bos {
    bottom: 35px;
    right: -15px;
    animation-delay: -1s;
}

@keyframes kioskChipHover {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.kiosk-float-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.kiosk-float-icon.mic {
    background: linear-gradient(135deg, #1d4ed8, #0284c7);
    color: #ffffff;
}

.kiosk-float-icon.fingerprint {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #ffffff;
}

.kiosk-float-icon.bos {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #ffffff;
}

.kiosk-float-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.kiosk-float-sub {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
}

/* Audio Wave Equalizer */
.kiosk-audio-waves {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 18px;
    margin-left: 4px;
}

.kiosk-audio-waves span {
    display: inline-block;
    width: 3px;
    height: 100%;
    background: #0284c7;
    border-radius: 2px;
    animation: waveBar 1.2s infinite ease-in-out;
}

.kiosk-audio-waves span:nth-child(1) { animation-delay: 0.1s; height: 35%; }
.kiosk-audio-waves span:nth-child(2) { animation-delay: 0.3s; height: 75%; }
.kiosk-audio-waves span:nth-child(3) { animation-delay: 0.5s; height: 100%; }
.kiosk-audio-waves span:nth-child(4) { animation-delay: 0.2s; height: 60%; }
.kiosk-audio-waves span:nth-child(5) { animation-delay: 0.4s; height: 40%; }

@keyframes waveBar {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* ===== GENERAL SECTIONS ===== */
.kiosk-section {
    padding: 85px 0;
    background: #ffffff;
    position: relative;
}

.kiosk-alt-bg {
    background: #f8fbff;
}

.kiosk-container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

.kiosk-section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 50px;
}

.kiosk-section-tag {
    display: inline-block;
    background: #e0edff;
    color: #1d4ed8;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.kiosk-section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 16px;
}

.kiosk-section-description {
    font-size: 1.12rem;
    color: #475569;
    line-height: 1.8;
}

/* ===== COMPARISON: PAPER VS. DIGITAL ===== */
.kiosk-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.kiosk-compare-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: var(--kiosk-shadow-md);
}

.kiosk-compare-card.before-card {
    border: 1.5px solid #fed7aa;
    background: linear-gradient(180deg, #fffbf7 0%, #ffffff 100%);
}

.kiosk-compare-card.after-card {
    border: 1.5px solid #bfdbfe;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.1);
}

.kiosk-compare-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f1f5f9;
}

.kiosk-compare-badge-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.before-card .kiosk-compare-badge-icon {
    background: #fff7ed;
    color: #ea580c;
    border: 1px solid #fed7aa;
}

.after-card .kiosk-compare-badge-icon {
    background: linear-gradient(135deg, #1d4ed8, #0284c7);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}

.kiosk-compare-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.kiosk-compare-sub {
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.before-card .kiosk-compare-sub {
    color: #c2410c;
}

.after-card .kiosk-compare-sub {
    color: #1d4ed8;
}

.kiosk-compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.kiosk-compare-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.kiosk-compare-icon-wrap {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 3px;
}

.before-card .kiosk-compare-icon-wrap {
    background: #fee2e2;
    color: #ef4444;
}

.after-card .kiosk-compare-icon-wrap {
    background: #dcfce7;
    color: #15803d;
}

.kiosk-compare-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.kiosk-compare-text p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ===== KEY FEATURES (7 PILLARS) ===== */
.kiosk-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kiosk-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.kiosk-feature-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1d4ed8, #0284c7, #10b981);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.kiosk-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--kiosk-shadow-lg);
    border-color: #bfdbfe;
}

.kiosk-feature-card:hover::before {
    transform: scaleX(1);
}

.kiosk-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.kiosk-feature-card:hover .kiosk-feature-icon {
    background: linear-gradient(135deg, #1d4ed8, #0284c7);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.kiosk-feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.35;
}

.kiosk-feature-card p {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Feature 7 highlight: Spanning 3 cols or special emphasis */
.kiosk-feature-card.highlight-card {
    grid-column: span 3;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border: 1.5px solid #bfdbfe;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 32px 36px;
}

.kiosk-feature-card.highlight-card .kiosk-feature-icon {
    width: 68px;
    height: 68px;
    font-size: 32px;
    margin-bottom: 0;
}

.kiosk-feature-card.highlight-card .highlight-content h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.kiosk-feature-card.highlight-card .highlight-content p {
    font-size: 1.05rem;
}

/* ===== BEHAVIOR-BASED SAFETY (BOS) SECTION ===== */
.kiosk-bos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 20px;
}

.kiosk-bos-card {
    border-radius: 20px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: var(--kiosk-shadow-md);
}

.kiosk-bos-card.good-bos {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    border: 1.5px solid var(--kiosk-good-bos-border);
}

.kiosk-bos-card.bad-bos {
    background: linear-gradient(180deg, #fef2f2 0%, #ffffff 100%);
    border: 1.5px solid var(--kiosk-bad-bos-border);
}

.kiosk-bos-card:hover {
    transform: translateY(-6px);
}

.kiosk-bos-card.good-bos:hover {
    box-shadow: 0 16px 36px rgba(16, 185, 129, 0.18);
}

.kiosk-bos-card.bad-bos:hover {
    box-shadow: 0 16px 36px rgba(239, 68, 68, 0.18);
}

.kiosk-bos-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.good-bos .kiosk-bos-badge {
    background: #dcfce7;
    color: #15803d;
}

.bad-bos .kiosk-bos-badge {
    background: #fee2e2;
    color: #b91c1c;
}

.kiosk-bos-card h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kiosk-bos-desc {
    font-size: 1.02rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 22px;
}

.kiosk-bos-examples-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kiosk-bos-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.kiosk-bos-pill {
    font-size: 0.88rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.good-bos .kiosk-bos-pill {
    background: #ffffff;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.bad-bos .kiosk-bos-pill {
    background: #ffffff;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* ===== 4-STEP PROCESS WORKFLOW ===== */
.kiosk-process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-top: 20px;
}

.kiosk-process-step {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px 22px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kiosk-process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--kiosk-shadow-lg);
    border-color: #bfdbfe;
}

.kiosk-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1d4ed8, #0284c7);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.28);
}

.kiosk-process-icon {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 12px;
}

.kiosk-process-step h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.kiosk-process-step p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== ORGANIZATIONAL IMPACT / BUSINESS VALUE ===== */
.kiosk-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.kiosk-impact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kiosk-impact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--kiosk-shadow-md);
    border-color: #93c5fd;
}

.kiosk-impact-metric {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1d4ed8;
    line-height: 1.1;
    margin-bottom: 10px;
}

.kiosk-impact-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.kiosk-impact-card p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== HARDWARE & CLOUD SPECIFICATIONS ===== */
.kiosk-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.kiosk-spec-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px;
    box-shadow: var(--kiosk-shadow-sm);
}

.kiosk-spec-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.kiosk-spec-header i {
    font-size: 26px;
    color: #1d4ed8;
}

.kiosk-spec-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.kiosk-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kiosk-spec-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.55;
}

.kiosk-spec-list li i {
    color: #2563eb;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.kiosk-spec-list li strong {
    color: #0f172a;
}

/* ===== CALL TO ACTION (CTA) SECTION ===== */
.kiosk-cta-section {
    padding: 95px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0b192c 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.kiosk-cta-card {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.kiosk-cta-card h2 {
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 18px;
}

.kiosk-cta-card p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 34px;
}

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

.btn-kiosk-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #0f172a !important;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.btn-kiosk-cta-white:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.btn-kiosk-cta-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
    transition: all 0.3s ease;
}

.btn-kiosk-cta-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.6);
    opacity: 0.95;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1120px) {
    .kiosk-hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .kiosk-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .kiosk-hero-subtitle {
        justify-content: center;
    }

    .kiosk-hero-subtext {
        border-left: none;
        border-top: 3px solid #2563eb;
        border-radius: 0 0 10px 10px;
        padding-left: 0;
        padding-top: 12px;
        text-align: center;
    }

    .kiosk-hero-pills {
        justify-content: center;
    }

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

    .kiosk-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kiosk-feature-card.highlight-card {
        grid-column: span 2;
    }

    .kiosk-impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kiosk-process-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kiosk-hero-section {
        padding: 135px 0 60px;
    }

    .kiosk-section {
        padding: 60px 0;
    }

    .kiosk-compare-grid {
        grid-template-columns: 1fr;
    }

    .kiosk-bos-grid {
        grid-template-columns: 1fr;
    }

    .kiosk-features-grid {
        grid-template-columns: 1fr;
    }

    .kiosk-feature-card.highlight-card {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .kiosk-process-track {
        grid-template-columns: 1fr;
    }

    .kiosk-impact-grid {
        grid-template-columns: 1fr;
    }

    .kiosk-specs-grid {
        grid-template-columns: 1fr;
    }

    .kiosk-terminal-img {
        height: clamp(420px, 68vw, 580px);
        max-height: 580px;
    }

    .card-telugu {
        right: 0px;
        top: 10px;
    }

    .card-auth {
        left: 0px;
        top: 50%;
    }

    .card-bos {
        right: 0px;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .btn-kiosk-primary, .btn-kiosk-outline, .btn-kiosk-cta-white, .btn-kiosk-cta-glow {
        width: 100%;
        justify-content: center;
    }

    .kiosk-hero-cta, .kiosk-cta-btns {
        width: 100%;
        flex-direction: column;
    }

    .kiosk-float-card {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin-top: 10px;
        width: 100%;
    }

    .kiosk-showcase-wrapper {
        flex-direction: column;
    }
}
