/* ========================================
   REKLAMA MOBILNA - Custom Stylesheet
   Version: 1.0
   Description: Styles for Reklama Mobilna landing page
   Based on smsOn style with custom hero phone for SMS/MMS/Email
   ======================================== */

/* ========================================
   CSS VARIABLES (same as smsOn)
   ======================================== */
:root {
    --primary-color: #1a3a52;
    --accent-color: #2dd4a3;
    --dark-color: #0d1f2d;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --border-light: #e0e0e0;
}

/* ========================================
   HERO SECTION - REKLAMA MOBILNA SPECIFIC
   ======================================== */

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 140px 0 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-section * {
    pointer-events: auto;
}

.hero-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.hero-subheadline {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.hero-section .lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
}

.hero-cta-group .btn {
    min-width: 200px;
    position: relative;
    z-index: 100;
}

.hero-trust-signal {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.hero-trust-signal .text-success {
    color: var(--accent-color) !important;
}

/* ========================================
   TRIPLE PHONE CONTAINER - 3 Phones Side by Side
   ======================================== */

/* ========================================
   TRIPLE PHONE SHOWCASE - IMAGE-BASED
   ======================================== */

.triple-phone-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

/* Individual Phone Showcase */
.phone-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Phone Label Above */
.phone-label {
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Featured Label (MMS) - Larger and More Prominent */
.phone-label.featured-label {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 
        0 0 20px rgba(45, 212, 163, 0.6),
        0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1.2rem;
}

/* Phone Mockup Image */
.phone-mockup-img {
    width: 240px;
    height: auto;
    max-width: 100%;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}

.phone-showcase:hover .phone-mockup-img {
    transform: translateY(-8px);
    filter: drop-shadow(0 25px 70px rgba(0,0,0,0.35));
}

/* Featured Phone (MMS - Center, Larger) */
.phone-showcase.featured {
    z-index: 2;
}

.phone-showcase.featured .phone-mockup-img {
    width: 280px;
    filter: drop-shadow(0 30px 80px rgba(45, 212, 163, 0.4));
}

.phone-showcase.featured:hover .phone-mockup-img {
    transform: translateY(-8px);
    filter: drop-shadow(0 35px 90px rgba(45, 212, 163, 0.5));
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(45, 212, 163, 0.4);
    z-index: 3;
}

/* ========================================
   CAMPAIGNS SECTION - Campaign Type Cards
   ======================================== */

.campaigns-section {
    background: white;
}

.campaign-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.campaign-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 58, 82, 0.15);
    border-color: var(--accent-color);
}

.campaign-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(45, 212, 163, 0.2);
}

.campaign-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.campaign-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.campaign-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.campaign-card p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.campaign-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.campaign-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.campaign-features li i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* ========================================
   WHY US SECTION - Feature Boxes
   ======================================== */

.why-us-section {
    background: var(--bg-light);
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.feature-box h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   TARGETING SECTION - Split Layout
   ======================================== */

.targeting-section {
    background: white;
}

/* Left Side - Visual */
.targeting-visual-wrapper {
    position: relative;
    padding: 2rem;
}

.targeting-diagram-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(26, 58, 82, 0.1));
}

.targeting-stats {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.stat-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(45, 212, 163, 0.3);
    font-weight: 700;
    font-size: 0.95rem;
}

.stat-badge i {
    font-size: 1.2rem;
}

/* Right Side - Table */
.targeting-table {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.targeting-category {
    background: white;
    border-left: 4px solid var(--accent-color);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.targeting-category:hover {
    box-shadow: 0 8px 24px rgba(26, 58, 82, 0.1);
    transform: translateX(8px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.category-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.category-header h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 3.5rem;
}

.category-list li {
    padding: 0.4rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    position: relative;
}

.category-list li::before {
    content: "→";
    position: absolute;
    left: -1.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

/* ========================================
   TYPES SECTION - Timeline Layout
   ======================================== */

.types-section {
    background: var(--bg-light);
}

/* Timeline Container */
.types-timeline {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

/* Timeline Item */
.timeline-item {
    flex: 1;
    max-width: 360px;
    position: relative;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(45, 212, 163, 0.3);
}

.timeline-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 58, 82, 0.15);
    border-color: var(--accent-color);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.timeline-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.timeline-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-description {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.timeline-examples {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.example-badge {
    background: var(--bg-light);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.example-badge:hover {
    background: #e3f2fd;
    transform: translateX(4px);
}

.example-badge i {
    color: var(--accent-color);
    font-size: 0.9rem;
    width: 16px;
}

/* Arrow Connectors */
.timeline-arrow {
    display: flex;
    align-items: center;
    color: var(--accent-color);
    font-size: 2rem;
    flex-shrink: 0;
    margin: 0 -0.5rem;
    margin-top: 50px;
}

/* Comparison Table */
.types-comparison {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.types-comparison h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.comparison-row.header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.comparison-row.header .comparison-cell {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.comparison-row:not(.header):nth-child(even) {
    background: var(--bg-light);
}

.comparison-cell {
    padding: 1rem 1.25rem;
    border-right: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell.label {
    font-weight: 700;
    color: var(--primary-color);
    background: white;
}

.comparison-row:not(.header) .comparison-cell:not(.label) {
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991px) {
    .types-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        max-width: 100%;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-row.header {
        display: none;
    }
    
    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        justify-content: flex-start;
        text-align: left;
    }
    
    .comparison-cell.label::after {
        content: ":";
        margin-left: auto;
        margin-right: 0.5rem;
    }
    
    .comparison-row {
        display: grid;
        grid-template-columns: 120px 1fr;
        grid-template-rows: auto;
    }
    
    .comparison-row:first-child {
        display: none;
    }
    
    .comparison-cell.label {
        grid-column: 1;
    }
}
/* ========================================
   CASE STUDIES SECTION - Industry Cards
   ======================================== */

.case-studies-section {
    background: white;
}

.industry-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 58, 82, 0.15);
    border-color: var(--accent-color);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.industry-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.industry-example {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.industry-stats {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.industry-stats .stat {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* ========================================
   PROCESS SECTION - Timeline
   ======================================== */

.process-section {
    background: var(--bg-light);
}

.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + 3rem);
    background: var(--border-light);
}

.process-step:last-child::before {
    display: none;
}

.process-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(45, 212, 163, 0.3);
    position: relative;
    z-index: 2;
}

.process-content {
    flex-grow: 1;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.process-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.process-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   FAQ SECTION (same as smsOn)
   ======================================== */

.faq-section {
    background: white;
}

.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: white;
}

.accordion-button {
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--accent-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a3a52'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
    background: white;
}

/* ========================================
   FINAL CTA SECTION (same as smsOn)
   ======================================== */

.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.final-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.final-cta-section .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.final-cta-section .cta-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-trust {
    position: relative;
    z-index: 2;
}

/* ========================================
   SECTION HEADER (REUSABLE)
   ======================================== */

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header .lead {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* ========================================
   SMOOTH SCROLL BEHAVIOR
   ======================================== */

html {
    scroll-behavior: smooth;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

/* ========================================
   BUTTONS (from main style.css - ensure consistency)
   ======================================== */

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #25b88b;
    border-color: #25b88b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 212, 163, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

/* ========================================
   RESPONSIVE - MOBILE ADJUSTMENTS
   ======================================== */

@media (max-width: 992px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .targeting-diagram {
        width: 300px;
        height: 300px;
    }
    
    .targeting-circle.main {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
    }
    
    .targeting-circle.geo,
    .targeting-circle.demo,
    .targeting-circle.behavior,
    .targeting-circle.time {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    /* Hero CTAs */
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-cta-group .btn {
        width: 100%;
        min-width: auto;
    }
    
    /* Triple Phone Container - Stack vertically on mobile */
    .triple-phone-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .phone-showcase {
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
        animation: none !important;
    }
    
    .phone-showcase.featured {
        order: -1; /* MMS first on mobile */
        transform: translateY(0) scale(1) !important; /* No scale on mobile */
    }
    
    /* Smaller phones on mobile */
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .phone-frame {
        padding: 12px;
        border-radius: 40px;
    }
    
    .phone-screen {
        border-radius: 30px;
    }
    
    .phone-notch {
        width: 130px;
        height: 25px;
    }
    
    .message-text,
    .email-subject,
    .email-content {
        font-size: 13px;
    }
    
    .sender-avatar {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    
    .sender-name {
        font-size: 13px;
    }
    
    .phone-status-bar {
        padding: 6px 16px;
        padding-top: 35px;
        font-size: 11px;
    }
    
    /* Targeting Diagram - Hide on mobile, show only list */
    .targeting-visual {
        display: none;
    }
    
    /* Process Timeline */
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-step::before {
        left: 20px;
        top: 100px;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations - will be triggered by JS */
.campaign-card,
.feature-box,
.targeting-item,
.targeting-category,
.timeline-item,
.type-card,
.industry-card,
.process-step {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.campaign-card.animated,
.feature-box.animated,
.targeting-item.animated,
.targeting-category.animated,
.timeline-item.animated,
.type-card.animated,
.industry-card.animated,
.process-step.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive - Mobile */
@media (max-width: 991px) {
    .targeting-visual-wrapper {
        margin-bottom: 2rem;
    }
    
    .targeting-diagram-img {
        max-width: 300px;
    }
    
    .targeting-category {
        border-left-width: 3px;
        padding: 1rem 1.25rem;
    }
    
    .category-list {
        padding-left: 3rem;
    }
}