/* Package Transformation Styles */
/* New styles for the Complete Digital Growth Package transformation */

/* ==================== BEFORE/AFTER TRANSFORMATION SECTION ==================== */

.transformation-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    overflow: hidden;
}

.transformation-section .section-label {
    color: #10b981;
}

.transformation-section .section-title {
    color: #ffffff;
}

.transformation-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.transformation-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.transform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.transform-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.label-tag {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.before-tag {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.after-tag {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.label-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Phone Frame Styling */
.transform-phone-frame {
    position: relative;
    width: 220px;
    height: 450px;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 8px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000000;
    border-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #000000;
}

.transform-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Transform Arrow */
.transform-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}

.arrow-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
}

.arrow-content i {
    font-size: 1.5rem;
    color: #10b981;
}

.arrow-content .fa-magic {
    font-size: 2rem;
    animation: pulse-magic 2s ease-in-out infinite;
}

.arrow-content span {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.arrow-content .arrow-icon {
    font-size: 1.25rem;
    animation: arrow-bounce 1.5s ease-in-out infinite;
}

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

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

/* Transformation Benefits */
.transformation-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item i {
    color: #10b981;
    font-size: 1rem;
}

/* ==================== SOCIAL PROOF SECTION ==================== */

.social-proof-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 20px;
}

.result-stat {
    text-align: center;
    color: #ffffff;
}

.result-stat .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

.result-stat .stat-text {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-stat .promising-roi {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: #000000;
}

.author-info span {
    font-size: 0.875rem;
    color: #666666;
}

.client-trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555555;
    font-size: 0.95rem;
}

.trust-item i {
    font-size: 1.25rem;
    color: #000000;
}

/* ==================== URGENCY COUNTDOWN ==================== */

.urgency-countdown {
    margin: 1rem 0;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.15) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.countdown-text {
    color: #ef4444;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-text strong {
    color: #dc2626;
}

.countdown-timer {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #dc2626;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    min-width: 60px;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.spots-text {
    color: #374151;
    font-size: 0.85rem;
}

.spots-text strong {
    color: #dc2626;
    font-weight: 700;
}

/* ==================== PORTFOLIO RESULTS ==================== */

.portfolio-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
}

.portfolio-result i {
    font-size: 1rem;
}

.portfolio-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #000000;
    color: #ffffff;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.portfolio-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== CONTACT SECTION IMPROVEMENTS ==================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-methods h3,
.regions-served h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #000000;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.contact-card:hover {
    border-color: #000000;
    transform: translateX(5px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.whatsapp-card .contact-card-icon {
    background: #25d366;
    color: #ffffff;
}

.email-card .contact-card-icon {
    background: #000000;
    color: #ffffff;
}

.linkedin-card .contact-card-icon {
    background: #0077b5;
    color: #ffffff;
}

.contact-card-content {
    flex: 1;
}

.contact-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.contact-card-description {
    font-size: 0.875rem;
    color: #666666;
    margin: 0;
}

.contact-arrow {
    color: #999999;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-arrow {
    transform: translateX(3px);
    color: #000000;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555555;
}

.response-time i {
    color: #10b981;
}

.region-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.region-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.region-item i {
    font-size: 1.5rem;
    color: #000000;
    margin-top: 0.25rem;
}

.region-item strong {
    display: block;
    font-size: 1rem;
    color: #000000;
    margin-bottom: 0.25rem;
}

.region-item span {
    font-size: 0.875rem;
    color: #666666;
}

.currency-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #92400e;
}

.currency-note i {
    color: #f59e0b;
}

/* ==================== HERO ENHANCEMENTS ==================== */

.hero-pricing-badge {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 20px;
    padding: 2rem 3rem;
    margin: 2rem 0;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    border: 3px solid #333333;
}

.price-badge-content {
    text-align: center;
}

.badge-label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ef4444;
    margin-bottom: 0.75rem;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
    background: transparent;
}

.price-original {
    font-size: 2rem;
    color: #ff6b6b;
    text-decoration: line-through;
    opacity: 0.9;
    background: transparent;
}

.price-current {
    font-size: 4rem;
    font-weight: 900;
    color: #e8b44c;
    text-shadow: 0 2px 10px rgba(232, 180, 76, 0.3);
    background: transparent;
}

.badge-subtitle {
    font-size: 0.95rem;
    color: #cccccc;
    font-weight: 600;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== PACKAGE SECTION ==================== */

.package-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.package-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #000000;
}

.package-card.highlight {
    border: 3px solid #000000;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-number {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    line-height: 1;
    margin-bottom: 1rem;
}

.package-icon {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.package-description {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.package-features h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #000000;
}

.package-features ul {
    list-style: none;
    padding: 0;
}

.package-features ul li {
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.package-features ul li i {
    color: #10b981;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.package-value {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.value-label {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 600;
}

.value-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: #000000;
}

/* Value Comparison */
.value-comparison {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 20px;
    color: #ffffff;
}

.comparison-content {
    text-align: center;
}

.comparison-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.comparison-label {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
}

.comparison-amount {
    font-size: 2rem;
    font-weight: 800;
}

.comparison-amount.original {
    text-decoration: line-through;
    color: rgba(255,255,255,0.5);
}

.comparison-amount.current {
    color: #10b981;
}

.comparison-arrow {
    font-size: 2rem;
    color: #10b981;
    margin: 1rem 0;
}

.comparison-savings {
    margin-top: 2rem;
}

.savings-badge {
    display: inline-block;
    background: #10b981;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.25rem;
    font-weight: 700;
}

/* ==================== AI CONTENT PREVIEW ==================== */

.ai-content-section {
    padding: 6rem 0;
}

.content-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.preview-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.preview-video {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for vertical videos */
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

/* AI Content Video Styles */
.ai-content-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.video-overlay-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.video-overlay-badge i {
    color: #fbbf24;
    font-size: 0.75rem;
}

.video-overlay-badge span {
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.video-placeholder p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.video-label {
    font-size: 0.875rem;
    opacity: 0.7;
}

.preview-info {
    padding: 1.5rem;
}

.preview-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #000000;
}

.preview-info p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* Platform Previews */
.platform-previews {
    margin: 4rem 0;
    text-align: center;
}

.platform-previews h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #000000;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.platform-item i {
    font-size: 2.5rem;
    color: #000000;
}

.platform-item span {
    font-weight: 600;
    color: #495057;
}

/* Content Calendar */
.content-calendar-preview {
    margin: 4rem 0;
    padding: 3rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-calendar-preview h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #000000;
    text-align: center;
}

.content-calendar-preview > p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 2rem;
}

.calendar-sample {
    max-width: 800px;
    margin: 0 auto;
}

.calendar-week {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.calendar-day {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.calendar-day:hover {
    border-color: #000000;
    transform: translateY(-2px);
}

.day-label {
    display: block;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.post-type {
    display: block;
    font-size: 0.875rem;
    color: #6c757d;
}

/* ==================== MARKET ANALYSIS ==================== */

.market-analysis-section {
    padding: 6rem 0;
    background: #ffffff;
}

.analysis-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.analysis-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.analysis-card:hover {
    border-color: #000000;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.analysis-icon {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.analysis-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #000000;
}

.analysis-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.analysis-example {
    background: #ffffff;
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

.example-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.example-item .label {
    font-size: 0.875rem;
    color: #6c757d;
}

.example-item .value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
}

.heatmap-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    border-radius: 10px;
}

.heatmap-placeholder i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.heatmap-placeholder span {
    font-size: 0.875rem;
    color: #495057;
    font-weight: 600;
}

.demo-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.demo-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    font-size: 0.875rem;
    color: #6c757d;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
}

.gap-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gap-badge {
    background: #000000;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ==================== GROWTH FORECAST ==================== */

.growth-forecast-section {
    padding: 6rem 0;
}

.growth-chart-container {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    border: 2px solid rgba(255,255,255,0.1);
}

.chart-placeholder {
    text-align: center;
    padding: 4rem 2rem;
}

.chart-placeholder i {
    font-size: 5rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
}

.chart-placeholder p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

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

.chart-metrics .metric {
    text-align: center;
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    color: #10b981;
    display: block;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline Projection */
.timeline-projection {
    margin: 4rem 0;
}

.timeline-projection h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.timeline-milestone {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.timeline-milestone:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.milestone-marker {
    display: inline-block;
    background: #10b981;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.milestone-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.milestone-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.milestone-stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

/* Metrics Breakdown */
.metrics-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.metric-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

.metric-icon {
    font-size: 2.5rem;
    color: #10b981;
}

.metric-info h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.9);
}

.metric-projection {
    display: flex;
    flex-direction: column;
}

.projection-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
}

.projection-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.projection-disclaimer {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.projection-disclaimer i {
    margin-right: 0.5rem;
    color: #10b981;
}

/* ==================== INDUSTRY SECTIONS ==================== */

.industries-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.industry-tab {
    background: #ffffff;
    border: 2px solid #e9ecef;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.industry-tab:hover {
    border-color: #000000;
    transform: translateY(-2px);
}

.industry-tab.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.industry-tab i {
    font-size: 1.25rem;
}

.industry-content {
    display: none;
    margin-top: 3rem;
}

.industry-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.industry-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.showcase-features h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #000000;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #10b981;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-list li strong {
    color: #000000;
}

.industry-example {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.example-label {
    display: block;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.content-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.example-tag {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.showcase-preview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-mockup {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    width: 100%;
    border: 2px solid #e9ecef;
}

.preview-mockup i {
    font-size: 5rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.preview-mockup p {
    font-weight: 600;
    color: #495057;
}

/* ==================== PORTFOLIO PREVIEW ==================== */

.portfolio-preview-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.portfolio-preview-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.portfolio-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #000000;
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 65%; /* 16:10 aspect ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.portfolio-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.portfolio-image-placeholder i {
    font-size: 4rem;
    color: #6c757d;
}

.portfolio-image-placeholder span {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-preview-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    color: #ffffff;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.portfolio-preview-card:hover .portfolio-overlay-content {
    transform: translateY(0);
}

.portfolio-overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.portfolio-overlay-content p {
    font-size: 1.125rem;
    font-weight: 600;
}

.portfolio-card-info {
    padding: 2rem;
}

.portfolio-card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #000000;
}

.portfolio-card-info p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tags .tag {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.portfolio-preview-card:hover .portfolio-tags .tag {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    border-color: #000000;
}

.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
}

.portfolio-cta .btn {
    margin-bottom: 1rem;
}

.portfolio-cta-text {
    color: #6c757d;
    font-size: 0.95rem;
}

/* ==================== PROCESS ENHANCEMENTS ==================== */

.process-guarantee {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 2px solid rgba(255,255,255,0.1);
}

.guarantee-badge {
    font-size: 4rem;
    color: #10b981;
}

.guarantee-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.guarantee-text p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* ==================== SOCIAL PROOF ==================== */

.social-proof-section {
    padding: 4rem 0;
    background: #ffffff;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: #000000;
    transform: translateY(-5px);
}

.stat-box .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 0.95rem;
    color: #6c757d;
}

.urgency-banner {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.urgency-banner i {
    font-size: 1.5rem;
    color: #f59e0b;
}

.urgency-banner p {
    margin: 0;
    color: #78350f;
    font-size: 1rem;
}

.spots-remaining {
    font-weight: 700;
    color: #ef4444;
}

/* ==================== PRICING ENHANCEMENTS ==================== */

.main-pricing-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 3px solid #000000;
    margin: 3rem auto;
    max-width: 1000px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #000000;
}

.package-tagline {
    font-size: 1.125rem;
    color: #6c757d;
}

.pricing-display-large {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
}

.original-price {
    text-align: center;
}

.original-price .strikethrough {
    font-size: 2.5rem;
    text-decoration: line-through;
    color: #6c757d;
    font-weight: 700;
}

.original-price .price-label {
    display: block;
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.current-price {
    text-align: center;
}

.current-price .currency {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    vertical-align: super;
}

.current-price .amount {
    font-size: 5rem;
    font-weight: 800;
    color: #000000;
    line-height: 1;
}

.current-price .price-note {
    display: block;
    font-size: 1rem;
    color: #10b981;
    font-weight: 700;
    margin-top: 0.5rem;
}

.pricing-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
}

.pricing-highlight i {
    color: #10b981;
    font-size: 1.5rem;
}

.package-includes-summary {
    margin: 3rem 0;
}

.package-includes-summary h4 {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #000000;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.include-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.include-item:hover {
    border-color: #000000;
    transform: translateY(-3px);
}

.include-item i {
    font-size: 2rem;
    color: #000000;
}

.include-item span {
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.pricing-features-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 2px solid #e9ecef;
    border-bottom: 2px solid #e9ecef;
}

.feature-column h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-column h5 i {
    color: #f59e0b;
}

.feature-column ul {
    list-style: none;
    padding: 0;
}

.feature-column ul li {
    padding: 0.5rem 0;
    color: #6c757d;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-column ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.pricing-cta-section {
    text-align: center;
    margin: 3rem 0;
}

.btn-huge {
    font-size: 1.25rem;
    padding: 1.5rem 3rem;
}

.cta-subtext {
    margin-top: 1rem;
    color: #6c757d;
    font-size: 0.95rem;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
}

.badge-item i {
    font-size: 1.5rem;
    color: #10b981;
}

.badge-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #495057;
    text-align: center;
}

/* Payment Plans */
.payment-plans {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 800px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.plans-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.plans-header i {
    font-size: 2.5rem;
    color: #000000;
}

.plans-header h3 {
    font-size: 1.5rem;
    color: #000000;
}

.plans-header p {
    color: #6c757d;
}

/* Value Reminder */
.value-reminder {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 800px;
}

.value-reminder h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.cost-breakdown {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-item .service {
    color: rgba(255,255,255,0.9);
}

.cost-item .cost {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.125rem;
}

.cost-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-top: 1rem;
    border-top: 2px solid rgba(255,255,255,0.2);
    font-size: 1.25rem;
}

.savings-highlight {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: #10b981;
    border-radius: 10px;
}

.savings-highlight p {
    margin: 0;
    font-size: 1.25rem;
    color: #ffffff;
}

/* ==================== CTA ENHANCEMENTS ==================== */

.cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.btn-tertiary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-tertiary:hover {
    background: #ffffff;
    color: #000000;
}

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

.cta-trust-line span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==================== TRANSFORMATION SECTION ==================== */
.transformation-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111827 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.transformation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.transformation-section .container {
    position: relative;
    z-index: 1;
}

/* ==================== INSTAGRAM THEME SHOWCASE ==================== */
.instagram-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin: 3rem 0;
}

/* Instagram Post Base */
.instagram-post {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.instagram-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Before Post - Smaller */
.before-post {
    max-width: 280px;
    border: 1px solid #dbdbdb;
}

/* After Post/Reel - Slightly smaller on desktop */
.instagram-reel {
    max-width: 320px;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box;
}

/* Instagram Header */
.instagram-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: #ffffff;
    border-bottom: 1px solid #efefef;
}

.instagram-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
}

.gradient-avatar {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
    padding: 2px;
}

.gradient-avatar i {
    background: #ffffff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 12px;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.username {
    font-size: 13px;
    font-weight: 600;
    color: #262626;
}

.username .verified {
    color: #3897f0;
    font-size: 11px;
    margin-left: 3px;
}

.location {
    font-size: 11px;
    color: #8e8e8e;
}

.post-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.post-badge.before-badge {
    background: #8e8e8e;
    color: #ffffff;
}

.post-badge.after-badge {
    background: linear-gradient(45deg, #f09433, #dc2743);
    color: #ffffff;
}

/* Instagram Media */
.instagram-media {
    position: relative;
    width: 100%;
    background: #000;
}

.instagram-media img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.reel-media {
    aspect-ratio: 9/16;
    max-height: 500px;
    overflow: hidden;
}

.reel-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reel Overlay Actions */
.reel-overlay {
    position: absolute;
    right: 12px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reel-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.reel-action i {
    font-size: 24px;
}

.reel-action span {
    font-size: 12px;
    font-weight: 600;
}

/* Reel Audio Bar */
.reel-audio {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 12px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.reel-audio i {
    font-size: 14px;
}

.audio-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Instagram Actions (for before post) */
.instagram-actions {
    display: flex;
    justify-content: space-between;
    padding: 12px 14px;
}

.action-buttons {
    display: flex;
    gap: 16px;
}

.instagram-actions i {
    font-size: 22px;
    color: #262626;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.instagram-actions i:hover {
    transform: scale(1.1);
}

/* Instagram Stats */
.instagram-stats {
    padding: 0 14px 12px;
}

.likes {
    font-size: 13px;
    color: #262626;
}

/* Transform Arrow */
.transform-arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.transform-arrow-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.transform-arrow-box i {
    font-size: 1.25rem;
    color: #a78bfa;
}

.transform-arrow-box i:last-child {
    font-size: 1.5rem;
    animation: arrow-move 1.5s ease-in-out infinite;
}

.transform-arrow-box span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #a78bfa;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

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

/* ==================== RESPONSIVE - PROFESSIONAL MOBILE ==================== */

/* Tablet: 768px - 1023px */
@media (max-width: 1023px) {
    .results-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-preview-grid {
        gap: 1.5rem;
    }
}

/* Mobile: up to 767px */
@media (max-width: 767px) {
    /* Transformation Section Mobile */
    .transformation-section {
        padding: 3rem 1rem;
    }
    
    .transformation-section .section-title {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    .transformation-section .section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    /* Instagram Showcase Mobile */
    .instagram-showcase {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    /* Before post smaller on mobile */
    .before-post {
        max-width: 240px;
    }
    
    /* After reel on mobile */
    .instagram-reel {
        max-width: 280px;
    }
    
    .reel-media {
        max-height: 400px;
    }
    
    .instagram-header {
        padding: 10px 12px;
    }
    
    .user-avatar {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .gradient-avatar i {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .username {
        font-size: 12px;
    }
    
    .location {
        font-size: 10px;
    }
    
    .post-badge {
        padding: 3px 8px;
        font-size: 9px;
    }
    
    .reel-overlay {
        right: 10px;
        bottom: 70px;
        gap: 16px;
    }
    
    .reel-action i {
        font-size: 20px;
    }
    
    .reel-action span {
        font-size: 10px;
    }
    
    .reel-audio {
        font-size: 10px;
        bottom: 10px;
        left: 10px;
    }
    
    .instagram-actions {
        padding: 10px 12px;
    }
    
    .instagram-actions i {
        font-size: 20px;
    }
    
    .action-buttons {
        gap: 14px;
    }
    
    .instagram-stats {
        padding: 0 12px 10px;
    }
    
    .likes {
        font-size: 12px;
    }
    
    .transform-card-header {
        padding: 0.85rem 1rem;
    }
    
    .card-badge {
        padding: 0.35rem 0.6rem;
        font-size: 0.65rem;
    }
    
    .card-subtitle {
        font-size: 0.8rem;
    }
    
    .transform-arrow-wrapper {
        padding: 0.5rem 0;
    }
    
    .transform-arrow-box {
        flex-direction: row;
        padding: 0.75rem 1.25rem;
        gap: 0.75rem;
    }
    
    .transform-arrow-box i {
        font-size: 1rem;
    }
    
    .transform-arrow-box i:last-child {
        transform: rotate(90deg);
    }
    
    .transform-arrow-box span {
        font-size: 0.7rem;
    }
    
    @keyframes arrow-move {
        0%, 100% {
            transform: rotate(90deg) translateX(0);
        }
        50% {
            transform: rotate(90deg) translateX(5px);
        }
    }
    
    /* Transformation Benefits Mobile */
    .transformation-benefits {
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .benefit-item {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .benefit-item i {
        font-size: 0.9rem;
    }
    
    /* Base Mobile Typography & Spacing */
    .social-proof-section,
    .package-section,
    .ai-content-section,
    .growth-forecast-section,
    .portfolio-preview-section,
    .process-section,
    .pricing-section,
    .faq-section,
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .section-header-center {
        margin-bottom: 2rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.75rem;
    }
    
    .section-title {
        font-size: 1.75rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
    
    /* Hero Section Mobile - Professional Offer Badge */
    .hero-pricing-badge {
        padding: 1.5rem;
        margin: 1.5rem 0.5rem;
        border-radius: 16px;
        background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
        border: 2px solid #e8b44c;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                    0 0 20px rgba(232, 180, 76, 0.2);
    }
    
    .price-badge-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .badge-label {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
        background: linear-gradient(135deg, #e8b44c 0%, #d4a03d 100%);
        color: #000;
        padding: 0.3rem 0.75rem;
        border-radius: 20px;
        font-weight: 700;
        text-transform: uppercase;
    }
    
    .price-display {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin: 0.5rem 0;
        background: transparent;
        padding: 0.5rem 1rem;
    }
    
    .price-original {
        font-size: 1.1rem;
        color: #ff6b6b;
        text-decoration: line-through;
        font-weight: 500;
        background: transparent;
    }
    
    .price-current {
        font-size: 2.25rem;
        font-weight: 800;
        color: #e8b44c;
        background: transparent;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: #e8b44c;
        background-clip: unset;
        text-shadow: none;
    }
    
    .badge-subtitle {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.85);
        text-align: center;
        background: rgba(232, 180, 76, 0.15);
        padding: 0.3rem 0.6rem;
        border-radius: 6px;
        margin-top: 0.3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 1rem 0.5rem;
        margin-top: 1.5rem;
    }
    
    .stat-item {
        padding: 0.75rem 0.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(232, 180, 76, 0.2);
    }
    
    .stat-number {
        font-size: 1.5rem;
        color: #e8b44c;
    }
    
    .stat-label {
        font-size: 0.6rem;
        line-height: 1.3;
    }
    
    /* Social Proof Section Mobile */
    .results-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 16px;
    }
    
    .result-stat {
        padding: 0.75rem;
    }
    
    .result-stat .stat-number {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }
    
    .result-stat .stat-text {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .testimonial-rating {
        margin-bottom: 1rem;
    }
    
    .testimonial-rating i {
        font-size: 0.875rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .author-info strong {
        font-size: 0.9rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    .client-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .trust-item {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        border-radius: 8px;
        width: 100%;
        justify-content: center;
    }
    
    /* Package Section Mobile */
    .package-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .package-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .package-icon i {
        font-size: 1.25rem;
    }
    
    .package-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .package-card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .package-features {
        margin-top: 1rem;
    }
    
    .package-features li {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }
    
    /* AI Content Section Mobile */
    .content-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 320px;
        margin: 0 auto;
        padding: 0;
    }
    
    .preview-item {
        border-radius: 16px;
        overflow: hidden;
    }
    
    .preview-video {
        padding-bottom: 177.78%;
    }
    
    .preview-info {
        padding: 1rem;
    }
    
    .preview-info h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .preview-info p {
        font-size: 0.85rem;
        display: block;
    }
    
    .video-overlay-badge {
        padding: 6px 10px;
        top: 10px;
        right: 10px;
        border-radius: 6px;
    }
    
    .video-overlay-badge span {
        font-size: 0.7rem;
    }
    
    /* Growth Forecast Section Mobile */
    .growth-forecast-section .container {
        padding: 0 1rem;
    }
    
    .forecast-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .forecast-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .forecast-card h3 {
        font-size: 1.1rem;
    }
    
    .forecast-number {
        font-size: 2.5rem;
    }
    
    /* Portfolio Preview Mobile */
    .portfolio-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-card {
        border-radius: 16px;
        overflow: hidden;
    }
    
    .portfolio-card-image {
        height: 200px;
    }
    
    .portfolio-card-info {
        padding: 1.25rem;
    }
    
    .portfolio-card-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .portfolio-card-info p {
        font-size: 0.875rem;
    }
    
    .portfolio-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }
    
    .portfolio-result {
        font-size: 0.8rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    /* Process Section Mobile */
    .process-timeline {
        padding: 0 0.5rem;
    }
    
    .timeline-step {
        padding: 1.5rem;
        margin-bottom: 1rem;
        border-radius: 16px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .process-guarantee {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .process-guarantee i {
        font-size: 2rem;
    }
    
    .process-guarantee span {
        font-size: 0.95rem;
    }
    
    /* Pricing Section Mobile */
    .main-pricing-card {
        border-radius: 20px;
        margin: 0 0.5rem;
        overflow: hidden;
    }
    
    .pricing-header {
        padding: 1.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.25rem;
    }
    
    .package-tagline {
        font-size: 0.9rem;
    }
    
    .pricing-badge-large {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .urgency-countdown {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .countdown-text {
        font-size: 0.8rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-unit {
        padding: 0.5rem 0.75rem;
        min-width: 55px;
        border-radius: 8px;
    }
    
    .countdown-number {
        font-size: 1.25rem;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .spots-text {
        font-size: 0.8rem;
    }
    
    .pricing-display-large {
        padding: 1.5rem;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .original-price .strikethrough {
        font-size: 1.5rem;
    }
    
    .original-price .price-label {
        font-size: 0.75rem;
    }
    
    .current-price {
        text-align: center;
    }
    
    .current-price .currency {
        font-size: 1.5rem;
    }
    
    .current-price .amount {
        font-size: 3rem;
    }
    
    .current-price .price-note {
        font-size: 0.85rem;
    }
    
    .pricing-highlight {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        margin-top: 1rem;
    }
    
    .package-includes-summary {
        padding: 1.5rem;
    }
    
    .package-includes-summary h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .includes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .include-item {
        padding: 0.75rem;
        font-size: 0.75rem;
        border-radius: 8px;
    }
    
    .include-item i {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .pricing-features-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .feature-column h5 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-column li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }
    
    .pricing-cta-section {
        padding: 1.5rem;
    }
    
    .pricing-cta-section .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .pricing-cta-section p {
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }
    
    .pricing-guarantee {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        margin-top: 1rem;
        text-align: center;
    }
    
    .pricing-guarantee i {
        font-size: 1.5rem;
    }
    
    .pricing-guarantee span {
        font-size: 0.85rem;
    }
    
    /* FAQ Section Mobile */
    .faq-list {
        padding: 0 0.25rem;
    }
    
    .faq-item {
        margin-bottom: 0.75rem;
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .faq-icon {
        font-size: 1.25rem;
        min-width: 24px;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Contact Section Mobile */
    .final-cta .container {
        padding: 0 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-trust-line {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-trust-line span {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
    
    /* Contact Form Mobile */
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .contact-form-container {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .contact-form .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    /* General Mobile Utilities */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Extra Small Mobile: up to 380px */
@media (max-width: 380px) {
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .hero-headline {
        font-size: 1.75rem !important;
    }
    
    .price-current {
        font-size: 2rem;
    }
    
    .results-showcase {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .result-stat .stat-number {
        font-size: 2rem;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .current-price .amount {
        font-size: 2.5rem;
    }
    
    .countdown-unit {
        min-width: 48px;
        padding: 0.4rem 0.5rem;
    }
    
    .countdown-number {
        font-size: 1.1rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ZERO DEPOSIT SECTION STYLES
   ============================================ */
.zero-deposit-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.zero-deposit-card {
    background: linear-gradient(135deg, rgba(232, 180, 76, 0.15) 0%, rgba(232, 180, 76, 0.05) 100%);
    border: 2px solid #e8b44c;
    border-radius: 24px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}

.zero-deposit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 180, 76, 0.1) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
}

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

.zero-deposit-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: linear-gradient(135deg, #e8b44c 0%, #d4a03d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(232, 180, 76, 0.3);
    position: relative;
    z-index: 1;
}

.zero-deposit-icon i {
    font-size: 2.5rem;
    color: #000;
}

.zero-deposit-content {
    position: relative;
    z-index: 1;
}

.zero-deposit-badge {
    display: inline-block;
    background: #e8b44c;
    color: #000;
    padding: 0.35rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.zero-deposit-content h2 {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.zero-deposit-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.zero-deposit-text strong {
    color: #e8b44c;
}

.zero-deposit-points {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.deposit-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.deposit-point i {
    color: #22c55e;
    font-size: 1.1rem;
}

/* Deposit CTA Button - Professional Style */
.deposit-cta {
    display: inline-block;
    background: linear-gradient(135deg, #e8b44c 0%, #d4a03d 100%);
    color: #000000;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(232, 180, 76, 0.4);
}

.deposit-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 180, 76, 0.5);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-whatsapp i {
    font-size: 2rem;
    color: #fff;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s ease-out infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #ffffff;
    color: #128C7E;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* ============================================
   SIMPLIFIED PORTFOLIO SECTION
   ============================================ */
.portfolio-preview-section.portfolio-simple {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.portfolio-cta-centered {
    margin-top: 2rem;
}

.btn-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.btn-portfolio i {
    font-size: 1.25rem;
}

.portfolio-cta-subtitle {
    margin-top: 1rem;
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.portfolio-cta-subtitle i {
    color: #22c55e;
}

/* ============================================
   ZERO DEPOSIT MOBILE STYLES
   ============================================ */
@media (max-width: 767px) {
    .zero-deposit-section {
        padding: 3rem 0;
    }
    
    .zero-deposit-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .zero-deposit-icon {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }
    
    .zero-deposit-icon i {
        font-size: 2rem;
    }
    
    .zero-deposit-content h2 {
        font-size: 1.75rem;
    }
    
    .zero-deposit-text {
        font-size: 1rem;
    }
    
    .zero-deposit-points {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .floating-whatsapp {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
    }
    
    .floating-whatsapp i {
        font-size: 1.75rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .portfolio-preview-section.portfolio-simple {
        padding: 3rem 0;
    }
    
    .btn-portfolio {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Hero Pricing Badge - Extra Small Screens */
    .hero-pricing-badge {
        padding: 1.25rem 1rem;
        margin: 1.25rem 0;
    }
    
    .hero-pricing-badge .badge-label {
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-pricing-badge .price-display {
        gap: 0.4rem;
    }
    
    .hero-pricing-badge .price-original {
        font-size: 1rem;
    }
    
    .hero-pricing-badge .price-current {
        font-size: 1.6rem;
    }
    
    .hero-pricing-badge .badge-subtitle {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
        margin-top: 0.6rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
        margin-top: 1.25rem;
        grid-template-columns: repeat(3, 1fr);
        padding: 1rem 0.5rem;
    }
    
    .hero-stats .stat-item {
        padding: 0.5rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.25rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.55rem;
    }
    
    .zero-deposit-card {
        padding: 1.5rem 1rem;
    }
    
    .zero-deposit-content h2 {
        font-size: 1.5rem;
    }
    
    .zero-deposit-text {
        font-size: 0.95rem;
    }
    
    .deposit-point {
        font-size: 0.9rem;
    }
}

/* ============================================
   HIGHLIGHTED FAQ ITEM
   ============================================ */
.faq-item.highlight-faq {
    background: #000000;
    border: 2px solid #e8b44c;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.faq-item.highlight-faq::before {
    content: 'BEST OFFER';
    position: absolute;
    top: 0;
    right: 0;
    background: #e8b44c;
    color: #000;
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 0 10px 0 8px;
}

.faq-item.highlight-faq .faq-question {
    color: #e8b44c;
}

.faq-item.highlight-faq .faq-answer {
    background: #000000;
}

.faq-item.highlight-faq .faq-answer p {
    color: #ffffff;
}

/* ============================================
   HIGHLIGHTED TRUST BADGE
   ============================================ */
.badge-item.highlight-badge {
    background: linear-gradient(135deg, #e8b44c 0%, #d4a03d 100%) !important;
    color: #000 !important;
    border: none !important;
}

.badge-item.highlight-badge i {
    color: #000 !important;
}

.badge-item.highlight-badge span {
    color: #000 !important;
    font-weight: 700 !important;
}

/* ============================================
   PROFESSIONAL CONTACT SECTION
   ============================================ */
.contact-professional {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e8b44c, transparent);
}

/* Contact Hero */
.contact-hero {
    text-align: center;
    margin-bottom: 3.5rem;
}

.contact-badge-wrapper {
    margin-bottom: 1.5rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e8b44c 0%, #d4a03d 100%);
    color: #000;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 30px;
}

.pulse-badge {
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 180, 76, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(232, 180, 76, 0); }
}

.contact-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

.contact-subheadline {
    font-size: 1.15rem;
    color: #555555;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.contact-trust-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333333;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item-mini i {
    color: #e8b44c;
    font-size: 1rem;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.contact-card-pro {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-card-pro:hover {
    transform: translateY(-8px);
    border-color: #d0d0d0;
}

.card-pro-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card-pro:hover .card-pro-glow {
    opacity: 1;
}

/* WhatsApp Card */
.whatsapp-pro .card-pro-glow {
    background: linear-gradient(90deg, #25D366, #128C7E);
}

.whatsapp-pro .card-pro-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(18, 140, 126, 0.1) 100%);
    color: #25D366;
}

.whatsapp-pro:hover {
    background: rgba(37, 211, 102, 0.08);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.15);
}

/* Email Card */
.email-pro .card-pro-glow {
    background: linear-gradient(90deg, #e8b44c, #d4a03d);
}

.email-pro .card-pro-icon {
    background: linear-gradient(135deg, rgba(232, 180, 76, 0.2) 0%, rgba(212, 160, 61, 0.1) 100%);
    color: #e8b44c;
}

.email-pro:hover {
    background: rgba(232, 180, 76, 0.08);
    box-shadow: 0 20px 40px rgba(232, 180, 76, 0.15);
}

/* LinkedIn Card */
.linkedin-pro .card-pro-glow {
    background: linear-gradient(90deg, #0A66C2, #0077B5);
}

.linkedin-pro .card-pro-icon {
    background: linear-gradient(135deg, rgba(10, 102, 194, 0.2) 0%, rgba(0, 119, 181, 0.1) 100%);
    color: #0A66C2;
}

.linkedin-pro:hover {
    background: rgba(10, 102, 194, 0.08);
    box-shadow: 0 20px 40px rgba(10, 102, 194, 0.15);
}

.card-pro-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.card-pro-content {
    margin-bottom: 1.5rem;
}

.card-pro-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 0.5rem;
}

.card-pro-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.card-pro-desc {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
}

.card-pro-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555555;
    transition: all 0.3s ease;
}

.contact-card-pro:hover .card-pro-action {
    color: #000000;
}

.card-pro-action i {
    transition: transform 0.3s ease;
}

.contact-card-pro:hover .card-pro-action i {
    transform: translateX(5px);
}

/* Bottom CTA */
.contact-bottom-cta {
    text-align: center;
}

.cta-message {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 50px;
    padding: 1rem 2rem;
}

.cta-message i {
    font-size: 1.5rem;
    color: #25D366;
}

.cta-message p {
    color: #555555;
    font-size: 0.95rem;
    margin: 0;
}

.cta-message strong {
    color: #000000;
}

/* Contact Section Mobile Styles */
@media (max-width: 767px) {
    .contact-professional {
        padding: 3rem 0;
    }
    
    .contact-headline {
        font-size: 1.75rem;
    }
    
    .contact-subheadline {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .contact-trust-row {
        gap: 1rem;
    }
    
    .trust-item-mini {
        font-size: 0.8rem;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .contact-card-pro {
        padding: 1.5rem;
    }
    
    .card-pro-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .card-pro-title {
        font-size: 1.25rem;
    }
    
    .cta-message {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 1.5rem;
        border-radius: 16px;
        margin: 0 1rem;
    }
    
    .cta-message p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-trust-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .trust-item-mini {
        justify-content: center;
    }
}
