/**
 * ========================================
 * INSTACOD LANDING PAGE THEME - CONVERTPRO
 * High-Converting Professional Landing Page Theme
 * Version: 3.0.0
 * ========================================
 */

/* Cairo Font - All weights with proper loading */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

/* NO Font Awesome - Using lightweight inline SVG icons instead! */

/* ========================================
   CSS VARIABLES - CONVERTPRO THEME
   ======================================== */
:root {
    /* Primary Colors - Deep Professional Blue */
    --cp-primary: #0f172a;
    --cp-primary-light: #1e293b;
    --cp-primary-dark: #020617;
    
    /* Accent Colors - Trust Gold */
    --cp-accent: #f59e0b;
    --cp-accent-light: #fbbf24;
    --cp-accent-dark: #d97706;
    
    /* Success & Trust */
    --cp-success: #10b981;
    --cp-success-light: #34d399;
    --cp-success-dark: #059669;
    
    /* Text Colors */
    --cp-text-primary: #0f172a;
    --cp-text-secondary: #475569;
    --cp-text-light: #94a3b8;
    --cp-text-white: #ffffff;
    
    /* Background Colors */
    --cp-bg-primary: #ffffff;
    --cp-bg-secondary: #f8fafc;
    --cp-bg-dark: #0f172a;
    
    /* Gradients */
    --cp-gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --cp-gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --cp-gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --cp-gradient-hero: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    
    /* Spacing */
    --cp-space-xs: 8px;
    --cp-space-sm: 16px;
    --cp-space-md: 24px;
    --cp-space-lg: 32px;
    --cp-space-xl: 48px;
    --cp-space-2xl: 64px;
    --cp-space-3xl: 96px;
    
    /* Border Radius */
    --cp-radius-sm: 8px;
    --cp-radius-md: 12px;
    --cp-radius-lg: 16px;
    --cp-radius-xl: 24px;
    --cp-radius-full: 9999px;
    
    /* Shadows */
    --cp-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --cp-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --cp-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --cp-shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.24);
    --cp-shadow-glow: 0 0 32px rgba(245, 158, 11, 0.3);
    
    /* Transitions */
    --cp-transition-fast: 0.15s ease;
    --cp-transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --cp-transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes cp-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cp-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cp-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes cp-scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cp-slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cp-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cp-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

@keyframes cp-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(245, 158, 11, 0.6);
    }
}

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

/* ========================================
   BASE LANDING PAGE CONTAINER
   ======================================== */
.instacod-landing {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    line-height: 1.6;
    color: var(--cp-text-primary);
    overflow-x: hidden;
    background: var(--cp-bg-primary);
}

.instacod-landing * {
    box-sizing: border-box;
}

.instacod-landing img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   HERO SECTION - CONVERTPRO
   ======================================== */
.cp-hero {
    position: relative;
    background: var(--cp-gradient-hero);
    padding: var(--cp-space-3xl) var(--cp-space-md);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cp-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

/* ========================================
   TYPOGRAPHY - HERO
   ======================================== */
.cp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--cp-space-xs);
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--cp-accent);
    padding: var(--cp-space-xs) var(--cp-space-md);
    border-radius: var(--cp-radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--cp-space-md);
    animation: cp-fadeInDown 0.6s ease-out;
}

.cp-hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--cp-text-white);
    margin-bottom: var(--cp-space-md);
    line-height: 1.2;
    animation: cp-fadeInUp 0.6s ease-out 0.2s both;
}

.cp-hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--cp-text-light);
    margin-bottom: var(--cp-space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: cp-fadeInUp 0.6s ease-out 0.4s both;
}

/* ========================================
   BUTTONS - HIGH CONVERTING
   ======================================== */
.cp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--cp-space-sm);
    padding: var(--cp-space-md) var(--cp-space-xl);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--cp-radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--cp-transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cp-btn-primary {
    background: var(--cp-gradient-accent);
    color: var(--cp-text-white);
    box-shadow: var(--cp-shadow-lg);
    animation: cp-fadeInUp 0.6s ease-out 0.6s both;
}

.cp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--cp-shadow-xl), var(--cp-shadow-glow);
}

.cp-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

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

.cp-btn-secondary {
    background: transparent;
    color: var(--cp-text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   TRUST BADGES SECTION
   ======================================== */
.cp-trust-section {
    background: var(--cp-bg-secondary);
    padding: var(--cp-space-xl) var(--cp-space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cp-trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--cp-space-lg);
    text-align: center;
}

.cp-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--cp-space-sm);
    animation: cp-fadeIn 0.6s ease-out backwards;
}

.cp-trust-item:nth-child(1) { animation-delay: 0.1s; }
.cp-trust-item:nth-child(2) { animation-delay: 0.2s; }
.cp-trust-item:nth-child(3) { animation-delay: 0.3s; }
.cp-trust-item:nth-child(4) { animation-delay: 0.4s; }

.cp-trust-icon {
    width: 48px;
    height: 48px;
    background: var(--cp-gradient-success);
    border-radius: var(--cp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--cp-shadow-md);
}

.cp-trust-text {
    font-size: 0.95rem;
    color: var(--cp-text-secondary);
    font-weight: 600;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.cp-features-section {
    padding: var(--cp-space-3xl) var(--cp-space-md);
    background: var(--cp-bg-primary);
}

.cp-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--cp-space-2xl);
}

.cp-section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--cp-text-primary);
    margin-bottom: var(--cp-space-md);
    line-height: 1.3;
}

.cp-section-subtitle {
    font-size: 1.1rem;
    color: var(--cp-text-secondary);
    line-height: 1.7;
}

.cp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--cp-space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.cp-feature-card {
    background: var(--cp-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--cp-radius-lg);
    padding: var(--cp-space-xl);
    transition: all var(--cp-transition-base);
    animation: cp-fadeInUp 0.6s ease-out backwards;
    position: relative;
}

.cp-feature-card:nth-child(1) { animation-delay: 0.1s; }
.cp-feature-card:nth-child(2) { animation-delay: 0.2s; }
.cp-feature-card:nth-child(3) { animation-delay: 0.3s; }
.cp-feature-card:nth-child(4) { animation-delay: 0.4s; }
.cp-feature-card:nth-child(5) { animation-delay: 0.5s; }
.cp-feature-card:nth-child(6) { animation-delay: 0.6s; }

.cp-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cp-gradient-accent);
    border-radius: var(--cp-radius-lg) var(--cp-radius-lg) 0 0;
    transform: scaleX(0);
    transition: transform var(--cp-transition-base);
}

.cp-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cp-shadow-xl);
}

.cp-feature-card:hover::before {
    transform: scaleX(1);
}

.cp-feature-icon {
    width: 64px;
    height: 64px;
    background: var(--cp-gradient-primary);
    border-radius: var(--cp-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--cp-space-md);
    box-shadow: var(--cp-shadow-md);
}

.cp-feature-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--cp-text-primary);
    margin-bottom: var(--cp-space-sm);
}

.cp-feature-description {
    font-size: 1rem;
    color: var(--cp-text-secondary);
    line-height: 1.7;
}

/* ========================================
   PRODUCT SHOWCASE
   ======================================== */
.cp-product-section {
    background: var(--cp-bg-secondary);
    padding: var(--cp-space-3xl) var(--cp-space-md);
}

.cp-product-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--cp-space-2xl);
    align-items: center;
}

.cp-product-image {
    position: relative;
    animation: cp-slideInRight 0.8s ease-out;
}

.cp-product-image img {
    border-radius: var(--cp-radius-xl);
    box-shadow: var(--cp-shadow-xl);
    animation: cp-float 4s ease-in-out infinite;
}

.cp-product-content {
    animation: cp-slideInLeft 0.8s ease-out;
}

.cp-product-badge {
    display: inline-block;
    background: var(--cp-gradient-success);
    color: var(--cp-text-white);
    padding: var(--cp-space-xs) var(--cp-space-md);
    border-radius: var(--cp-radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: var(--cp-space-md);
}

.cp-product-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--cp-text-primary);
    margin-bottom: var(--cp-space-md);
    line-height: 1.3;
}

.cp-product-features {
    list-style: none;
    padding: 0;
    margin: var(--cp-space-xl) 0;
}

.cp-product-features li {
    display: flex;
    align-items: center;
    gap: var(--cp-space-sm);
    padding: var(--cp-space-sm) 0;
    font-size: 1.05rem;
    color: var(--cp-text-secondary);
}

.cp-product-features li::before {
    content: '';
    width: 24px;
    height: 24px;
    background: var(--cp-gradient-success);
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
    /* SVG Check Icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.cp-pricing-section {
    background: var(--cp-gradient-hero);
    padding: var(--cp-space-3xl) var(--cp-space-md);
    position: relative;
}

.cp-pricing-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--cp-bg-primary);
    border-radius: var(--cp-radius-xl);
    padding: var(--cp-space-2xl);
    box-shadow: var(--cp-shadow-xl);
    text-align: center;
    animation: cp-scaleIn 0.6s ease-out;
    position: relative;
}

.cp-pricing-badge {
    position: absolute;
    top: -15px;
    right: var(--cp-space-lg);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--cp-text-white);
    padding: var(--cp-space-xs) var(--cp-space-md);
    border-radius: var(--cp-radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--cp-shadow-lg);
    animation: cp-pulse 2s ease-in-out infinite;
}

.cp-pricing-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cp-text-primary);
    margin-bottom: var(--cp-space-md);
}

.cp-price-wrapper {
    margin: var(--cp-space-xl) 0;
}

.cp-old-price {
    font-size: 1.5rem;
    color: var(--cp-text-light);
    text-decoration: line-through;
    margin-bottom: var(--cp-space-xs);
}

.cp-current-price {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--cp-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.cp-price-note {
    font-size: 0.95rem;
    color: var(--cp-text-secondary);
    margin-top: var(--cp-space-sm);
}

.cp-savings-badge {
    display: inline-block;
    background: var(--cp-gradient-success);
    color: var(--cp-text-white);
    padding: var(--cp-space-sm) var(--cp-space-lg);
    border-radius: var(--cp-radius-full);
    font-size: 1rem;
    font-weight: 700;
    margin: var(--cp-space-md) 0;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.cp-testimonials-section {
    background: var(--cp-bg-secondary);
    padding: var(--cp-space-3xl) var(--cp-space-md);
}

.cp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--cp-space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.cp-testimonial-card {
    background: var(--cp-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--cp-radius-lg);
    padding: var(--cp-space-xl);
    position: relative;
    animation: cp-fadeInUp 0.6s ease-out backwards;
    transition: all var(--cp-transition-base);
}

.cp-testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.cp-testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.cp-testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.cp-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--cp-shadow-lg);
}

.cp-testimonial-stars {
    color: var(--cp-accent);
    font-size: 1.2rem;
    margin-bottom: var(--cp-space-md);
    display: flex;
    gap: 4px;
}

.cp-testimonial-text {
    font-size: 1rem;
    color: var(--cp-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--cp-space-md);
}

.cp-testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--cp-space-sm);
}

.cp-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cp-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cp-text-white);
    font-weight: 700;
    font-size: 1.2rem;
}

.cp-testimonial-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cp-text-primary);
    margin: 0 0 4px;
}

.cp-testimonial-info p {
    font-size: 0.85rem;
    color: var(--cp-text-light);
    margin: 0;
}

.cp-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--cp-success);
    padding: 4px 12px;
    border-radius: var(--cp-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: var(--cp-space-sm);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.cp-faq-section {
    background: var(--cp-bg-primary);
    padding: var(--cp-space-3xl) var(--cp-space-md);
}

.cp-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.cp-faq-item {
    background: var(--cp-bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--cp-radius-md);
    padding: var(--cp-space-lg);
    margin-bottom: var(--cp-space-md);
    transition: all var(--cp-transition-base);
    animation: cp-fadeInUp 0.5s ease-out backwards;
}

.cp-faq-item:nth-child(1) { animation-delay: 0.1s; }
.cp-faq-item:nth-child(2) { animation-delay: 0.15s; }
.cp-faq-item:nth-child(3) { animation-delay: 0.2s; }
.cp-faq-item:nth-child(4) { animation-delay: 0.25s; }
.cp-faq-item:nth-child(5) { animation-delay: 0.3s; }

.cp-faq-item:hover {
    background: var(--cp-bg-primary);
    box-shadow: var(--cp-shadow-md);
}

.cp-faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cp-text-primary);
    margin-bottom: var(--cp-space-sm);
    display: flex;
    align-items: center;
    gap: var(--cp-space-sm);
}

.cp-faq-question::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--cp-gradient-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.cp-faq-answer {
    font-size: 1rem;
    color: var(--cp-text-secondary);
    line-height: 1.7;
    padding-right: var(--cp-space-md);
}

/* ========================================
   GUARANTEE SECTION
   ======================================== */
.cp-guarantee-section {
    background: var(--cp-gradient-success);
    padding: var(--cp-space-2xl) var(--cp-space-md);
    text-align: center;
}

.cp-guarantee-container {
    max-width: 800px;
    margin: 0 auto;
    color: var(--cp-text-white);
}

.cp-guarantee-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--cp-space-md);
    backdrop-filter: blur(10px);
}

.cp-guarantee-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: var(--cp-space-md);
}

.cp-guarantee-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cp-cta-section {
    background: var(--cp-gradient-hero);
    padding: var(--cp-space-3xl) var(--cp-space-md);
    text-align: center;
    position: relative;
}

.cp-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cp-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--cp-text-white);
    margin-bottom: var(--cp-space-md);
    line-height: 1.3;
}

.cp-cta-subtitle {
    font-size: 1.2rem;
    color: var(--cp-text-light);
    margin-bottom: var(--cp-space-xl);
}

.cp-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--cp-space-xs);
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    padding: var(--cp-space-sm) var(--cp-space-lg);
    border-radius: var(--cp-radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: var(--cp-space-lg);
    animation: cp-pulse 2s ease-in-out infinite;
}

/* ========================================
   ORDER FORM SECTION
   ======================================== */
.cp-order-section {
    background: var(--cp-bg-secondary);
    padding: var(--cp-space-3xl) var(--cp-space-md);
}

.cp-order-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--cp-bg-primary);
    border-radius: var(--cp-radius-xl);
    padding: var(--cp-space-2xl);
    box-shadow: var(--cp-shadow-xl);
    animation: cp-scaleIn 0.6s ease-out;
}

.cp-order-header {
    text-align: center;
    margin-bottom: var(--cp-space-xl);
}

.cp-order-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--cp-text-primary);
    margin-bottom: var(--cp-space-sm);
}

.cp-order-subtitle {
    font-size: 1rem;
    color: var(--cp-text-secondary);
}

/* ========================================
   ELEMENTOR WIDGETS INTEGRATION
   ======================================== */

/* Scope all styles to landing page only */
.instacod-landing .elementor-widget-heading .elementor-heading-title {
    font-family: 'Cairo', sans-serif !important;
}

.instacod-landing .elementor-widget-text-editor {
    font-family: 'Cairo', sans-serif !important;
}

.instacod-landing .elementor-widget-button a {
    font-family: 'Cairo', sans-serif !important;
}

.instacod-landing .elementor-widget-icon-list .elementor-icon-list-text {
    font-family: 'Cairo', sans-serif !important;
}

.instacod-landing .elementor-accordion .elementor-tab-title,
.instacod-landing .elementor-accordion .elementor-tab-content {
    font-family: 'Cairo', sans-serif !important;
}

.instacod-landing .elementor-section,
.instacod-landing .elementor-column,
.instacod-landing .elementor-element {
    font-family: 'Cairo', sans-serif !important;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .cp-product-container {
        grid-template-columns: 1fr;
        gap: var(--cp-space-xl);
    }
    
    .cp-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --cp-space-3xl: 64px;
        --cp-space-2xl: 48px;
    }
    
    .cp-hero {
        min-height: auto;
        padding: var(--cp-space-2xl) var(--cp-space-md);
    }
    
    .cp-hero-title {
        font-size: 2rem;
    }
    
    .cp-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cp-btn {
        width: 100%;
        padding: var(--cp-space-md) var(--cp-space-lg);
    }
    
    .cp-trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--cp-space-md);
    }
    
    .cp-features-grid {
        grid-template-columns: 1fr;
    }
    
    .cp-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cp-current-price {
        font-size: 2.5rem;
    }
    
    .cp-product-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cp-trust-container {
        grid-template-columns: 1fr;
    }
    
    .cp-pricing-badge {
        right: 50%;
        transform: translateX(50%);
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.cp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--cp-space-md);
}

.cp-text-center {
    text-align: center;
}

.cp-mb-sm { margin-bottom: var(--cp-space-sm); }
.cp-mb-md { margin-bottom: var(--cp-space-md); }
.cp-mb-lg { margin-bottom: var(--cp-space-lg); }
.cp-mb-xl { margin-bottom: var(--cp-space-xl); }

.cp-mt-sm { margin-top: var(--cp-space-sm); }
.cp-mt-md { margin-top: var(--cp-space-md); }
.cp-mt-lg { margin-top: var(--cp-space-lg); }
.cp-mt-xl { margin-top: var(--cp-space-xl); }

/* ========================================
   SVG ICONS - DATA URI (No External Files)
   ======================================== */
.cp-icon-check {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2310b981' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.cp-icon-star {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23f59e0b' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.cp-icon-shield {
    width: 32px;
    height: 32px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.cp-icon-delivery {
    width: 32px;
    height: 32px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M18 18.5a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5m1.5-9 1.96 2.5H17V9.5M6 18.5A1.5 1.5 0 0 1 4.5 17 1.5 1.5 0 0 1 6 15.5 1.5 1.5 0 0 1 7.5 17 1.5 1.5 0 0 1 6 18.5M20 8h-3V4H3c-1.11 0-2 .89-2 2v11h2a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-5l-3-4Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.cp-icon-phone {
    width: 32px;
    height: 32px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.cp-icon-verified {
    width: 16px;
    height: 16px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%2310b981' viewBox='0 0 24 24'%3E%3Cpath d='M23 12l-2.44-2.79.34-3.69-3.61-.82-1.89-3.2L12 2.96 8.6 1.5 6.71 4.69 3.1 5.5l.34 3.7L1 12l2.44 2.79-.34 3.7 3.61.82L8.6 22.5l3.4-1.47 3.4 1.46 1.89-3.19 3.61-.82-.34-3.69L23 12zm-12.91 4.72l-3.8-3.81 1.48-1.48 2.32 2.33 5.85-5.87 1.48 1.48-7.33 7.35z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .cp-btn,
    .cp-order-section {
        display: none;
    }
}
