/* ========================================
   ITQAN - إتقان Landing Page Styles
   Clean, Modern Arabic Design
   ======================================== */

/* CSS Variables */
:root {
    /* Brand Colors - Based on Logo */
    --primary-blue: #1a5fb4;
    --primary-blue-dark: #144a8f;
    --primary-blue-light: #3584e4;

    /* WhatsApp Green for CTAs */
    --whatsapp-green: #25D366;
    --whatsapp-green-dark: #1da851;
    --whatsapp-green-light: #5ae587;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --black: #000000;

    /* Semantic Colors */
    --warning: #f59f00;
    --danger: #e03131;
    --success: #2f9e44;

    /* Typography */
    --font-family: 'Tajawal', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Container */
    --container-max: 1200px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--gray-900);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    font-weight: 700;
    color: var(--gray-900);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    list-style: none;
}

.nav-links a {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--gray-700);
    padding: var(--spacing-sm) 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--whatsapp-green);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background: var(--whatsapp-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: all var(--transition-base);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: var(--spacing-xl);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mobile-nav-links a {
    display: block;
    padding: var(--spacing-md);
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.mobile-nav-links a:hover {
    background: var(--gray-100);
    color: var(--primary-blue);
}

.mobile-cta {
    background: var(--whatsapp-green) !important;
    color: var(--white) !important;
    text-align: center;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 var(--spacing-4xl);
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-headline {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.hero-headline .highlight {
    color: var(--primary-blue);
    position: relative;
}

.hero-subheadline {
    font-size: var(--font-size-xl);
    color: var(--gray-600);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.8;
}

.hero-subheadline strong {
    color: var(--gray-900);
}

/* Channel Icons */
.channels-icons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.channel-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    cursor: default;
}

.channel-icon svg {
    width: 26px;
    height: 26px;
}

.channel-icon.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.channel-icon.whatsapp:hover {
    background: #25D366;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.channel-icon.instagram {
    background: rgba(225, 48, 108, 0.15);
    color: #E1306C;
}

.channel-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

.channel-icon.facebook {
    background: rgba(24, 119, 242, 0.15);
    color: #1877F2;
}

.channel-icon.facebook:hover {
    background: #1877F2;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.channel-icon.telegram {
    background: rgba(0, 136, 204, 0.15);
    color: #0088CC;
}

.channel-icon.telegram:hover {
    background: #0088CC;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.cta-subtext {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    perspective: 1000px;
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: var(--gray-900);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-2xl), 0 0 0 2px var(--gray-800);
    position: relative;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform var(--transition-slow);
}

.phone-frame:hover {
    transform: rotateY(0) rotateX(0);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: var(--gray-900);
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #128C7E 0%, #075E54 100%);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 40px var(--spacing-md) var(--spacing-md);
    background: #075E54;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-name {
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-size-base);
}

.chat-status {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-xs);
}

.chat-messages {
    flex: 1;
    padding: var(--spacing-md);
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><rect fill="%23ECE5DD" width="80" height="80"/><g fill="%23d4cdc4" fill-opacity="0.4"><path d="M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2z"/></g></svg>') #ECE5DD;
    background-size: 80px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    overflow-y: auto;
}

.message {
    max-width: 85%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: messageAppear 0.4s ease forwards;
}

.message.received {
    align-self: flex-start;
}

.message.sent {
    align-self: flex-end;
}

.message-content {
    background: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.message.sent .message-content {
    background: #DCF8C6;
}

.message.human-agent .message-content {
    background: #e8f4fd;
    border: 1px solid var(--primary-blue-light);
}

.agent-badge {
    font-size: var(--font-size-xs);
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    padding: 2px 8px;
    background: rgba(26, 95, 180, 0.1);
    border-radius: var(--radius-full);
    display: inline-block;
}

.message-text {
    font-size: var(--font-size-sm);
    color: var(--gray-800);
    line-height: 1.5;
}

.message-time {
    font-size: 10px;
    color: var(--gray-500);
    margin-top: 2px;
    align-self: flex-end;
}

.message-image {
    margin-bottom: var(--spacing-sm);
}

.image-placeholder {
    width: 120px;
    height: 100px;
    background: var(--gray-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder svg {
    width: 40px;
    height: 40px;
    color: var(--gray-400);
}

.voice-message {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-full);
}

.voice-icon {
    width: 32px;
    height: 32px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-icon svg {
    width: 16px;
    height: 16px;
    color: var(--white);
}

.voice-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
}

.voice-wave span {
    width: 3px;
    background: var(--gray-400);
    border-radius: 2px;
    animation: voiceWave 0.8s ease-in-out infinite;
}

.voice-wave span:nth-child(1) {
    height: 8px;
    animation-delay: 0s;
}

.voice-wave span:nth-child(2) {
    height: 16px;
    animation-delay: 0.1s;
}

.voice-wave span:nth-child(3) {
    height: 10px;
    animation-delay: 0.2s;
}

.voice-wave span:nth-child(4) {
    height: 18px;
    animation-delay: 0.3s;
}

.voice-wave span:nth-child(5) {
    height: 12px;
    animation-delay: 0.4s;
}

.voice-duration {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}

@keyframes voiceWave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.5);
    }
}

@keyframes messageAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message[data-delay="0"] {
    animation-delay: 0.5s;
}

.message[data-delay="1"] {
    animation-delay: 1.2s;
}

.message[data-delay="2"] {
    animation-delay: 2s;
}

.message[data-delay="3"] {
    animation-delay: 2.8s;
}

.message[data-delay="4"] {
    animation-delay: 3.6s;
}

/* Hero Background Shape */
.hero-bg-shape {
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(26, 95, 180, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--whatsapp-green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    background: var(--whatsapp-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-lg {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

.btn-xl {
    padding: var(--spacing-lg) var(--spacing-3xl);
    font-size: var(--font-size-xl);
}

/* ========================================
   SECTION TITLES
   ======================================== */
.section-title {
    text-align: center;
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--spacing-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   PAIN SECTION
   ======================================== */
.pain-section {
    padding: var(--spacing-4xl) 0;
    background: var(--white);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.pain-card {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pain-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.pain-icon svg {
    width: 48px;
    height: 48px;
}

.pain-icon.warning {
    background: rgba(245, 159, 0, 0.1);
    color: var(--warning);
}

.pain-icon.danger {
    background: rgba(224, 49, 49, 0.1);
    color: var(--danger);
}

.pain-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
}

.pain-text {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    line-height: 1.7;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: var(--spacing-4xl) 0;
    background: var(--off-white);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    margin-bottom: var(--spacing-4xl);
}

.feature-block.reverse {
    direction: ltr;
}

.feature-block.reverse .feature-content {
    direction: rtl;
}

.feature-badge {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(26, 95, 180, 0.1);
    color: var(--primary-blue);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
}

.feature-badge.accent {
    background: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp-green-dark);
}

.feature-badge.success {
    background: rgba(47, 158, 68, 0.1);
    color: var(--success);
}

.feature-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
}

.feature-text {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-base);
    color: var(--gray-700);
}

.feature-list svg {
    width: 20px;
    height: 20px;
    color: var(--whatsapp-green);
    flex-shrink: 0;
}

/* Feature Visuals */
.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card-visual {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.visual-icon {
    color: var(--white);
    opacity: 0.9;
}

.visual-icon svg {
    width: 100px;
    height: 100px;
}

.visual-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bubble {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    animation: bubbleFloat 3s ease-in-out infinite;
}

.bubble-image {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.bubble-voice {
    bottom: 40px;
    right: -10px;
    animation-delay: 0.5s;
}

.bubble-text {
    bottom: 20px;
    left: -20px;
    animation-delay: 1s;
}

@keyframes bubbleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Dashboard Preview */
.dashboard-preview {
    width: 400px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    gap: 6px;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--gray-100);
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dot.red {
    background: #ff5f56;
}

.dashboard-dot.yellow {
    background: #ffbd2e;
}

.dashboard-dot.green {
    background: #27ca3f;
}

.dashboard-content {
    padding: var(--spacing-lg);
}

.alert-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(245, 159, 0, 0.1);
    border: 1px solid rgba(245, 159, 0, 0.3);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}

.alert-icon {
    font-size: 24px;
}

.alert-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.alert-text strong {
    font-size: var(--font-size-sm);
    color: var(--gray-900);
}

.alert-text span {
    font-size: var(--font-size-xs);
    color: var(--gray-600);
}

.alert-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-family);
    font-size: var(--font-size-xs);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.alert-btn:hover {
    background: var(--primary-blue-dark);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

.stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-blue);
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--gray-600);
}

/* Shield Visual */
.shield-visual {
    width: 280px;
    height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    color: var(--success);
    position: relative;
    z-index: 2;
}

.shield-icon svg {
    width: 150px;
    height: 180px;
}

.shield-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shield-particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 4s ease-in-out infinite;
}

.shield-particles span:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.shield-particles span:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.shield-particles span:nth-child(3) {
    bottom: 25%;
    left: 10%;
    animation-delay: 2s;
}

.shield-particles span:nth-child(4) {
    bottom: 15%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.6;
    }
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-section {
    padding: var(--spacing-4xl) 0;
    background: var(--white);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.steps-line {
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--whatsapp-green) 100%);
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 8px 25px rgba(26, 95, 180, 0.3);
}

.step-content {
    text-align: center;
    max-width: 200px;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    color: var(--primary-blue);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--gray-900);
}

.step-text {
    font-size: var(--font-size-base);
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   OFFER SECTION
   ======================================== */
.offer-section {
    padding: var(--spacing-4xl) 0;
    background: var(--gray-100);
}

.offer-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--spacing-3xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--whatsapp-green) 100%);
}

.offer-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.offer-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--spacing-2xl);
}

.offer-checklist {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    text-align: right;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.check-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.check-item:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: translateX(-5px);
}

.check-icon {
    font-size: var(--font-size-xl);
}

.check-text {
    font-size: var(--font-size-lg);
    color: var(--gray-800);
    font-weight: 500;
}

.offer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.offer-guarantee {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: var(--spacing-4xl) 0;
    background: var(--white);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-blue-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: var(--white);
    border: none;
    font-family: var(--font-family);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--gray-900);
    text-align: right;
    cursor: pointer;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-arrow {
    width: 24px;
    height: 24px;
    color: var(--gray-400);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 var(--spacing-xl) var(--spacing-lg);
    font-size: var(--font-size-base);
    color: var(--gray-600);
    line-height: 1.8;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    background: var(--gray-900);
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid var(--gray-700);
}

.footer-logo {
    height: 50px;
    margin-bottom: var(--spacing-md);
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: var(--font-size-sm);
    color: var(--gray-400);
    max-width: 250px;
}

.footer-links {
    display: flex;
    gap: var(--spacing-xl);
}

.footer-links a {
    font-size: var(--font-size-sm);
    color: var(--gray-400);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

/* ========================================
   FLOATING CTA
   ======================================== */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all var(--transition-base);
    animation: floatPulse 2s ease-in-out infinite;
}

.floating-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.floating-cta svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

@keyframes floatPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-cta {
        align-items: center;
    }

    .hero-visual {
        order: -1;
    }

    .phone-frame {
        width: 280px;
        height: 580px;
        transform: none;
    }

    .feature-block,
    .feature-block.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        direction: rtl;
    }

    .feature-block.reverse .feature-content {
        direction: rtl;
    }

    .feature-visual {
        order: -1;
    }

    .feature-list {
        align-items: center;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
        gap: var(--spacing-2xl);
    }

    .steps-line {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-5xl: 2.25rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.5rem;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 var(--spacing-2xl);
        min-height: auto;
    }

    .hero-headline {
        font-size: var(--font-size-3xl);
    }

    .hero-subheadline {
        font-size: var(--font-size-base);
    }

    .phone-frame {
        width: 260px;
        height: 540px;
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }

    .feature-title {
        font-size: var(--font-size-xl);
    }

    .dashboard-preview {
        width: 100%;
        max-width: 350px;
    }

    .offer-card {
        padding: var(--spacing-xl);
    }

    .offer-title {
        font-size: var(--font-size-2xl);
    }

    .btn-xl {
        padding: var(--spacing-md) var(--spacing-xl);
        font-size: var(--font-size-base);
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-xl);
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .floating-cta {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }

    .floating-cta svg {
        width: 24px;
        height: 24px;
    }

    .channels-icons {
        justify-content: center;
    }

    .channel-icon {
        width: 42px;
        height: 42px;
    }

    .channel-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .phone-frame {
        width: 240px;
        height: 500px;
    }

    .feature-card-visual {
        width: 250px;
        height: 250px;
    }

    .shield-visual {
        width: 200px;
        height: 250px;
    }

    .shield-icon svg {
        width: 100px;
        height: 120px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-2xl);
    }

    .check-item {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .check-text {
        font-size: var(--font-size-base);
    }
}

/* Print Styles */
@media print {

    .navbar,
    .floating-cta,
    .mobile-menu {
        display: none !important;
    }

    .hero {
        padding-top: 0;
    }
}