/* Twitter Reklam Yönetimi CSS - Modern Tasarım Varyasyonu */

/* CSS Variables - Twitter Color Palette */
:root {
    --twitter-blue: #1da1f2;
    --twitter-blue-dark: #0d8bd9;
    --twitter-blue-light: #e8f5fe;
    --twitter-green: #17bf63;
    --twitter-red: #e0245e;
    --twitter-orange: #ffad1f;
    --twitter-purple: #794bc4;
    --primary: #1da1f2;
    --primary-light: #e8f5fe;
    --secondary: #17bf63;
    --accent: #ffad1f;
    --danger: #e0245e;
    --warning: #ffad1f;
    --success: #17bf63;
    --info: #1da1f2;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gradient-primary: linear-gradient(135deg, var(--twitter-blue), var(--twitter-green));
    --gradient-secondary: linear-gradient(135deg, var(--twitter-orange), var(--twitter-red));
    --gradient-accent: linear-gradient(135deg, var(--primary), var(--accent));
    --gradient-twitter: linear-gradient(135deg, #1da1f2 0%, #17bf63 50%, #ffad1f 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-twitter: 0 10px 25px -5px rgba(29, 161, 242, 0.2);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gray-900 {
    color: var(--gray-900);
}

.gradient-text {
    background: var(--gradient-twitter);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    background: linear-gradient(120deg, #ffeb3b 0%, #ffc107 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    color: var(--gray-800);
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

/* Hero Section - Modern Twitter Design */
.hero-section {
    position: relative;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f5fe 50%, #f0f9ff 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.twitter-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(29, 161, 242, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(23, 191, 99, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 173, 31, 0.1) 0%, transparent 50%);
    animation: twitterPatternMove 20s ease-in-out infinite;
}

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

.tweet-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-twitter);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(29, 161, 242, 0.2);
    animation: floatTweet 15s ease-in-out infinite;
}

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

.tweet-2 {
    top: 25%;
    right: 15%;
    animation-delay: 5s;
}

.tweet-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}

.tweet-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--twitter-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.tweet-content i {
    font-size: 1.2rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-twitter);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-twitter);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: white;
    font-size: 1.1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gray-600);
    margin-top: 0.5rem;
    display: block;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(29, 161, 242, 0.1);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--twitter-blue);
    margin-bottom: 0.5rem;
    background: var(--gradient-twitter);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: var(--gradient-twitter);
    color: white;
    border: 2px solid transparent;
}

.primary-btn::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;
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-twitter);
    color: white;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--twitter-blue);
    border: 2px solid var(--twitter-blue);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: var(--twitter-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-twitter);
}

/* Campaign Types Section */
.campaign-types-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.campaign-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-twitter);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 1rem;
    background: var(--gradient-twitter);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.campaign-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.campaign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-twitter);
    border-radius: 25px 25px 0 0;
}

.campaign-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(29, 161, 242, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.campaign-card:hover::after {
    opacity: 1;
}

.campaign-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-twitter);
    border-color: var(--twitter-blue);
}

.campaign-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-twitter);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 2.2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.campaign-card:hover .campaign-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
}

.campaign-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.campaign-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.campaign-features {
    list-style: none;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.campaign-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

.campaign-features i {
    color: var(--twitter-green);
    font-size: 1.1rem;
    background: rgba(23, 191, 99, 0.1);
    padding: 0.25rem;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.campaign-metrics {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.metric {
    text-align: center;
    background: rgba(29, 161, 242, 0.05);
    padding: 1rem;
    border-radius: 15px;
    flex: 1;
}

.metric-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--twitter-blue);
    margin-bottom: 0.25rem;
    background: var(--gradient-twitter);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Analytics Section */
.analytics-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f5fe 100%);
    position: relative;
}

.analytics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-twitter);
}

.analytics-dashboard {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-twitter);
    overflow: hidden;
    border: 1px solid rgba(29, 161, 242, 0.1);
}

.dashboard-header {
    background: var(--gradient-twitter);
    color: white;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.dashboard-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-title h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.live-indicator i {
    color: #ff4444;
    animation: pulse 2s infinite;
}

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

.dashboard-controls {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn.active,
.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem;
}

.metric-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f5fe 100%);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(29, 161, 242, 0.1);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-twitter);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-twitter);
    border-color: var(--twitter-blue);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-twitter);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-change {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-change.positive {
    background: rgba(23, 191, 99, 0.1);
    color: var(--twitter-green);
    border: 1px solid rgba(23, 191, 99, 0.2);
}

.metric-change.negative {
    background: rgba(224, 36, 94, 0.1);
    color: var(--twitter-red);
    border: 1px solid rgba(224, 36, 94, 0.2);
}

.chart-container {
    padding: 3rem;
    border-top: 1px solid rgba(29, 161, 242, 0.1);
    background: linear-gradient(135deg, #f8fafc 0%, #e8f5fe 100%);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.chart-header h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-800);
    margin: 0;
}

.chart-legend {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chart-placeholder {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(29, 161, 242, 0.1);
}

/* Success Stories Section */
.success-stories-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.success-stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-twitter);
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.success-story {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.success-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-twitter);
    border-radius: 25px 25px 0 0;
}

.success-story:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-twitter);
    border-color: var(--twitter-blue);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.story-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--twitter-blue);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-info {
    flex: 1;
}

.story-info h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.story-info span {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.story-rating {
    display: flex;
    gap: 0.25rem;
}

.story-rating i {
    color: #ffad1f;
    font-size: 1rem;
    filter: drop-shadow(0 2px 4px rgba(255, 173, 31, 0.3));
}

.story-content {
    margin-bottom: 2rem;
}

.story-content p {
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    font-size: 1.1rem;
}

.story-metrics {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
}

.story-metrics .metric {
    text-align: center;
    background: rgba(29, 161, 242, 0.05);
    padding: 1rem;
    border-radius: 15px;
    flex: 1;
    border: 1px solid rgba(29, 161, 242, 0.1);
}

.story-metrics .metric-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--twitter-blue);
    margin-bottom: 0.25rem;
    background: var(--gradient-twitter);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-metrics .metric-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f5fe 100%);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-twitter);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--gradient-twitter);
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.process-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-twitter);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
    border: 4px solid white;
}

.step-content {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(29, 161, 242, 0.1);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-twitter);
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.step-content ul {
    list-style: none;
}

.step-content li {
    padding: 0.75rem 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
}

.step-content li::before {
    content: '🐦';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-twitter);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="twitter-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23twitter-pattern)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: white;
    color: var(--twitter-blue);
    border: 2px solid white;
}

.cta-btn.primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: var(--twitter-blue);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes twitterPatternMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(10px) translateY(-10px); }
    50% { transform: translateX(-5px) translateY(5px); }
    75% { transform: translateX(-10px) translateY(-5px); }
}

@keyframes floatTweet {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-title .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .tweet-bubble {
        display: none;
    }
    
    .campaign-grid, .success-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step {
        gap: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .step-content {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chart-legend {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .campaign-card, .success-story, .step-content {
        padding: 2rem;
    }
    
    .metric-card {
        padding: 1.5rem;
    }
    
    .story-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .campaign-metrics {
        flex-direction: column;
        gap: 1rem;
    }
}
