/* ==========================================
   DETAIL PAGES - PREMIUM STYLES
   Matching Vocalx Main Design System
   ========================================== */

/* Variables extension */
:root {
    --color-red: #ff3b30;
    --color-orange: #ff9500;
    --color-purple: #af52de;
    --color-green: #34c759;
    --color-cyan: #5ac8fa;
}

/* ==========================================
   Navigation - Detail Page
   ========================================== */

.detail-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(var(--color-primary-rgb), 0.1);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-primary);
    transition: all var(--transition-fast);
}

.back-link:hover {
    background: var(--color-primary);
    color: white;
}

.back-link svg {
    width: 18px;
    height: 18px;
}

/* ==========================================
   Detail Hero Section
   ========================================== */

.detail-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px var(--spacing-lg) var(--spacing-3xl);
    position: relative;
    overflow: hidden;
}

.detail-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.animated-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(var(--color-primary-rgb), 0.15) 0%, transparent 60%);
    animation: pulse-bg 4s ease-in-out infinite;
}

.animated-bg-gradient.orange {
    background: radial-gradient(ellipse at 50% 30%, rgba(255, 149, 0, 0.15) 0%, transparent 60%);
}

.animated-bg-gradient.purple {
    background: radial-gradient(ellipse at 50% 30%, rgba(175, 82, 222, 0.15) 0%, transparent 60%);
}

.animated-bg-gradient.green {
    background: radial-gradient(ellipse at 50% 30%, rgba(52, 199, 89, 0.15) 0%, transparent 60%);
}

.animated-bg-gradient.blue {
    background: radial-gradient(ellipse at 50% 30%, rgba(0, 113, 227, 0.15) 0%, transparent 60%);
}

.animated-bg-gradient.cyan {
    background: radial-gradient(ellipse at 50% 30%, rgba(90, 200, 250, 0.15) 0%, transparent 60%);
}

@keyframes pulse-bg {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Hero Animation Container */
.hero-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-2xl);
}

.hero-animation-label {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-top: var(--spacing-md);
}

/* Stat Counter */
.stat-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: var(--spacing-md);
}

.stat-counter .counter-number {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-counter.orange .counter-number {
    background: linear-gradient(135deg, #ff9500 0%, #ff3b30 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.stat-counter .counter-symbol {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-text-secondary);
}

/* Hero Content */
.detail-hero-content {
    text-align: center;
    max-width: 800px;
}

.detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(var(--color-primary-rgb), 0.1);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.detail-badge.orange {
    background: rgba(255, 149, 0, 0.1);
    color: #ff9500;
}

.detail-badge.purple {
    background: rgba(175, 82, 222, 0.1);
    color: #af52de;
}

.detail-badge.green {
    background: rgba(52, 199, 89, 0.1);
    color: #34c759;
}

.detail-badge.blue {
    background: rgba(0, 113, 227, 0.1);
    color: #0071e3;
}

.detail-badge.cyan {
    background: rgba(90, 200, 250, 0.1);
    color: #0891b2;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.detail-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.gradient-text.orange {
    background: linear-gradient(135deg, #ff9500 0%, #ff3b30 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text.purple {
    background: linear-gradient(135deg, #af52de 0%, #5856d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text.green {
    background: linear-gradient(135deg, #34c759 0%, #30d158 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text.cyan {
    background: linear-gradient(135deg, #5ac8fa 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Hero Price */
.hero-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md) var(--spacing-xl);
    background: rgba(var(--color-primary-rgb), 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(var(--color-primary-rgb), 0.1);
}

.price-from {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.price-amount {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-primary);
}

.price-period {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
}

/* ==========================================
   Phone Animation (Verpasste Anrufe)
   ========================================== */

.phone-animation {
    position: relative;
}

.phone-ring-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-ring {
    position: absolute;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    animation: phone-ring 2s ease-out infinite;
    opacity: 0;
}

.ring-1 { width: 100%; height: 100%; animation-delay: 0s; }
.ring-2 { width: 140%; height: 140%; animation-delay: 0.5s; }
.ring-3 { width: 180%; height: 180%; animation-delay: 1s; }

@keyframes phone-ring {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

.phone-icon-main {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: phone-shake 0.5s ease-in-out infinite;
}

.phone-icon-main svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

@keyframes phone-shake {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.missed-call-indicator {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: missed-pulse 1s ease-in-out infinite;
}

.missed-call-indicator svg {
    width: 18px;
    height: 18px;
    fill: white;
}

@keyframes missed-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ==========================================
   Clock Animation (Lange Wartezeiten)
   ========================================== */

.clock-animation {
    position: relative;
}

.clock-container {
    position: relative;
    width: 150px;
    height: 150px;
}

.clock-face {
    width: 100%;
    height: 100%;
    border: 4px solid var(--color-orange);
    border-radius: 50%;
    position: relative;
    background: white;
    box-shadow: var(--shadow-lg);
}

.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--color-orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.clock-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    background: var(--color-text);
    border-radius: 4px;
}

.hour-hand {
    width: 4px;
    height: 35px;
    transform: translateX(-50%) rotate(240deg);
}

.minute-hand {
    width: 3px;
    height: 50px;
    background: var(--color-orange);
    animation: minute-spin 8s linear infinite;
}

@keyframes minute-spin {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

.clock-ticks {
    position: absolute;
    inset: 10px;
}

.clock-ticks .tick {
    position: absolute;
    width: 2px;
    height: 8px;
    background: var(--color-text-secondary);
    left: 50%;
    transform-origin: bottom center;
}

.clock-ticks .tick:nth-child(1) { transform: translateX(-50%) rotate(0deg) translateY(-55px); }
.clock-ticks .tick:nth-child(2) { transform: translateX(-50%) rotate(30deg) translateY(-55px); }
.clock-ticks .tick:nth-child(3) { transform: translateX(-50%) rotate(60deg) translateY(-55px); }
.clock-ticks .tick:nth-child(4) { transform: translateX(-50%) rotate(90deg) translateY(-55px); }
.clock-ticks .tick:nth-child(5) { transform: translateX(-50%) rotate(120deg) translateY(-55px); }
.clock-ticks .tick:nth-child(6) { transform: translateX(-50%) rotate(150deg) translateY(-55px); }
.clock-ticks .tick:nth-child(7) { transform: translateX(-50%) rotate(180deg) translateY(-55px); }
.clock-ticks .tick:nth-child(8) { transform: translateX(-50%) rotate(210deg) translateY(-55px); }
.clock-ticks .tick:nth-child(9) { transform: translateX(-50%) rotate(240deg) translateY(-55px); }
.clock-ticks .tick:nth-child(10) { transform: translateX(-50%) rotate(270deg) translateY(-55px); }
.clock-ticks .tick:nth-child(11) { transform: translateX(-50%) rotate(300deg) translateY(-55px); }
.clock-ticks .tick:nth-child(12) { transform: translateX(-50%) rotate(330deg) translateY(-55px); }

.waiting-indicator {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.waiting-dots {
    display: flex;
    gap: 6px;
}

.waiting-dots span {
    width: 8px;
    height: 8px;
    background: var(--color-orange);
    border-radius: 50%;
    animation: waiting-bounce 1.4s ease-in-out infinite;
}

.waiting-dots span:nth-child(2) { animation-delay: 0.2s; }
.waiting-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes waiting-bounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
}

/* ==========================================
   Team Animation (Überlastete Teams)
   ========================================== */

.team-animation {
    position: relative;
}

.team-container {
    position: relative;
    width: 200px;
    height: 150px;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.team-member {
    position: relative;
    animation: team-stress 1s ease-in-out infinite;
}

.team-member.delay-1 { animation-delay: 0.2s; }
.team-member.delay-2 { animation-delay: 0.4s; }

.member-head {
    width: 30px;
    height: 30px;
    background: var(--color-purple);
    border-radius: 50%;
}

.member-body {
    width: 40px;
    height: 50px;
    background: var(--color-purple);
    border-radius: 20px 20px 10px 10px;
    margin: 5px auto 0;
    opacity: 0.7;
}

.stress-lines {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
}

.stress-lines span {
    width: 2px;
    height: 8px;
    background: var(--color-red);
    border-radius: 2px;
    animation: stress-line 0.5s ease-in-out infinite alternate;
}

.stress-lines span:nth-child(2) { animation-delay: 0.1s; height: 10px; }
.stress-lines span:nth-child(3) { animation-delay: 0.2s; }

@keyframes team-stress {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes stress-line {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.task-flood {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    animation: task-fall 3s linear infinite;
}

.task-icon {
    font-size: 20px;
    animation: task-spin 2s linear infinite;
}

@keyframes task-fall {
    0% { transform: translateY(-50px); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translateY(150px); opacity: 0; }
}

@keyframes task-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================
   SEO Animation
   ========================================== */

.seo-animation .search-container {
    width: 350px;
    background: white;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.search-bar {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
    gap: 12px;
}

.search-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-text-secondary);
}

.search-text {
    flex: 1;
    font-size: var(--font-size-base);
    color: var(--color-text);
}

.typing-text {
    border-right: 2px solid var(--color-primary);
    animation: typing 3s steps(15) infinite, blink 0.7s step-end infinite;
    overflow: hidden;
    white-space: nowrap;
}

@keyframes typing {
    0%, 20% { width: 0; }
    40%, 100% { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.search-results {
    padding: 12px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
}

.result-item.rank-1 {
    background: rgba(52, 199, 89, 0.1);
    animation: result-highlight 2s ease-in-out infinite;
}

@keyframes result-highlight {
    0%, 100% { box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(52, 199, 89, 0); }
}

.rank-badge {
    width: 28px;
    height: 28px;
    background: var(--color-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.result-item.rank-2 .rank-badge,
.result-item.rank-3 .rank-badge {
    background: var(--color-text-secondary);
}

.result-title {
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    font-weight: 500;
}

.result-url {
    font-size: 12px;
    color: var(--color-green);
}

.ranking-arrow {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-green);
    animation: arrow-bounce 1s ease-in-out infinite;
}

.ranking-arrow svg {
    width: 32px;
    height: 32px;
}

.ranking-arrow span {
    font-size: var(--font-size-sm);
    font-weight: 600;
}

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

/* ==========================================
   Website Animation
   ========================================== */

.website-animation .browser-mockup {
    width: 400px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.browser-bar {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--color-bg-secondary);
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }

.browser-url {
    flex: 1;
    padding: 6px 12px;
    background: white;
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    color: var(--color-text-secondary);
}

.browser-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 20px;
}

.website-old, .website-new {
    width: 120px;
    padding: 10px;
    border-radius: var(--border-radius-md);
    position: relative;
}

.website-old {
    background: #f0f0f0;
    border: 2px dashed #ccc;
}

.old-header {
    height: 20px;
    background: #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.old-block {
    height: 15px;
    background: #ccc;
    border-radius: 4px;
    margin-bottom: 6px;
}

.old-label, .new-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.website-new {
    background: white;
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-md);
}

.new-header {
    height: 15px;
    background: var(--gradient-primary);
    border-radius: 4px;
    margin-bottom: 8px;
}

.new-hero {
    height: 30px;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.2), rgba(var(--color-secondary-rgb), 0.2));
    border-radius: 4px;
    margin-bottom: 8px;
}

.new-content {
    display: flex;
    gap: 4px;
}

.new-card {
    flex: 1;
    height: 25px;
    background: var(--color-bg-secondary);
    border-radius: 4px;
}

.new-label {
    color: var(--color-primary);
}

.sparkles {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 24px;
    animation: sparkle 1s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

.transform-arrow {
    color: var(--color-primary);
}

.transform-arrow svg {
    width: 24px;
    height: 24px;
    animation: arrow-pulse 1s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ==========================================
   Keyword Animation
   ========================================== */

.keyword-animation .keyword-cloud {
    position: relative;
    width: 300px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.keyword-main {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5ac8fa, #0891b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.keyword-main svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.keyword-bubbles {
    position: absolute;
    inset: 0;
}

.bubble {
    position: absolute;
    padding: 8px 16px;
    background: white;
    border-radius: var(--border-radius-full);
    font-size: 12px;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    animation: bubble-float 4s ease-in-out infinite;
}

.bubble.highlight {
    background: var(--gradient-primary);
    color: white;
}

.bubble-1 { top: 0; left: 20%; animation-delay: 0s; }
.bubble-2 { top: 20%; right: 0; animation-delay: 0.5s; }
.bubble-3 { top: 50%; left: 0; animation-delay: 1s; }
.bubble-4 { bottom: 20%; right: 10%; animation-delay: 1.5s; }
.bubble-5 { bottom: 0; left: 30%; animation-delay: 2s; }
.bubble-6 { top: 30%; left: 10%; animation-delay: 2.5s; }

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

.search-pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(90, 200, 250, 0.3);
    border-radius: 50%;
    animation: search-pulse 2s ease-out infinite;
}

@keyframes search-pulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* ==========================================
   Detail Content Section
   ========================================== */

.detail-content {
    padding: var(--spacing-4xl) 0;
}

.detail-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

/* Interactive Stats */
.interactive-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-4xl);
}

.stat-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(var(--color-primary-rgb), 0.1);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.stat-icon.red { background: rgba(255, 59, 48, 0.1); }
.stat-icon.red svg { stroke: #ff3b30; }
.stat-icon.orange { background: rgba(255, 149, 0, 0.1); }
.stat-icon.orange svg { stroke: #ff9500; }
.stat-icon.purple { background: rgba(175, 82, 222, 0.1); }
.stat-icon.purple svg { stroke: #af52de; }

.stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
}

.stat-content {
    margin-bottom: var(--spacing-md);
}

.stat-content .stat-number {
    display: block;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-text);
}

.stat-content .stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.stat-bar {
    height: 8px;
    background: var(--color-bg-secondary);
    border-radius: var(--border-radius-full);
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
    transition: width 1s var(--ease-out-expo);
}

.stat-bar-fill.orange {
    background: linear-gradient(90deg, #ff9500, #ff3b30);
}

.stat-bar-fill.purple {
    background: linear-gradient(90deg, #af52de, #5856d6);
}

/* Solution Section */
.solution-section {
    background: var(--color-bg-secondary);
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-3xl);
    margin: var(--spacing-4xl) 0;
}

.solution-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.solution-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.solution-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (max-width: 768px) {
    .solution-comparison {
        grid-template-columns: 1fr;
    }
}

.comparison-side {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
}

.comparison-side h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.comparison-side.before {
    border: 2px solid rgba(255, 59, 48, 0.2);
}

.comparison-side.after {
    border: 2px solid rgba(52, 199, 89, 0.2);
    box-shadow: var(--shadow-glow);
}

.comparison-side ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.comparison-side li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
}

.comparison-side li.negative svg {
    width: 20px;
    height: 20px;
    fill: #ff3b30;
}

.comparison-side li.positive svg {
    width: 20px;
    height: 20px;
    fill: #34c759;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-arrow {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-arrow svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

/* CTA */
.detail-cta {
    text-align: center;
    padding: var(--spacing-4xl);
    background: var(--gradient-primary);
    border-radius: var(--border-radius-2xl);
    margin-top: var(--spacing-4xl);
}

.detail-cta.orange {
    background: linear-gradient(135deg, #ff9500, #ff3b30);
}

.detail-cta.purple {
    background: linear-gradient(135deg, #af52de, #5856d6);
}

.detail-cta.green {
    background: linear-gradient(135deg, #34c759, #30d158);
}

.detail-cta.blue {
    background: linear-gradient(135deg, #0071e3, #00d4aa);
}

.detail-cta.cyan {
    background: linear-gradient(135deg, #5ac8fa, #0891b2);
}

.detail-cta h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.detail-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.detail-cta .btn-primary {
    background: white;
    color: var(--color-primary);
}

.detail-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Footer */
.detail-footer {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--color-border);
}

.detail-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.detail-footer p {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

.detail-footer .footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.detail-footer .footer-links a {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
}

.detail-footer .footer-links a:hover {
    color: var(--color-primary);
}

/* ==========================================
   Clickable Cards (Index page)
   ========================================== */

.problem-card-clickable,
.webservice-card-clickable {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    cursor: pointer;
    transition: all var(--transition-base);
}

.problem-card-clickable:hover,
.webservice-card-clickable:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-click-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.card-click-indicator svg {
    width: 16px;
    height: 16px;
}

.problem-card-clickable:hover .card-click-indicator,
.webservice-card-clickable:hover .card-click-indicator {
    opacity: 1;
    transform: translateY(0);
}

/* Service Pages Specific */
.service-page .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.service-page .pricing-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.service-page .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-page .pricing-card.featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.service-page .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-primary);
    color: white;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--border-radius-full);
}

.service-page .pricing-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
}

.service-page .pricing-card .price {
    margin-bottom: var(--spacing-lg);
}

.service-page .pricing-card .price .amount {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-primary);
}

.service-page .pricing-card .price .period {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
}

.service-page .pricing-card .features {
    margin-bottom: var(--spacing-xl);
}

.service-page .pricing-card .features li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--font-size-sm);
}

.service-page .pricing-card .features li:last-child {
    border-bottom: none;
}

.service-page .pricing-cards.single {
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .detail-hero {
        padding-top: 100px;
    }
    
    .hero-animation {
        transform: scale(0.8);
    }
    
    .seo-animation .search-container,
    .website-animation .browser-mockup {
        width: 100%;
        max-width: 350px;
    }
    
    .ranking-arrow {
        display: none;
    }
}
