/* ===== Premium Phone Process Section ===== */
/* Enhanced visual effects for the phone mockup */

/* Premium Layout */
.process-phone-layout.premium {
    position: relative;
    min-height: 700px;
}

/* Orbit Rings */
/* Orbit Rings */
.phone-bg-effects {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    max-width: 100vw;
    aspect-ratio: 1/1;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 50%;
    animation: orbitRotate 30s linear infinite;
}

.orbit-ring.ring-1 {
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
}

.orbit-ring.ring-2 {
    width: 520px;
    height: 520px;
    margin: -260px 0 0 -260px;
    animation-duration: 40s;
    animation-direction: reverse;
}

.orbit-ring.ring-3 {
    width: 640px;
    height: 640px;
    margin: -320px 0 0 -320px;
    animation-duration: 50s;
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-primary);
    animation: floatElement 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.floating-element.el-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.floating-element.el-2 {
    top: 25%;
    right: 10%;
    animation-delay: 1s;
    color: #f7df1e;
}

.floating-element.el-3 {
    top: 60%;
    left: 8%;
    animation-delay: 2s;
    color: #a855f7;
}

.floating-element.el-4 {
    top: 15%;
    right: 20%;
    animation-delay: 0.5s;
    color: #f24e1e;
}

.floating-element.el-5 {
    bottom: 20%;
    left: 12%;
    animation-delay: 1.5s;
    color: #10b981;
}

.floating-element.el-6 {
    bottom: 15%;
    right: 15%;
    animation-delay: 2.5s;
    color: #fff;
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* SVG Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.conn-line {
    fill: none;
    stroke: url(#connectionGradient);
    stroke-width: 2;
    stroke-dasharray: 8 4;
    opacity: 0.5;
    animation: dashFlow 2s linear infinite;
}

@keyframes dashFlow {
    from {
        stroke-dashoffset: 24;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.line-particle {
    fill: var(--accent-primary);
    opacity: 0;
}

/* Premium Step Cards */
.process-step-card.premium {
    position: relative;
    padding: 24px 20px 50px 20px;
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.95), rgba(35, 35, 60, 0.95));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    max-width: 280px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    backdrop-filter: blur(10px);
}

.process-step-card.premium .step-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step-card.premium.active .step-glow {
    opacity: 1;
}

.process-step-card.premium.active {
    border-color: var(--accent-primary);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
    transform: scale(1.02);
}

.process-step-card.premium .step-icon {
    width: 44px;
    height: 44px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent-primary);
    margin-bottom: 12px;
    flex-shrink: 0;
}

.process-step-card.premium .step-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 42px;
    font-weight: 800;
    opacity: 0.2;
    color: var(--accent-primary);
    line-height: 1;
}

.process-step-card.premium .step-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.process-step-card.premium .step-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 12px;
}

.process-step-card.premium .step-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: var(--accent-primary);
    font-weight: 600;
}

.process-step-card.premium .step-duration {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 11px;
    color: rgba(99, 102, 241, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Premium 3D Phone */
.process-phone-center.premium {
    position: relative;
    z-index: 5;
}

.phone-glow-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 650px;
    pointer-events: none;
}

.phone-glow {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    filter: blur(60px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.phone-frame-3d {
    position: relative;
    perspective: 1000px;
}

.phone-frame-inner {
    position: relative;
    width: 300px;
    height: 620px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0d0d1a 100%);
    border-radius: 50px;
    border: 4px solid #2d2d44;
    padding: 10px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(99, 102, 241, 0.2),
        inset 0 0 30px rgba(99, 102, 241, 0.05);
    transform: rotateY(-2deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.phone-frame-inner:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

/* Dynamic Island */
.dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 32px;
    background: #000;
    border-radius: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.island-camera {
    width: 10px;
    height: 10px;
    background: #1a1a2e;
    border-radius: 50%;
    border: 2px solid #333;
}

.island-speaker {
    width: 40px;
    height: 4px;
    background: #1a1a2e;
    border-radius: 2px;
}

/* Premium Phone Screen */
.phone-screen-premium {
    width: 100%;
    height: 100%;
    background: #0a0a14;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
}

/* Phone Buttons */
.phone-button-power {
    position: absolute;
    right: -6px;
    top: 120px;
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, #2d2d44, #1a1a2e);
    border-radius: 0 4px 4px 0;
}

.phone-button-vol-up,
.phone-button-vol-down {
    position: absolute;
    left: -6px;
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, #2d2d44, #1a1a2e);
    border-radius: 4px 0 0 4px;
}

.phone-button-vol-up {
    top: 100px;
}

.phone-button-vol-down {
    top: 160px;
}

/* Phone Reflection */
.phone-reflection {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%) scaleY(-1);
    width: 280px;
    height: 120px;
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0.15), transparent);
    filter: blur(20px);
    opacity: 0.4;
    border-radius: 50%;
}

/* Phase Indicator Premium */
.phase-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.phase-dots.premium {
    display: flex;
    gap: 16px;
}

.phase-dots.premium .phase-dot {
    width: 44px;
    height: 44px;
    background: var(--bg-glass);
    border: 2px solid var(--border-glass);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.phase-dots.premium .phase-dot:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.phase-dots.premium .phase-dot.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.phase-progress-bar {
    width: 200px;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    overflow: hidden;
}

.phase-progress-fill {
    height: 100%;
    width: 25%;
    background: var(--accent-gradient);
    transition: width 0.5s ease;
}

.phase-label.premium .phase-label-text {
    font-size: 16px;
    font-weight: 600;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Timeline */
.timeline-indicator.premium {
    max-width: 800px;
    margin: 80px auto 0;
}

.timeline-indicator.premium .timeline-bar {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.timeline-markers {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.timeline-markers .marker {
    width: 16px;
    height: 16px;
    background: var(--bg-tertiary);
    border: 3px solid var(--border-glass);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-markers .marker.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
}

.timeline-indicator.premium .timeline-labels span.active {
    color: var(--accent-primary);
    font-weight: 600;
}

/* ===== Premium Phase Content ===== */

/* Phase 1: Discovery */
.phase-discovery {
    background: linear-gradient(180deg, #0f0f1a 0%, #151525 100%);
}

.discovery-content {
    padding: 35px 16px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.discovery-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent-primary);
    margin-bottom: 20px;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.discovery-lines {
    margin-bottom: 16px;
}

.discovery-lines .d-line {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 8px;
    animation: lineLoad 2s ease-in-out infinite;
}

.discovery-lines .d-line:nth-child(2) {
    width: 80%;
    animation-delay: 0.2s;
}

.discovery-lines .d-line.short {
    width: 50%;
    animation-delay: 0.4s;
}

@keyframes lineLoad {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.discovery-boxes {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.discovery-boxes .d-box {
    flex: 1;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    animation: boxPulse 3s ease-in-out infinite;
}

.discovery-boxes .d-box:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes boxPulse {

    0%,
    100% {
        border-color: rgba(99, 102, 241, 0.3);
    }

    50% {
        border-color: rgba(99, 102, 241, 0.6);
    }
}

.discovery-checklist {
    margin-top: auto;
}

.discovery-checklist .check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 13px;
    color: #10b981;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.discovery-checklist .check-item i {
    font-size: 12px;
}

.discovery-checklist .check-item.pending {
    color: var(--text-muted);
}

.discovery-checklist .check-item.pending i {
    font-size: 6px;
    opacity: 0.5;
    animation: pendingPulse 1s ease-in-out infinite;
}

@keyframes pendingPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

/* Phase 2: Design Preview */
.phase-design-premium {
    background: #0f0f1a;
}

.design-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
    /* Reset padding to fix gap */
    padding-top: 15px;
}

.dp-header {
    /* Ensure header sits nicely */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px 12px;
}

.dp-logo {
    width: 32px;
    height: 32px;
    background: var(--accent-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.dp-title {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.dp-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border-radius: 50%;
}

.dp-hero {
    height: 100px;
    margin: 0 12px 12px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.dp-hero-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    animation: heroGradient 6s ease infinite;
    background-size: 200% 200%;
}

@keyframes heroGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.dp-hero-text {
    position: absolute;
    bottom: 12px;
    left: 12px;
    color: white;
}

.dp-hero-text span {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

.dp-hero-text small {
    font-size: 11px;
    opacity: 0.8;
}

.dp-cards {
    display: flex;
    gap: 10px;
    padding: 0 12px;
    margin-bottom: 12px;
}

.dp-card {
    flex: 1;
    padding: 14px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dp-card i {
    font-size: 20px;
}

.dp-card span {
    font-size: 12px;
    font-weight: 600;
}

.dp-card.card-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.1));
    color: #a78bfa;
}

.dp-card.card-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.1));
    color: #60a5fa;
}

.dp-list {
    flex: 1;
    padding: 0 12px;
}

.dp-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dp-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.dp-item-text div {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 6px;
    width: 120px;
}

.dp-item-text div.short {
    width: 80px;
    margin-bottom: 0;
}

.dp-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    margin-top: auto;
}

.dp-nav span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
}

.dp-nav span.active {
    color: var(--accent-primary);
}

.dp-nav span.center-action {
    width: 44px;
    height: 44px;
    background: var(--accent-gradient);
    border-radius: 50%;
    color: white;
    margin-top: -10px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* Phase 3: Code Terminal */
.phase-code {
    background: #0d0d14;
}

.code-terminal {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 15px;
}

.terminal-header {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-buttons {
    display: flex;
    gap: 6px;
}

.terminal-buttons .tb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.tb.red {
    background: #ff5f56;
}

.tb.yellow {
    background: #ffbd2e;
}

.tb.green {
    background: #27c93f;
}

.terminal-title {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'Fira Code', monospace;
}

.terminal-body {
    flex: 1;
    display: flex;
    padding: 12px;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 10px;
    line-height: 1.8;
    overflow: hidden;
}

.code-line-num {
    display: flex;
    flex-direction: column;
    padding-right: 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    margin-right: 12px;
}

.code-line-num span {
    color: rgba(255, 255, 255, 0.2);
    text-align: right;
    min-width: 16px;
}

.code-content {
    flex: 1;
}

.code-content .cl {
    color: #a6accd;
    white-space: nowrap;
}

.cl .kw {
    color: #c792ea;
}

.cl .str {
    color: #c3e88d;
}

.cl .fn {
    color: #82aaff;
}

.cl .tag {
    color: #89ddff;
}

.terminal-footer {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.build-status {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.build-progress {
    height: 100%;
    width: 78%;
    background: linear-gradient(90deg, #10b981, #6366f1);
    animation: buildPulse 2s ease-in-out infinite;
}

@keyframes buildPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.build-text {
    font-size: 10px;
    color: #10b981;
    font-family: 'Fira Code', monospace;
}

/* Phase 4: Launch */
.phase-launch-premium {
    background: linear-gradient(180deg, #0f0f1a 0%, #0a0a14 100%);
}

.launch-screen {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.launch-confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.launch-confetti span {
    position: absolute;
    width: 8px;
    height: 8px;
    opacity: 0;
}

.phase-launch-premium.active .launch-confetti span {
    animation: launchConfetti 3s ease-out forwards;
}

.launch-confetti span:nth-child(1) {
    left: 10%;
    background: #6366f1;
    animation-delay: 0s;
}

.launch-confetti span:nth-child(2) {
    left: 20%;
    background: #a855f7;
    animation-delay: 0.1s;
}

.launch-confetti span:nth-child(3) {
    left: 30%;
    background: #10b981;
    animation-delay: 0.05s;
}

.launch-confetti span:nth-child(4) {
    left: 40%;
    background: #f59e0b;
    animation-delay: 0.15s;
}

.launch-confetti span:nth-child(5) {
    left: 50%;
    background: #ec4899;
    animation-delay: 0.08s;
}

.launch-confetti span:nth-child(6) {
    left: 60%;
    background: #6366f1;
    animation-delay: 0.12s;
}

.launch-confetti span:nth-child(7) {
    left: 70%;
    background: #10b981;
    animation-delay: 0.03s;
}

.launch-confetti span:nth-child(8) {
    left: 80%;
    background: #f59e0b;
    animation-delay: 0.18s;
}

.launch-confetti span:nth-child(9) {
    left: 90%;
    background: #a855f7;
    animation-delay: 0.07s;
}

.launch-confetti span:nth-child(10) {
    left: 95%;
    background: #ec4899;
    animation-delay: 0.2s;
}

@keyframes launchConfetti {
    0% {
        top: -10%;
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }

    100% {
        top: 110%;
        opacity: 0;
        transform: rotate(720deg) scale(0.5);
    }
}

.launch-status-bar {
    display: flex;
    justify-content: space-between;
    padding: 35px 20px 10px;
    font-size: 11px;
    color: var(--text-secondary);
}

.launch-status-bar div {
    display: flex;
    gap: 6px;
}

.launch-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px 20px;
}

.launch-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-gradient);
}

.launch-info {
    flex: 1;
}

.launch-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.launch-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    margin-top: 4px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.launch-stats {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.l-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.l-stat i {
    font-size: 20px;
    color: var(--text-muted);
}

.l-stat .l-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
}

.l-stat .l-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.l-stat.featured i {
    color: #fbbf24;
}

.l-stat.featured .l-value {
    color: #fbbf24;
}

.launch-stores {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-bottom: 30px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.store-btn i {
    font-size: 24px;
    color: white;
}

.store-btn div {
    display: flex;
    flex-direction: column;
}

.store-btn small {
    font-size: 9px;
    color: var(--text-muted);
}

.store-btn span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 1200px) {
    .phone-bg-effects {
        display: none;
    }

    .connection-lines {
        display: none;
    }
}

@media (max-width: 1024px) {
    .process-phone-layout.premium {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-steps-left,
    .process-steps-right {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .process-phone-center.premium {
        order: -1;
    }
}

@media (max-width: 768px) {
    .phone-frame-inner {
        width: 260px;
        height: 540px;
        border-radius: 40px;
    }

    .phone-screen-premium {
        border-radius: 36px;
    }

    .process-step-card.premium {
        max-width: 280px;
    }
}

/* Responsive Scaling for Phone Animation */
@media (max-width: 768px) {
    .phone-bg-effects {
        transform: translate(-50%, -50%) scale(0.6);
        width: 100%;
        height: auto;
    }

    .process-phone-layout.premium {
        min-height: 600px;
        overflow: hidden;
        /* Prevent horizontal scroll from rings */
    }

    .process-step-card.premium {
        margin: 0 auto 20px;
        /* Center cards on mobile */
    }
}

@media (max-width: 480px) {
    .phone-bg-effects {
        transform: translate(-50%, -50%) scale(0.45);
    }

    .process-phone-layout.premium {
        min-height: 550px;
    }
}