* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 60px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    align-items: center;
}

.hero * {
    color: white !important;
}

.hero h1 {
    color: white !important;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

.book-type {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.book-type i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.book-type span {
    font-weight: 600;
    color: white;
}

.book-badge {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: auto;
}

.success-promise {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: white;
}

.promise-item i {
    color: #2ecc71;
    font-size: 1.1rem;
    width: 20px;
}

.promise-item strong {
    color: #2ecc71;
    font-weight: 700;
}

.urgency-box {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    animation: urgencyPulse 1.5s ease-in-out infinite;
}

.urgency-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.urgency-text i {
    animation: fireFlicker 0.5s ease-in-out infinite alternate;
}

.value-proposition {
    text-align: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.value-text {
    font-weight: 700;
    color: #2ecc71;
    font-size: 1.05rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #2c3e50;
}

.hero-subtitle strong {
    color: #e74c3c;
    font-weight: 700;
}

.hero-subtitle em {
    color: #27ae60;
    font-style: normal;
    font-weight: 700;
    background: rgba(39, 174, 96, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    margin-top: 40px;
}

.price {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.discount {
    background: #e74c3c;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid #c0392b;
}

.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.3);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-button.pulse {
    animation: ctaPulse 2s ease-in-out infinite;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
}

.savings {
    background: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 8px;
    animation: savingsPulse 1s ease-in-out infinite alternate;
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.trust-item i {
    color: #2ecc71;
}

.guarantee {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Professional SEO Dashboard */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 650px;
    overflow: visible;
}

.professional-seo-dashboard {
    position: relative;
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(52, 152, 219, 0.08);
    border: 1px solid rgba(52, 152, 219, 0.06);
    max-width: 100%;
}

/* SEO Performance Monitor */
.seo-monitor {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 0.8s ease-out;
}

.monitor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.monitor-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #27ae60;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(52, 152, 219, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.metric-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.12);
    border-color: rgba(52, 152, 219, 0.15);
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3498db 0%, #5dade2 50%, #85c1e9 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-card.traffic { 
    animation-delay: 0.1s; 
}
.metric-card.traffic::before { background: linear-gradient(90deg, #3498db, #2980b9); }

.metric-card.ranking { 
    animation-delay: 0.3s; 
}
.metric-card.ranking::before { background: linear-gradient(90deg, #f39c12, #e67e22); }

.metric-card.conversion { 
    animation-delay: 0.5s; 
}
.metric-card.conversion::before { background: linear-gradient(90deg, #27ae60, #2ecc71); }

.metric-card.keywords { 
    animation-delay: 0.7s; 
}
.metric-card.keywords::before { background: linear-gradient(90deg, #9b59b6, #8e44ad); }

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.metric-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.traffic .metric-icon { 
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}
.ranking .metric-icon { 
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}
.conversion .metric-icon { 
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}
.keywords .metric-icon { 
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.metric-label {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.counter {
    font-size: 2.4rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.growth {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.sparkline {
    width: 100%;
    height: 20px;
}

.sparkline polyline {
    animation: drawLine 2s ease-in-out 1s forwards;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

.ranking-bars {
    display: flex;
    gap: 3px;
    height: 20px;
    align-items: end;
}

.ranking-bar {
    width: 8px;
    background: #f39c12;
    border-radius: 2px 2px 0 0;
    animation: barGrow 1s ease-out forwards;
    height: 0;
}

.ranking-bar[data-position="1"] { animation-delay: 1.5s; --height: 90%; }
.ranking-bar[data-position="2"] { animation-delay: 1.7s; --height: 70%; }
.ranking-bar[data-position="3"] { animation-delay: 1.9s; --height: 50%; }
.ranking-bar[data-position="4"] { animation-delay: 2.1s; --height: 30%; }

.conversion-ring {
    width: 40px;
    height: 40px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: #ecf0f1;
    stroke-width: 3;
}

.progress-ring-fill {
    fill: none;
    stroke: #27ae60;
    stroke-width: 3;
    stroke-dasharray: 113;
    stroke-dashoffset: 113;
    animation: fillRing 2s ease-out 1s forwards;
}

.keyword-pills {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.pill {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 500;
}

.pill.top-3 {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.pill.top-10 {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

/* Technical SEO Analyzer */
.technical-analyzer {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(52, 152, 219, 0.06);
    animation: slideInLeft 0.8s ease-out 0.2s both;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.analyzer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.analyzer-header h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 700;
}

.scan-status {
    font-size: 0.8rem;
    color: #3498db;
    font-weight: 600;
    position: relative;
}

.scan-status::after {
    content: '';
    width: 4px;
    height: 4px;
    background: #3498db;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    animation: pulse 1s ease-in-out infinite;
}

.analysis-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.analysis-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: slideInLeft 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.analysis-item:nth-child(1) { animation-delay: 1s; }
.analysis-item:nth-child(2) { animation-delay: 1.2s; }
.analysis-item:nth-child(3) { animation-delay: 1.4s; }
.analysis-item:nth-child(4) { animation-delay: 1.6s; }

.item-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    background: #7f8c8d;
}

.analysis-item[data-status="excellent"] .item-icon {
    background: #27ae60;
}

.analysis-item[data-status="good"] .item-icon {
    background: #f39c12;
}

.item-content {
    flex: 1;
}

.item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2px;
}

.item-score {
    font-size: 0.8rem;
    color: #7f8c8d;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7f8c8d;
}

.status-indicator.excellent {
    background: #27ae60;
    animation: pulse 2s ease-in-out infinite;
}

.status-indicator.good {
    background: #f39c12;
}

.overall-score {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.score-circle {
    position: relative;
    width: 80px;
    height: 80px;
}

.score-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-bg {
    fill: none;
    stroke: #ecf0f1;
    stroke-width: 8;
}

.score-progress {
    fill: none;
    stroke: #3498db;
    stroke-width: 8;
    stroke-dasharray: 339;
    stroke-dashoffset: 339;
    animation: fillScore 3s ease-out 2s forwards;
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

.score-label {
    font-size: 0.7rem;
    color: #7f8c8d;
    text-transform: uppercase;
}

.seo-element.core-vitals {
    top: 15%;
    left: 15%;
    animation-delay: 0.5s;
}

.seo-element.schema {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.seo-element.backlinks {
    top: 50%;
    left: 8%;
    animation-delay: 1.5s;
}

.seo-element.google-bot {
    top: 50%;
    right: 8%;
    animation-delay: 2s;
}

.seo-element.programmatic {
    bottom: 15%;
    left: 15%;
    animation-delay: 2.5s;
}

.seo-element.analytics {
    bottom: 15%;
    right: 15%;
    animation-delay: 3s;
}

.element-icon {
    text-align: center;
    margin-bottom: 8px;
}

.element-icon i {
    font-size: 1.5rem;
    color: #3498db;
}

/* Backlink Network Styles */
.network-canvas {
    position: relative;
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.03) 0%, rgba(155, 89, 182, 0.05) 100%);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(52, 152, 219, 0.08);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.network-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.network-node {
    position: absolute;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #3498db 0%, #5dade2 100%);
    border-radius: 50%;
    animation: nodeGlow 3s ease-in-out infinite alternate;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.network-node:hover {
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(52, 152, 219, 0.7);
}

.network-node.authority {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #ec7063 100%);
    animation: authorityPulse 2s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.network-node.partner {
    background: linear-gradient(135deg, #f39c12 0%, #f7dc6f 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.network-node:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.network-node:nth-child(2) { top: 35%; left: 40%; animation-delay: 0.3s; }
.network-node:nth-child(3) { top: 60%; left: 25%; animation-delay: 0.6s; }
.network-node:nth-child(4) { top: 45%; left: 70%; animation-delay: 0.9s; }
.network-node:nth-child(5) { top: 75%; left: 60%; animation-delay: 1.2s; }
.network-node:nth-child(6) { top: 25%; left: 80%; animation-delay: 1.5s; }

.network-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    stroke: rgba(52, 152, 219, 0.3);
    stroke-width: 1;
    stroke-dasharray: 3,3;
    animation: connectionFlow 3s linear infinite;
}

.backlink-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.backlink-stat {
    text-align: center;
    padding: 10px;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    animation: countUp 2s ease-out forwards;
}

.stat-label {
    font-size: 0.8rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quality-high { color: #27ae60; }
.quality-medium { color: #f39c12; }
.quality-total { color: #3498db; }

/* Success Dashboard - Kibar ve Satış Odaklı */
.success-dashboard {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    overflow: hidden;
}

/* Ana Başarı Paneli */
.main-success-panel {
    padding: 32px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.9) 100%);
    border-bottom: 1px solid rgba(52, 152, 219, 0.06);
}

.success-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.success-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: successGlow 2s ease-in-out infinite alternate;
}

.success-title h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50 !important;
    margin: 0 0 4px 0;
}

.success-title p {
    font-size: 0.9rem;
    color: #7f8c8d !important;
    margin: 0;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(39, 174, 96, 0.2) !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #27ae60 !important;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #27ae60;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Büyük Kazanç Göstergesi */
.revenue-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 24px 0 32px 0;
    padding: 24px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.02) 0%, rgba(155, 89, 182, 0.03) 100%);
    border-radius: 16px;
    border: 1px solid rgba(52, 152, 219, 0.06);
}

.revenue-item {
    text-align: center;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.revenue-item.before { animation-delay: 0.2s; }
.revenue-item.after { animation-delay: 0.6s; }

.period-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #7f8c8d !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.revenue-amount {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    color: #2c3e50 !important;
}

.revenue-amount.old {
    color: #95a5a6 !important;
    text-decoration: line-through;
    opacity: 0.7;
}

.revenue-amount.new {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: revenueGlow 2s ease-in-out infinite alternate;
}

.period-desc {
    font-size: 0.8rem;
    color: #7f8c8d !important;
}

.growth-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: slideInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.growth-arrow i {
    font-size: 1.5rem;
    color: #27ae60;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

.growth-badge {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
}

/* Kilit Metrikler */
.key-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(52, 152, 219, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.metric-box.traffic { animation-delay: 0.1s; }
.metric-box.ranking { animation-delay: 0.3s; }
.metric-box.conversion { animation-delay: 0.5s; }

.metric-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.1);
    border-color: rgba(52, 152, 219, 0.12);
}

.metric-box .metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.metric-box.traffic .metric-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.metric-box.ranking .metric-icon {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.metric-box.conversion .metric-icon {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50 !important;
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.8rem;
    color: #7f8c8d !important;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-growth {
    font-size: 0.75rem;
    font-weight: 600;
    color: #27ae60 !important;
    background: rgba(39, 174, 96, 0.2) !important;
    padding: 2px 8px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

/* ROI Hesaplayıcı */
.roi-calculator {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.04) 0%, rgba(155, 89, 182, 0.06) 100%);
    padding: 24px;
    border-radius: 16px;
    margin: 16px 0;
    border: 1px solid rgba(52, 152, 219, 0.08);
}

.calc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.calc-header i {
    font-size: 1.2rem;
    color: #3498db !important;
}

.calc-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50 !important;
    margin: 0;
}

.calc-result {
    text-align: center;
    margin-bottom: 20px;
}

.calc-label {
    font-size: 0.8rem;
    color: #7f8c8d !important;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-amount {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.roi-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 20px;
}

.roi-item {
    text-align: center;
}

.roi-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50 !important;
    display: block;
    line-height: 1;
}

.roi-label {
    font-size: 0.7rem;
    color: #7f8c8d !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.investment-comparison {
    background: rgba(255, 255, 255, 0.6);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(52, 152, 219, 0.06);
}

.investment-text {
    font-size: 0.9rem;
    color: #2c3e50 !important;
    margin-bottom: 8px;
}

.roi-percentage {
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sosyal Kanıt */
.social-proof {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.04) 0%, rgba(46, 204, 113, 0.06) 100%);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(39, 174, 96, 0.08);
}

.proof-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #27ae60 !important;
}

.proof-header i {
    color: #f39c12 !important;
}

.success-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.indicator.active {
    opacity: 1;
    animation: indicatorPulse 2s ease-in-out infinite;
}

.indicator-icon {
    font-size: 1.5rem;
}

.indicator-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: #2c3e50 !important;
}

.urgency-message {
    text-align: center;
    font-size: 0.85rem;
    color: #7f8c8d !important;
    background: rgba(255, 255, 255, 0.6);
    padding: 12px;
    border-radius: 8px;
}

/* Enhancement Indicators Styles */
.enhancement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.enhancement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 10px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    animation: enhancementSlide 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.enhancement-item:nth-child(1) { animation-delay: 0.5s; border-left-color: #27ae60; }
.enhancement-item:nth-child(2) { animation-delay: 0.7s; border-left-color: #3498db; }
.enhancement-item:nth-child(3) { animation-delay: 0.9s; border-left-color: #f39c12; }
.enhancement-item:nth-child(4) { animation-delay: 1.1s; border-left-color: #e74c3c; }

.enhancement-icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.enhancement-icon.speed {
    background: linear-gradient(135deg, #27ae60, #219a52);
}

.enhancement-icon.mobile {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.enhancement-icon.security {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.enhancement-icon.accessibility {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.enhancement-content {
    flex: 1;
}

.enhancement-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3px;
}

.enhancement-impact {
    font-size: 0.75rem;
    color: #7f8c8d;
}

.enhancement-arrow {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #3498db;
    animation: arrowBounce 2s ease-in-out infinite;
}

.progress-overview {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.05));
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.progress-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.progress-stat {
    text-align: center;
}

.progress-value {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    animation: numberCount 2.5s ease-out forwards;
}

.progress-label {
    font-size: 0.8rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.element-text {
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

/* Progress Bar */
.progress-bar {
    background: #ecf0f1;
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    border-radius: 2px;
    animation: progressFill 2s ease-out 3s forwards;
    width: 0%;
}

/* Code Lines */
.code-lines {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.code-line {
    height: 3px;
    background: #3498db;
    border-radius: 2px;
    animation: codeWrite 1s ease-out forwards;
    width: 0%;
}

.code-line:nth-child(1) {
    animation-delay: 3.5s;
    width: 80%;
}

.code-line:nth-child(2) {
    animation-delay: 3.8s;
    width: 60%;
}

.code-line:nth-child(3) {
    animation-delay: 4.1s;
    width: 90%;
}

/* Network Dots */
.network-dots {
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot {
    width: 6px;
    height: 6px;
    background: #3498db;
    border-radius: 50%;
    position: absolute;
    animation: pulse 1.5s ease-in-out infinite;
}

.dot:nth-child(1) { top: 0; left: 0; }
.dot:nth-child(2) { top: 0; right: 0; }
.dot:nth-child(3) { bottom: 0; left: 15px; }
.dot:nth-child(4) { bottom: 0; right: 15px; animation-delay: 0.5s; }

.connection {
    position: absolute;
    height: 1px;
    background: #3498db;
    animation: drawLine 1s ease-out forwards;
    width: 0%;
}

.connection:nth-child(5) {
    top: 3px;
    left: 6px;
    width: 40px;
    animation-delay: 4s;
}

.connection:nth-child(6) {
    bottom: 3px;
    left: 21px;
    width: 30px;
    animation-delay: 4.3s;
}

/* Crawl Animation */
.crawl-animation {
    position: relative;
    height: 4px;
    background: #ecf0f1;
    border-radius: 2px;
    overflow: hidden;
}

.crawl-line {
    height: 100%;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
    width: 30%;
    animation: crawl 2s ease-in-out infinite;
}

/* Page Counter */
.page-counter {
    text-align: center;
}

.counter-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #3498db;
    animation: countUp 2s ease-out 4s forwards;
}

.counter-label {
    font-size: 0.7rem;
    color: #7f8c8d;
}

/* Chart Bars */
.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 25px;
    gap: 3px;
}

.bar {
    width: 4px;
    background: linear-gradient(to top, #3498db, #2980b9);
    border-radius: 2px 2px 0 0;
    animation: barGrow 1s ease-out forwards;
    height: 0%;
}

.bar:nth-child(1) { animation-delay: 4.5s; }
.bar:nth-child(2) { animation-delay: 4.7s; }
.bar:nth-child(3) { animation-delay: 4.9s; }
.bar:nth-child(4) { animation-delay: 5.1s; }

/* Central SEO Hub */
.seo-hub {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.hub-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    animation: hubPulse 2s ease-in-out infinite;
}

.hub-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

.hub-text {
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-ring {
    position: absolute;
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: pulseRing 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.pulse-ring.pulse-2 {
    animation-delay: 1.5s;
}

/* Particles Background */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(52, 152, 219, 0.6);
    border-radius: 50%;
    animation: particleFloat 6s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 1.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 2.5s; }

/* Animations */
@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes resultSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Cleaned up old animations - replaced with professional dashboard */

/* Content Preview */
.content-preview {
    padding: 80px 60px;
    background: #f8fafc;
}

.content-preview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
}

.content-preview h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

/* Chapters */
.chapters {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chapter {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(52, 73, 94, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
}

.chapter:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.15);
    border-left-color: #2980b9;
}

.chapter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
}

.chapter-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.chapter-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid #2471a3;
}

.chapter h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 700;
}

.chapter p {
    color: #5d6d7e;
    font-size: 0.9rem;
    font-weight: 500;
}

.chapter-header i {
    color: #7f8c8d;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.chapter.active .chapter-header i {
    transform: rotate(180deg);
}

.chapter-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.chapter.active .chapter-content {
    max-height: 300px;
}

.chapter-content ul {
    list-style: none;
    padding: 30px;
    padding-top: 0;
}

.chapter-content li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #34495e;
    font-weight: 500;
}

.chapter-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 60px;
    background: linear-gradient(135deg, #ecf0f1, #d5dbdb);
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(52, 73, 94, 0.1);
    text-align: center;
    border-top: 4px solid #3498db;
}

.stars {
    color: #f39c12;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.7;
    font-weight: 500;
}

.author {
    font-weight: 700;
    color: #2c3e50;
}

/* Problem-Solution Section */
.problem-solution {
    padding: 80px 60px;
    background: #f8fafc;
}

.problem-solution-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.problem-solution h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.problem-item {
    background: white;
    padding: 25px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.08);
    border-left: 3px solid #e74c3c;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon.error {
    width: 50px;
    height: 50px;
    background: #e74c3c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.2rem;
}

.problem-item h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.problem-item p {
    color: #5d6d7e;
    line-height: 1.5;
    font-size: 0.85rem;
}

.solution-arrow {
    font-size: 2rem;
    color: #3498db;
    margin: 25px 0;
    animation: bounce 2s infinite;
}

.solution-box {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.25);
    max-width: 600px;
    margin: 0 auto;
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.solution-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.solution-item i {
    color: #f1c40f;
    font-size: 1.2rem;
}

/* ROI Calculator Section */
.roi-calculator {
    padding: 80px 60px;
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
}

.calculator-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.roi-calculator h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.calculator-subtitle {
    font-size: 1.1rem;
    color: #5d6d7e;
    margin-bottom: 50px;
}

.calculator-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    padding-right: 50px;
}

.input-group input:focus {
    outline: none;
    border-color: #3498db;
}

.input-unit {
    position: absolute;
    right: 15px;
    top: 35px;
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 500;
}

.calculate-btn {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.calculator-results {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.result-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    min-width: 200px;
    flex: 1;
}

.result-card.current {
    border-left: 4px solid #e74c3c;
}

.result-card.potential {
    border-left: 4px solid #27ae60;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), #f8f9fa);
}

.result-card h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.result-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.period {
    color: #7f8c8d;
    font-size: 1rem;
}

.result-details {
    color: #5d6d7e;
    font-size: 0.9rem;
}

.growth-indicator {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.result-arrow {
    font-size: 2rem;
    color: #3498db;
}

.roi-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #3498db;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 1rem;
}

.summary-item.highlight {
    background: rgba(52, 152, 219, 0.1);
    padding: 10px 15px;
    border-radius: 6px;
    margin: 5px 0;
}

.summary-item.roi {
    border-top: 2px solid #3498db;
    padding-top: 15px;
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.2rem;
}

.summary-item .label {
    color: #2c3e50;
    font-weight: 500;
}

.summary-item .value {
    color: #27ae60;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    padding: 80px 60px;
    background: white;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #5d6d7e;
    margin-bottom: 50px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3498db;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
}

.faq-item.active {
    border-color: #3498db;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #3498db;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #34495e;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    padding: 80px 60px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.urgency {
    margin-bottom: 30px;
}

.countdown {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e74c3c;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    animation: pulse 2s infinite;
    border: 2px solid #c0392b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Professional Dashboard Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fillScore {
    from {
        stroke-dashoffset: 339;
    }
    to {
        stroke-dashoffset: 204; /* 60% filled */
    }
}

@keyframes nodeGlow {
    from {
        box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
        transform: scale(1);
    }
    to {
        box-shadow: 0 0 15px rgba(52, 152, 219, 0.6);
        transform: scale(1.1);
    }
}

@keyframes authorityPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(231, 76, 60, 0.4);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(231, 76, 60, 0.7);
    }
}

@keyframes connectionFlow {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 6;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes enhancementSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

@keyframes numberCount {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes progressRingFill {
    from {
        stroke-dashoffset: 251;
    }
    to {
        stroke-dashoffset: 75; /* 70% filled */
    }
}

/* Success Dashboard Animations */
@keyframes successGlow {
    from {
        box-shadow: 0 6px 20px rgba(243, 156, 18, 0.2);
    }
    to {
        box-shadow: 0 8px 30px rgba(243, 156, 18, 0.4);
    }
}

@keyframes revenueGlow {
    from {
        filter: brightness(1);
    }
    to {
        filter: brightness(1.2);
    }
}

@keyframes arrowPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes indicatorPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(39, 174, 96, 0.5);
    }
}

@keyframes urgencyPulse {
    0%, 100% {
        background: linear-gradient(135deg, #e74c3c, #c0392b);
    }
    50% {
        background: linear-gradient(135deg, #c0392b, #e74c3c);
    }
}

@keyframes fireFlicker {
    0% { transform: rotate(-2deg); }
    100% { transform: rotate(2deg); }
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(39, 174, 96, 0.3);
    }
    50% {
        box-shadow: 0 12px 40px rgba(39, 174, 96, 0.5);
    }
}

@keyframes savingsPulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.final-price {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.final-price .old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.final-price .current-price {
    font-size: 3rem;
    font-weight: 700;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #27ae60;
    color: white;
    padding: 22px 44px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
    margin-bottom: 40px;
    border: 2px solid #229954;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.4);
    background: #229954;
}

.bonuses {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    margin-top: 40px;
}

.bonuses h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.bonuses ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonuses li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

/* Footer */
footer {
    padding: 40px 60px;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.guarantees {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantees span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        text-align: center;
        gap: 40px;
    }
    
    .hero-image {
        display: none !important;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .success-promise {
        padding: 15px;
    }
    
    .promise-item {
        font-size: 0.9rem;
    }
    
    .trust-signals {
        gap: 15px;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .book-type {
        padding: 10px 15px;
    }
    
    .cta-button {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .stats {
        justify-content: center;
    }
    
    .content-preview,
    .testimonials,
    .final-cta,
    footer {
        padding: 40px 30px;
    }
    
    .content-preview h2,
    .testimonials h2,
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .chapter-header {
        padding: 20px;
    }
    
    .chapter-info {
        gap: 20px;
    }
    
    .chapter-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .guarantees {
        flex-direction: column;
        gap: 15px;
    }
    
    .seo-animation-container {
        height: 400px;
        padding: 20px;
    }
    
    .dashboard-container {
        padding: 20px;
        gap: 15px;
    }
    
    .search-engine {
        min-width: 280px;
        padding: 15px;
        top: 20px;
    }
    
    .seo-element {
        padding: 10px;
        min-width: 100px;
    }
    
    .element-text {
        font-size: 0.7rem;
    }
    
    .hub-circle {
        width: 80px;
        height: 80px;
    }
    
    .hub-icon {
        font-size: 1.5rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .solution-box {
        padding: 25px 20px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .calculator-results {
        flex-direction: column;
        gap: 20px;
    }
    
    .result-arrow {
        transform: rotate(90deg);
    }
    
    .summary-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 10px;
        border-radius: 15px;
    }
    
    .hero {
        padding: 30px 15px;
        gap: 30px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .success-promise {
        padding: 12px;
        margin: 15px 0;
    }
    
    .promise-item {
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .book-type {
        padding: 8px 12px;
        gap: 8px;
    }
    
    .cta-button {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .urgency-box {
        padding: 10px 15px;
    }
    
    .urgency-text {
        font-size: 0.85rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .price {
        flex-direction: column;
        gap: 10px;
    }
    
    .final-price {
        flex-direction: column;
        gap: 10px;
    }
    
    .chapter-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}