/* ══════════════════════════════════════════════════
   Instant Call Connection — Page Styles
   ══════════════════════════════════════════════════ */

/* ── Hero Layout ────────────────────────────────── */
.icc-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--bg-primary);
    overflow: hidden;
}

.icc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    animation: iccGridDrift 20s linear infinite;
}

.icc-hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 900px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(29, 185, 84, 0.08) 0%, rgba(0, 113, 227, 0.04) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: iccGlowPulse 6s ease-in-out infinite alternate;
}

@keyframes iccGridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes iccGlowPulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.06); }
}

.icc-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.icc-hero-text {
    animation: iccFadeSlideUp 0.8s ease-out both;
}

.icc-hero-overline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(29, 185, 84, 0.08);
    color: #1db954;
    margin-bottom: 24px;
}

.icc-hero-overline svg {
    width: 14px;
    height: 14px;
}

.icc-hero-text .headline-hero {
    margin-bottom: 20px;
}

.icc-hero-text .subhead {
    margin-bottom: 36px;
    max-width: 480px;
}

.icc-hero-trust {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-tertiary);
}

.icc-hero-trust-dots {
    display: flex;
    gap: 4px;
}

.icc-hero-trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1db954;
}

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

/* ── Hero Right ─────────────────────────────────── */
.icc-hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iccFadeSlideUp 0.8s 0.3s ease-out both;
    min-height: 540px;
}

/* ── Phone Mockup ───────────────────────────────── */
.icc-phone-wrap {
    position: relative;
    z-index: 2;
}

.icc-phone {
    position: relative;
    width: 270px;
    background: #111;
    border-radius: 44px;
    padding: 12px;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.18),
        0 16px 40px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    animation: iccPhoneFloat 6s ease-in-out infinite;
    z-index: 2;
}

.icc-phone::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(29, 185, 84, 0.12), transparent 70%);
    filter: blur(16px);
    z-index: -1;
}

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

.icc-screen {
    background: var(--bg-section);
    border-radius: 34px;
    overflow: hidden;
}

.icc-screen-header {
    padding: 12px 16px 10px;
    text-align: center;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.icc-screen-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1db954, #0071e3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}

.icc-screen-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.icc-chat {
    padding: 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 200px;
}

.icc-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icc-msg.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.icc-msg-ai {
    align-self: flex-start;
    background: #e9e9eb;
    color: #000;
    border-bottom-left-radius: 4px;
}

.icc-msg-user {
    align-self: flex-end;
    background: #1db954;
    color: #fff;
    border-bottom-right-radius: 4px;
}

.icc-typing {
    align-self: flex-start;
    display: flex;
    gap: 5px;
    padding: 12px 16px;
    background: #e9e9eb;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    opacity: 0;
    transition: opacity 0.25s;
}

.icc-typing.visible { opacity: 1; }

.icc-typing-dot {
    width: 7px;
    height: 7px;
    background: #86868b;
    border-radius: 50%;
    animation: iccTypingBounce 1.4s infinite;
}

.icc-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.icc-typing-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes iccTypingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
}

.icc-screen-input {
    padding: 10px 12px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.icc-screen-input-field {
    flex: 1;
    height: 32px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.icc-screen-input-send {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1db954;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icc-screen-input-send svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

/* ── Call Connecting Overlay ─────────────────────── */
.icc-call-overlay {
    position: absolute;
    inset: 12px;
    background: linear-gradient(180deg, #111 0%, #1a1a2e 100%);
    border-radius: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.icc-call-overlay.visible {
    opacity: 1;
}

.icc-call-overlay-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(29, 185, 84, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icc-call-overlay-ring::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(29, 185, 84, 0.3);
    animation: iccRingPulse 1.5s ease-out infinite;
}

.icc-call-overlay-ring::after {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px solid rgba(29, 185, 84, 0.15);
    animation: iccRingPulse 1.5s 0.3s ease-out infinite;
}

@keyframes iccRingPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.icc-call-overlay-ring svg {
    width: 32px;
    height: 32px;
    fill: #1db954;
}

.icc-call-overlay-name {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.icc-call-overlay-status {
    color: #1db954;
    font-size: 14px;
    font-weight: 500;
}

.icc-call-overlay-timer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 32px;
    font-weight: 300;
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
}

/* ── Notification ──────────────────────────────── */
.icc-notif {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: #fff;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 3;
}

.icc-notif.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.icc-notif-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1db954;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icc-notif-icon svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
}

/* ── Floating Badges ────────────────────────────── */
.icc-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s, transform 0.5s;
    z-index: 3;
}

.icc-badge.visible {
    opacity: 1;
    transform: translateY(0);
}

.icc-badge-1 {
    top: 8%;
    right: -40px;
    animation: iccBadgeFloat1 4s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.icc-badge-2 {
    bottom: 32%;
    left: -50px;
    animation: iccBadgeFloat2 4.5s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.icc-badge-3 {
    bottom: 10%;
    right: -30px;
    animation: iccBadgeFloat3 3.8s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.icc-badge.visible { animation-play-state: running; }

.icc-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icc-badge-icon svg {
    width: 14px;
    height: 14px;
}

@keyframes iccBadgeFloat1 { 0% { transform: translateY(0); } 100% { transform: translateY(-8px); } }
@keyframes iccBadgeFloat2 { 0% { transform: translateY(0); } 100% { transform: translateY(-6px); } }
@keyframes iccBadgeFloat3 { 0% { transform: translateY(0); } 100% { transform: translateY(-7px); } }

/* ── Section Spacing ───────────────────────────── */
.icc-process,
.icc-benefits,
.icc-related,
.icc-bridge,
.icc-dashboard { padding: 100px 0; }

/* ── Process Steps ──────────────────────────────── */
.icc-process { text-align: center; }
.icc-process .headline-section { margin-bottom: 12px; }
.icc-process .subhead { margin: 0 auto 56px; max-width: 500px; }

.icc-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.icc-step {
    text-align: center;
    padding: 0 16px;
}

.icc-step-num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(29, 185, 84, 0.08);
    color: #1db954;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.icc-step:hover .icc-step-num {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(29, 185, 84, 0.15);
}

.icc-step .headline-card {
    margin-bottom: 10px;
    font-size: 20px;
}

.icc-step .body-text {
    font-size: 15px;
}

/* ══════════════════════════════════════════════════
   UNIQUE ELEMENT 1 — Call Bridge Flow Visualizer
   ══════════════════════════════════════════════════ */
.icc-bridge {
    background: var(--bg-section);
}

.icc-bridge .headline-section { text-align: center; margin-bottom: 12px; }
.icc-bridge .subhead { text-align: center; margin: 0 auto 56px; max-width: 540px; }

.icc-bridge-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.icc-bridge-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
}

.icc-bridge-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.icc-bridge-tabs {
    display: flex;
    gap: 4px;
    background: var(--bg-section);
    border-radius: 10px;
    padding: 3px;
}

.icc-bridge-tab {
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    background: none;
}

.icc-bridge-tab.active {
    background: #fff;
    color: var(--text-primary);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.icc-bridge-body {
    padding: 40px 28px 32px;
}

.icc-bridge-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
}

.icc-bridge-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icc-bridge-node.visible {
    opacity: 1;
    transform: translateY(0);
}

.icc-bridge-node-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.icc-bridge-node:hover .icc-bridge-node-circle {
    transform: scale(1.06);
}

.icc-bridge-node-circle svg {
    width: 28px;
    height: 28px;
}

.icc-bridge-node-circle.node-sms {
    background: rgba(0, 113, 227, 0.08);
    border: 2px solid rgba(0, 113, 227, 0.2);
}

.icc-bridge-node-circle.node-sms svg { stroke: #0071e3; fill: none; stroke-width: 2; }

.icc-bridge-node-circle.node-ai {
    background: rgba(120, 75, 250, 0.08);
    border: 2px solid rgba(120, 75, 250, 0.2);
}

.icc-bridge-node-circle.node-ai svg { stroke: #784bfa; fill: none; stroke-width: 2; }

.icc-bridge-node-circle.node-call {
    background: rgba(29, 185, 84, 0.08);
    border: 2px solid rgba(29, 185, 84, 0.2);
}

.icc-bridge-node-circle.node-call svg { stroke: #1db954; fill: none; stroke-width: 2; }

.icc-bridge-node-circle.node-connected {
    background: rgba(29, 185, 84, 0.12);
    border: 2px solid rgba(29, 185, 84, 0.35);
}

.icc-bridge-node-circle.node-connected svg { stroke: #1db954; fill: none; stroke-width: 2; }

/* Active/animated state */
.icc-bridge-node.active .icc-bridge-node-circle {
    box-shadow: 0 0 0 6px rgba(29, 185, 84, 0.12);
}

.icc-bridge-node-circle .icc-node-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
}

.icc-bridge-node.active .icc-node-pulse {
    animation: iccNodePulse 1.5s ease-out infinite;
}

@keyframes iccNodePulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.4); opacity: 0; }
}

.icc-bridge-node-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.icc-bridge-node-sub {
    font-size: 11px;
    color: var(--text-tertiary);
    margin-top: -6px;
}

/* Connector lines between nodes */
.icc-bridge-connector {
    width: 80px;
    height: 2px;
    position: relative;
    margin: 0 -4px;
    margin-bottom: 40px;
}

.icc-bridge-connector-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    border-radius: 1px;
    transition: width 0.6s ease;
}

.icc-bridge-connector.visible .icc-bridge-connector-line {
    width: 100%;
}

.icc-bridge-connector-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    border-radius: 1px;
}

.icc-bridge-connector-line.line-blue { background: linear-gradient(90deg, #0071e3, #784bfa); }
.icc-bridge-connector-line.line-purple { background: linear-gradient(90deg, #784bfa, #1db954); }
.icc-bridge-connector-line.line-green { background: linear-gradient(90deg, #1db954, #30d158); }

/* Timing badge */
.icc-bridge-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.icc-bridge-timer-item {
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s, transform 0.5s;
}

.icc-bridge-timer-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.icc-bridge-timer-num {
    font-size: 28px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.icc-bridge-timer-num.green { color: #1db954; }
.icc-bridge-timer-num.accent { color: var(--accent); }
.icc-bridge-timer-num.purple { color: #784bfa; }

.icc-bridge-timer-label {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-top: 4px;
}

/* ══════════════════════════════════════════════════
   UNIQUE ELEMENT 2 — Live Connection Dashboard
   ══════════════════════════════════════════════════ */
.icc-dashboard {
    text-align: center;
}

.icc-dashboard .headline-section { margin-bottom: 12px; }
.icc-dashboard .subhead { margin: 0 auto 56px; max-width: 540px; }

.icc-dash-wrap {
    max-width: 860px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.icc-dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

.icc-dash-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icc-dash-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.icc-dash-live {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 980px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(29, 185, 84, 0.08);
    color: #1db954;
}

.icc-dash-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1db954;
    animation: iccLivePulse 2s ease-in-out infinite;
}

@keyframes iccLivePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(29, 185, 84, 0); }
}

.icc-dash-time {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

/* Connection rows */
.icc-dash-table-head {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 0.8fr 0.8fr;
    padding: 10px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-section);
}

.icc-dash-table-head span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.icc-dash-row {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 1fr 0.8fr 0.8fr;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icc-dash-row.visible {
    opacity: 1;
    transform: translateX(0);
}

.icc-dash-row:last-child {
    border-bottom: none;
}

.icc-dash-row span {
    font-size: 13px;
    color: var(--text-secondary);
}

.icc-dash-contact {
    font-weight: 600;
    color: var(--text-primary) !important;
}

.icc-dash-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 980px;
    font-size: 11px !important;
    font-weight: 600;
}

.icc-dash-status-connected {
    background: rgba(29, 185, 84, 0.1);
    color: #1a8a3e !important;
}

.icc-dash-status-connecting {
    background: rgba(0, 113, 227, 0.1);
    color: #0071e3 !important;
}

.icc-dash-status-completed {
    background: rgba(120, 75, 250, 0.08);
    color: #784bfa !important;
}

.icc-dash-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.icc-dash-status-connected .icc-dash-status-dot {
    background: #1db954;
    animation: iccStatusPulse 1.5s ease-in-out infinite;
}

.icc-dash-status-connecting .icc-dash-status-dot {
    background: #0071e3;
    animation: iccStatusPulse 1s ease-in-out infinite;
}

.icc-dash-status-completed .icc-dash-status-dot {
    background: #784bfa;
}

@keyframes iccStatusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.icc-dash-duration {
    font-variant-numeric: tabular-nums;
}

.icc-dash-speed {
    font-weight: 600;
    color: #1db954 !important;
    font-variant-numeric: tabular-nums;
}

/* Dashboard counters */
.icc-dash-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
}

.icc-dash-counter-item {
    text-align: center;
}

.icc-dash-counter-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.icc-dash-counter-num.green { color: #1db954; }
.icc-dash-counter-num.accent { color: var(--accent); }
.icc-dash-counter-num.purple { color: #784bfa; }

.icc-dash-counter-label {
    font-size: 12px;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-top: 4px;
}

/* ── Benefits Bento Grid ── */
.icc-benefits { text-align: center; }
.icc-benefits .headline-section { margin-bottom: 12px; }
.icc-benefits .subhead { margin: 0 auto 56px; max-width: 520px; }

.icc-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.icc-bento-grid .bento-card:nth-child(1) { grid-column: 1 / 3; }
.icc-bento-grid .bento-card:nth-child(2) { grid-column: 3; grid-row: 1 / 3; }
.icc-bento-grid .bento-card:nth-child(6) { grid-column: 2 / 4; }

.icc-bento-grid .bento-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.icc-bento-grid .bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.icc-bento-grid .bento-card-graphic svg {
    transition: transform 0.4s ease;
}

.icc-bento-grid .bento-card:hover .bento-card-graphic svg {
    transform: scale(1.05);
}

.icc-bento-grid .bento-card-graphic .pulse-ring {
    animation: iccIconPulse 3s ease-in-out infinite;
}

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

/* ── Related Use Cases ── */
.icc-related { text-align: center; }
.icc-related .headline-section { margin-bottom: 12px; }
.icc-related .subhead { margin: 0 auto 48px; max-width: 480px; }

.icc-related .feature-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.icc-related .feature-card .ind-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s, transform 0.3s;
}

.icc-related .feature-card:hover .ind-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.icc-related .ind-icon-graphic {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 14px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icc-related .ind-icon-graphic-blue  { background: rgba(0, 113, 227, 0.04); }
.icc-related .ind-icon-graphic-green { background: rgba(29, 185, 84, 0.04); }
.icc-related .ind-icon-graphic-purple { background: rgba(120, 75, 250, 0.04); }

.icc-related .feature-card:hover .ind-icon-graphic {
    transform: translateY(-4px);
}

.icc-related .ind-icon-graphic svg {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icc-related .feature-card:hover .ind-icon-graphic svg {
    transform: scale(1.08);
}

/* ── Device Morph Dashboard Section ───────────── */
.icc-device-morph {
    position: relative;
    height: 300vh;
    background: var(--bg-primary);
}

.icc-device-morph-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.icc-device-frame {
    position: relative;
    width: 80%;
    max-width: 1000px;
    height: 56vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
}

.icc-device-frame .app-demo-titlebar {
    flex-shrink: 0;
}

.icc-device-frame .app-demo-body {
    flex: 1;
    height: auto;
}

.icc-device-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    z-index: 110;
}

.icc-device-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    z-index: 111;
    opacity: 0;
    transform: translateY(24px);
}

.icc-device-content .headline-section {
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.icc-device-content .subhead {
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 960px) {
    .icc-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .icc-hero-text .subhead {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .icc-hero-text .hero-actions {
        justify-content: center;
    }

    .icc-hero-trust {
        justify-content: center;
    }

    .icc-badge { display: none; }

    .icc-phone { width: 250px; }

    .icc-device-frame {
        width: 90%;
    }

    .icc-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(200px, auto);
    }
    .icc-bento-grid .bento-card:nth-child(1) { grid-column: 1 / 3; }
    .icc-bento-grid .bento-card:nth-child(2) { grid-column: 1; grid-row: auto; }
    .icc-bento-grid .bento-card:nth-child(6) { grid-column: 1 / 3; }

    .icc-bridge-flow {
        flex-wrap: wrap;
        gap: 8px;
    }

    .icc-bridge-connector {
        width: 40px;
    }

    .icc-bridge-timer { gap: 24px; }

    .icc-dash-table-head,
    .icc-dash-row {
        grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    }

    .icc-dash-table-head span:nth-child(2),
    .icc-dash-row span:nth-child(2) {
        display: none;
    }

    .icc-dash-counter { gap: 24px; }
}

@media (max-width: 768px) {
    .icc-hero { padding: 140px 0 60px; }

    .icc-process,
    .icc-benefits,
    .icc-related,
    .icc-bridge,
    .icc-dashboard { padding: 80px 0; }

    .icc-phone { width: 240px; border-radius: 36px; padding: 10px; }
    .icc-screen { border-radius: 28px; }
    .icc-chat { min-height: 180px; padding: 10px 10px; }
    .icc-msg { font-size: 12px; }

    .icc-steps {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 400px;
    }

    .icc-device-morph { height: 250vh; }
    .icc-device-frame {
        width: 94%;
        height: 40vh;
    }
    .icc-device-frame .app-demo-sidebar { display: none; }
    .icc-device-frame .app-demo-body { grid-template-columns: 1fr; }
    .icc-device-content { padding: 24px; }
    .icc-device-content .headline-section { font-size: 28px; }
    .icc-device-content .subhead { font-size: 16px; }

    .icc-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(180px, auto);
    }
    .icc-bento-grid .bento-card:nth-child(1),
    .icc-bento-grid .bento-card:nth-child(2),
    .icc-bento-grid .bento-card:nth-child(6) { grid-column: 1; grid-row: auto; }

    .icc-bridge-body { padding: 24px 16px; }
    .icc-bridge-flow { flex-wrap: wrap; }
    .icc-bridge-connector { width: 30px; }
    .icc-bridge-node-circle { width: 56px; height: 56px; }
    .icc-bridge-node-circle svg { width: 22px; height: 22px; }
    .icc-bridge-timer { flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
    .icc-bridge-timer-num { font-size: 22px; }

    .icc-dash-row { padding: 10px 16px; gap: 6px; }
    .icc-dash-counter { flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
    .icc-dash-counter-num { font-size: 20px; }

    .icc-dash-table-head,
    .icc-dash-row {
        grid-template-columns: 1.2fr 1fr 0.8fr;
    }

    .icc-dash-table-head span:nth-child(2),
    .icc-dash-row span:nth-child(2),
    .icc-dash-table-head span:nth-child(4),
    .icc-dash-row span:nth-child(4) {
        display: none;
    }
}

@media (max-width: 480px) {
    .icc-dash-table-head span:nth-child(5),
    .icc-dash-row span:nth-child(5) { display: none; }
    .icc-bridge-connector { display: none; }
    .icc-bridge-flow { gap: 16px; }
    .icc-bridge-node-circle { width: 48px; height: 48px; }
    .icc-bridge-node-circle svg { width: 20px; height: 20px; }
    .icc-bridge-node-label { font-size: 11px; }
}
