/* ============================================
   SWAARG.AI - Premium Sky & Cloud Theme
   ============================================ */

/* CSS Variables - Sky & Cloud Palette */
:root {
    --sky-blue: #6EC1E4;
    --deep-cloud-blue: #1E3A8A;
    --soft-white: #F8FAFC;
    --cloud-grey: #E5E7EB;
    --divine-gold: #FACC15;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --shadow-soft: rgba(30, 58, 138, 0.1);
    --shadow-medium: rgba(30, 58, 138, 0.15);
    --shadow-strong: rgba(30, 58, 138, 0.25);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ai-accent: #00D4FF;
}

/* ============================================
   AI VISUAL ELEMENTS - Circuit & Neural Network
   ============================================ */

/* AI Circuit Background */
.ai-circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--ai-accent), transparent);
    opacity: 0.3;
}

.circuit-line-1 {
    width: 200px;
    height: 2px;
    top: 20%;
    left: 10%;
    animation: circuitFlow 3s ease-in-out infinite;
}

.circuit-line-2 {
    width: 2px;
    height: 150px;
    top: 30%;
    right: 15%;
    background: linear-gradient(180deg, transparent, var(--ai-accent), transparent);
    animation: circuitFlow 4s ease-in-out infinite 1s;
}

.circuit-line-3 {
    width: 180px;
    height: 2px;
    bottom: 25%;
    left: 20%;
    animation: circuitFlow 3.5s ease-in-out infinite 0.5s;
}

@keyframes circuitFlow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.5; }
}

.circuit-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--ai-accent);
    border-radius: 50%;
    animation: nodeGlow 2s ease-in-out infinite;
    display: none;
}

.node-1 { top: 20%; left: 10%; animation-delay: 0s; }
.node-2 { top: 30%; right: 15%; animation-delay: 0.5s; }
.node-3 { bottom: 25%; left: 20%; animation-delay: 1s; }
.node-4 { top: 45%; right: 25%; animation-delay: 1.5s; }

@keyframes nodeGlow {
    0%, 100% { 
        box-shadow: 0 0 5px var(--ai-accent), 0 0 10px var(--ai-accent);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 15px var(--ai-accent), 0 0 30px var(--ai-accent);
        transform: scale(1.2);
    }
}

/* AI Neural Network SVG */
.ai-neural-net {
    display: none;
    pointer-events: none;
    z-index: 1;
}

.neural-svg {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.neural-node {
    fill: var(--ai-accent);
    animation: neuralPulse 2s ease-in-out infinite;
    display: none;
}

.neural-node:nth-child(odd) { animation-delay: 0.5s; }
.neural-node:nth-child(even) { animation-delay: 1s; }

@keyframes neuralPulse {
    0%, 100% { opacity: 0.4; r: 4; }
    50% { opacity: 1; r: 6; }
}

.neural-line {
    stroke: var(--ai-accent);
    stroke-width: 1;
    opacity: 0.3;
    stroke-dasharray: 5, 5;
    animation: neuralData 2s linear infinite;
}

@keyframes neuralData {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -20; }
}

/* AI Brain Icon */
.ai-brain-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
}

.brain-svg {
    width: 100%;
    height: 100%;
}

.brain-path {
    fill: none;
    stroke: var(--deep-cloud-blue);
    stroke-width: 2;
    animation: brainPulse 3s ease-in-out infinite;
}

.brain-dot {
    fill: var(--ai-accent);
    animation: brainDotBlink 1.5s ease-in-out infinite;
}

.brain-dot:nth-child(2) { animation-delay: 0.3s; }
.brain-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes brainDotBlink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.brain-wave {
    fill: none;
    stroke: var(--ai-accent);
    stroke-width: 2;
    stroke-linecap: round;
    animation: brainWave 2s ease-in-out infinite;
}

.brain-wave:nth-child(5) { animation-delay: 0.3s; }

@keyframes brainWave {
    0%, 100% { stroke-dasharray: 0, 100; }
    50% { stroke-dasharray: 30, 100; }
}

@keyframes brainPulse {
    0%, 100% { stroke: var(--deep-cloud-blue); }
    50% { stroke: var(--ai-accent); }
}

/* AI Thinking Dots */
.ai-thinking-dots {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.ai-thinking-dots span {
    width: 6px;
    height: 6px;
    background: var(--ai-accent);
    border-radius: 50%;
    animation: thinkingDot 1.4s ease-in-out infinite;
}

.ai-thinking-dots span:nth-child(2) { animation-delay: 0.2s; }
.ai-thinking-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes thinkingDot {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* AI Chip Icon in Badge */
.ai-chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--ai-accent);
    border-radius: 4px;
    font-size: 14px;
    animation: chipBlink 2s ease-in-out infinite;
}

@keyframes chipBlink {
    0%, 100% { background: var(--ai-accent); }
    50% { background: var(--deep-cloud-blue); }
}

/* AI Status Bar */
.ai-status-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.ai-status-dot {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.ai-status-text {
    color: #22C55E;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* AI Processing Bar */
.ai-processing-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ai-accent), transparent);
    animation: processingSlide 2s ease-in-out infinite;
}

@keyframes processingSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(180deg, #E0F2FE 0%, #F8FAFC 50%, #FFFFFF 100%);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   HEADER - Sticky with Scroll Effect
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    padding: 0.75rem 0;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px var(--shadow-soft);
    padding: 0.75rem 0;
}

.main-header .container {
    max-width: 100% !important;
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
    width: 100%;
    margin: 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    padding-left: 50px;
    margin-left: 0;
    order: 1;
}

.main-nav {
    order: 2;
    margin-right: 20px;
}

.logo a {
    text-decoration: none;
    color: var(--deep-cloud-blue);
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--deep-cloud-blue), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    margin-right: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0.3rem;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sky-blue);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--sky-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deep-cloud-blue);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    margin-top: 0;
    padding-top: 0;
}

/* ============================================
   HERO SECTION - Full Screen
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 2rem;
    background: 
        linear-gradient(135deg, rgba(110, 193, 228, 0.3) 0%, rgba(30, 58, 138, 0.2) 100%),
        url('../img/house.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
}

/* Cloud Animation Background Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(248, 250, 252, 0.4) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(224, 242, 254, 0.3) 100%),
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@keyframes cloudFloat {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-30px) translateY(-20px); }
}

/* AI Particles Background */
.ai-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(110, 193, 228, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(250, 204, 21, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(110, 193, 228, 0.3), transparent),
        radial-gradient(2px 2px at 40% 80%, rgba(250, 204, 21, 0.2), transparent);
    background-size: 200% 200%;
    animation: aiParticles 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes aiParticles {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 20% 80%; }
    50% { background-position: 100% 100%, 0% 0%, 50% 50%, 20% 80%, 80% 20%; }
}

/* Heaven Glow Effect */
.heaven-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.15) 0%, rgba(110, 193, 228, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    animation: heavenGlow 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes heavenGlow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

/* AI Badge */
.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(110, 193, 228, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(110, 193, 228, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-cloud-blue);
    animation: fadeInUp 0.8s ease-out 0.1s both;
    box-shadow: 0 4px 15px rgba(110, 193, 228, 0.2);
}

.ai-icon {
    font-size: 1.2rem;
    animation: aiPulse 2s ease-in-out infinite;
}

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

.hero-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--deep-cloud-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.heaven-text {
    background: linear-gradient(135deg, var(--divine-gold), #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.heaven-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--divine-gold), transparent);
    border-radius: 2px;
    animation: heavenShine 3s ease-in-out infinite;
}

@keyframes heavenShine {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

.hero-subheading {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--deep-cloud-blue);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.3);
}

.ai-identity {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.25rem 1.75rem;
    margin: 1.5rem auto;
    max-width: 450px;
    box-shadow: 0 8px 32px var(--shadow-soft), 0 0 20px rgba(110, 193, 228, 0.2);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.ai-identity::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(110, 193, 228, 0.1), transparent);
    animation: aiScan 3s linear infinite;
}

@keyframes aiScan {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ai-identity-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.ai-pulse {
    width: 8px;
    height: 8px;
    background: var(--sky-blue);
    border-radius: 50%;
    animation: aiPulseDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--sky-blue);
}

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

.ai-identity-text {
    font-size: 1rem;
    color: var(--deep-cloud-blue);
    font-weight: 600;
}

.ai-identity-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: var(--sky-blue);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.phone-icon {
    font-size: 1.4rem;
    animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.ai-identity-phone:hover {
    color: var(--deep-cloud-blue);
    transform: scale(1.05);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

/* ============================================
   BUTTONS - Premium Style
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
}

.btn:hover .btn-glow {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sky-blue), var(--deep-cloud-blue));
    color: white;
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-strong);
}

.btn-secondary {
    background: white;
    color: var(--deep-cloud-blue);
    border: 2px solid var(--sky-blue);
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--sky-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--divine-gold), #F59E0B);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.4);
}

/* ============================================
   GLASSMORPHISM CARDS
   ============================================ */
.glass-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08);
    border: 2px solid rgba(110, 193, 228, 0.4);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
    background: #FFFFFF;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--deep-cloud-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* ============================================
   PROPERTY REGISTRATION SECTION
   ============================================ */
.property-registration {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(224, 242, 254, 0.3) 100%);
    position: relative;
    z-index: 2;
}

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

.registration-card {
    text-align: center;
}

.registration-card h3 {
    font-size: 1.75rem;
    color: var(--deep-cloud-blue);
    margin-bottom: 1rem;
}

.registration-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ============================================
   ABOUT SWAARG SECTION
   ============================================ */
.about-swaarg {
    background: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--deep-cloud-blue);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   USER JOURNEY PREVIEW
   ============================================ */
.user-journey-preview {
    background: linear-gradient(135deg, rgba(110, 193, 228, 0.1) 0%, rgba(30, 58, 138, 0.05) 100%);
}

.journey-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.journey-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
}

.journey-step::after {
    content: '→';
    position: absolute;
    right: -1rem;
    top: 2rem;
    font-size: 2rem;
    color: var(--sky-blue);
}

.journey-step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sky-blue), var(--deep-cloud-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.step-text {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ============================================
   WHY SWAARG DIFFERENT
   ============================================ */
.why-swaarg {
    background: white;
}

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

.difference-card {
    text-align: center;
}

.difference-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.difference-card h4 {
    color: var(--deep-cloud-blue);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.difference-card p {
    color: var(--text-light);
}

/* ============================================
   VISION CTA SECTION
   ============================================ */
.vision-cta {
    background: linear-gradient(135deg, rgba(110, 193, 228, 0.2) 0%, rgba(30, 58, 138, 0.1) 100%);
    text-align: center;
    padding: 4rem 0;
}

.vision-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--deep-cloud-blue);
    margin-bottom: 1.5rem;
}

.vision-cta p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(110, 193, 228, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(250, 204, 21, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--sky-blue);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--sky-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(110, 193, 228, 0.2);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* About Page */
.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 0 0;
}

.vision-mission-card {
    text-align: center;
}

.problem-solution {
    margin: 4rem 0;
}

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

@media (max-width: 768px) {
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0 0 0;
    }
    
    .problem-solution {
        margin: 3rem 0;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .vision-mission {
        gap: 1.25rem;
    }
    
    .problem-solution {
        margin: 2.5rem 0;
    }
    
    .problem-solution-grid {
        gap: 1.25rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
}

/* User Journey Page */
.journey-detailed {
    margin: 3rem 0;
}

.journey-step-detailed {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
}

.journey-step-detailed:nth-child(even) {
    flex-direction: row-reverse;
}

.step-visual {
    flex: 1;
    text-align: center;
    font-size: 4rem;
}

.step-content {
    flex: 2;
}

/* Pitch Deck Page */
.pitch-section {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
}

.pitch-section h3 {
    color: var(--deep-cloud-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.pitch-section ul {
    list-style: none;
    padding-left: 0;
}

.pitch-section ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.pitch-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sky-blue);
    font-weight: bold;
}

/* Commercial Page */
.commercial-overview {
    margin: 3rem 0;
}

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

.fund-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid var(--sky-blue);
}

.fund-item h4 {
    color: var(--deep-cloud-blue);
    margin-bottom: 0.5rem;
}

.fund-item .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sky-blue);
}

.revenue-streams {
    margin: 3rem 0;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
}

.revenue-streams .section-title {
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto 1rem auto !important;
    display: block !important;
    font-size: 2.5rem !important;
    color: var(--deep-cloud-blue) !important;
}

.revenue-streams .section-subtitle {
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto 2.5rem auto !important;
    max-width: 100% !important;
    display: block !important;
    padding: 0 !important;
    font-size: 1.1rem !important;
    color: var(--text-light) !important;
}

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

/* Revenue Streams Vertical Layout */
.revenue-streams-vertical {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    margin-top: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

@media (min-width: 1200px) {
    .revenue-streams-vertical {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .revenue-streams-vertical {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .revenue-streams-vertical {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 599px) {
    .revenue-streams-vertical {
        grid-template-columns: 1fr !important;
    }
}

.revenue-stream-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border-left: 4px solid var(--sky-blue);
    text-align: left;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.revenue-stream-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.revenue-icon-large {
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(110, 193, 228, 0.15), rgba(30, 58, 138, 0.1));
    border-radius: 12px;
    flex-shrink: 0;
}

.revenue-stream-card h4 {
    color: var(--deep-cloud-blue);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    flex: 1;
}

.revenue-stream-card > div:not(.revenue-icon-large) {
    flex: 1;
    min-width: 0;
}

.revenue-stream-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.revenue-stream-card p:last-child {
    color: var(--sky-blue);
    font-weight: 600;
    margin-top: 0.5rem;
}

@media (max-width: 479px) {
    .revenue-streams-vertical {
        grid-template-columns: 1fr;
    }
    
    .revenue-stream-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .revenue-icon-large {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .revenue-stream-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .revenue-icon-large {
        margin: 0 auto;
    }
}

.revenue-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid var(--divine-gold);
}

.revenue-card h4 {
    color: var(--deep-cloud-blue);
    margin-bottom: 1rem;
}

/* Core Team Page */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid rgba(110, 193, 228, 0.4);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.team-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep-cloud-blue), #1e40af);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.team-avatar svg {
    width: 60px;
    height: 60px;
    fill: white;
    color: white;
}

.team-card h3 {
    color: var(--deep-cloud-blue);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.team-card .role {
    color: var(--deep-cloud-blue);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Team Card Highlights - Founder & CEO */
.team-card-founder {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe) !important;
    border: 2px solid rgba(110, 193, 228, 0.4) !important;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08) !important;
    transform: scale(1.02);
}

.team-card-founder:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(250, 204, 21, 0.3) !important;
}

.team-avatar-founder {
    background: linear-gradient(135deg, var(--divine-gold), #F59E0B) !important;
    box-shadow: 0 8px 25px rgba(250, 204, 21, 0.4) !important;
    width: 140px !important;
    height: 140px !important;
    font-size: 3.5rem !important;
}

.role-founder {
    color: #F59E0B !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CEO Highlight */
.team-card-ceo {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe) !important;
    border: 2px solid rgba(110, 193, 228, 0.4) !important;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08) !important;
    transform: scale(1.02);
}

.team-card-ceo:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 50px rgba(110, 193, 228, 0.35) !important;
}

.team-avatar-ceo {
    background: linear-gradient(135deg, var(--sky-blue), var(--deep-cloud-blue)) !important;
    box-shadow: 0 8px 25px rgba(110, 193, 228, 0.4) !important;
    width: 140px !important;
    height: 140px !important;
    font-size: 3.5rem !important;
}

.role-ceo {
    color: var(--deep-cloud-blue) !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Senior Roles (CFO, Operation Head) */
.team-card-senior {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe) !important;
    border: 2px solid rgba(110, 193, 228, 0.4) !important;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08) !important;
}

.team-card-senior:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.2) !important;
}

.team-avatar-senior {
    background: linear-gradient(135deg, var(--deep-cloud-blue), #1e40af) !important;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3) !important;
    width: 130px !important;
    height: 130px !important;
    font-size: 3.2rem !important;
}

.role-senior {
    color: var(--deep-cloud-blue) !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
}

/* Lead Roles (Backend Lead, IT Head) */
.team-card-lead {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe) !important;
    border: 2px solid rgba(110, 193, 228, 0.4) !important;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08) !important;
}

.team-card-lead:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(110, 193, 228, 0.15) !important;
}

.team-avatar-lead {
    background: linear-gradient(135deg, var(--sky-blue), #38BDF8) !important;
    box-shadow: 0 4px 15px rgba(110, 193, 228, 0.25) !important;
}

.role-lead {
    color: var(--sky-blue) !important;
    font-weight: 600 !important;
}

/* Contact Page */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.contact-card h3 {
    color: var(--deep-cloud-blue);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--sky-blue);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.contact-card a:hover {
    color: var(--deep-cloud-blue);
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    background: rgba(255, 255, 255, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-cloud-blue);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--cloud-grey);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 3px rgba(110, 193, 228, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .nav-list {
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.2rem;
    }
}

@media (max-width: 768px) {
    .main-header .container {
        max-width: 100% !important;
        width: 100%;
        margin: 0;
        padding-left: 0;
        padding-right: 15px;
    }
    
    .header-content {
        padding-left: 0;
        width: 100%;
        margin: 0;
    }
    
    .logo {
        padding-left: 25px;
        margin-left: 0;
    }
    
    .main-nav {
        margin-right: 15px;
    }
    
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 1.5rem;
        box-shadow: 0 10px 30px var(--shadow-medium);
        transition: left 0.3s ease;
        gap: 1rem;
        z-index: 999;
    }

    .nav-list.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .btn {
        width: 100%;
    }

    .journey-steps {
        flex-direction: column;
    }

    .journey-step::after {
        display: none;
    }

    .journey-step-detailed {
        flex-direction: column !important;
    }

    .vision-cta-buttons {
        flex-direction: column;
    }

    .section {
        padding: 2.5rem 0;
    }
    
    .hero-section {
        min-height: 80vh;
        padding: 1.5rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero-section {
        min-height: 70vh;
        padding: 1rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }

    .glass-card {
        padding: 1.5rem;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   SECTION 2: HOW IT WORKS - VISUAL FLOW
   ============================================ */
.how-it-works-visual {
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(224, 242, 254, 0.3) 100%);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

/* Main Visual Flow Diagram */
.visual-flow-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.4));
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(30, 58, 138, 0.12);
    margin-bottom: 2.5rem;
    flex-wrap: nowrap;
}

.flow-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    min-width: 0;
    flex: 0 1 auto;
    justify-content: flex-start;
}

.flow-stage-visual {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.flow-stage-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-cloud-blue);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    word-wrap: break-word;
}

/* Phone Mockup */
.phone-mockup {
    width: 180px;
    height: 360px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    box-sizing: border-box;
}

.phone-screen-content {
    background: linear-gradient(180deg, #1e3a5f, #0d1b2a);
    border-radius: 18px;
    padding: 20px 12px;
    text-align: center;
    height: 100%;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.call-avatar {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--sky-blue), var(--deep-cloud-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.call-avatar svg {
    width: 36px;
    height: 36px;
    fill: white;
}

.call-name {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.call-status-text {
    color: #4ade80;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
    animation: callPulse 1.5s ease-in-out infinite;
}

@keyframes callPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.call-end-btn {
    width: 45px;
    height: 45px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-end-btn svg {
    width: 22px;
    height: 22px;
    fill: white;
}

/* AI Brain Visual */
.ai-brain-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ai-circle {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--sky-blue), var(--deep-cloud-blue));
    border-radius: 50%;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 45px rgba(110, 193, 228, 0.4);
    animation: aiGlow 2s ease-in-out infinite;
}

@keyframes aiGlow {
    0%, 100% { box-shadow: 0 15px 45px rgba(110, 193, 228, 0.4); }
    50% { box-shadow: 0 15px 60px rgba(110, 193, 228, 0.7); }
}

.ai-circle svg {
    width: 24px;
    height: 24px;
    fill: var(--deep-cloud-blue);
    z-index: 2;
}

.ai-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.ai-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--deep-cloud-blue);
    text-align: center;
}

/* WhatsApp Mockup */
.whatsapp-mockup {
    width: 180px;
    height: 360px;
    max-width: 100%;
    background: #075e54;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.wa-header {
    background: #128c7e;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex-shrink: 0;
    box-sizing: border-box;
}

.wa-header svg {
    width: 22px;
    height: 22px;
    min-width: 22px;
    fill: white;
    flex-shrink: 0;
}

.wa-header span {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.wa-messages {
    background: #ece5dd;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    flex: 1;
    overflow-y: auto;
    box-sizing: border-box;
}

.wa-property {
    background: white;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    gap: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-width: 0;
    overflow: visible;
}

.wa-prop-img {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    border-radius: 6px;
    flex-shrink: 0;
}

.wa-prop-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    flex: 1;
    overflow: visible;
}

.wa-prop-info span:first-child {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.3;
    word-wrap: break-word;
}

.wa-price {
    font-size: 0.75rem;
    color: var(--sky-blue);
    font-weight: 700;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.3;
    word-wrap: break-word;
    margin-top: 2px;
}

/* Flow Arrow Connector */
.flow-arrow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: arrowMove 1.5s ease-in-out infinite;
}

.flow-arrow-connector svg {
    width: 45px;
    height: 45px;
    fill: var(--sky-blue);
    filter: drop-shadow(0 3px 8px rgba(110, 193, 228, 0.4));
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(6px); opacity: 1; }
}

/* Work Steps Grid with Images */
.work-steps-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem;
    flex-wrap: nowrap;
    margin-top: 2rem;
}

.work-step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    text-align: center;
    flex-shrink: 0;
}

.work-step-image {
    width: 150px;
    height: 150px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.work-step-card:hover .work-step-image {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.18);
}

.work-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.work-step-card:hover .work-step-image img {
    transform: scale(1.08);
}

.work-step-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--deep-cloud-blue);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.work-step-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* Work Step Arrow */
.work-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.25rem;
    animation: stepArrowPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.work-step-arrow svg {
    width: 28px;
    height: 28px;
    fill: var(--sky-blue);
}

@keyframes stepArrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(4px); opacity: 1; }
}

/* Responsive - How It Works */
@media (max-width: 1100px) {
    .visual-flow-diagram {
        padding: 2rem 1.5rem;
        gap: 1rem;
    }
    
    .phone-mockup {
        width: 150px;
        height: 300px;
    }
    
    .phone-screen-content {
        min-height: 280px;
        padding: 15px 10px;
    }
    
    .ai-circle {
        width: 110px;
        height: 110px;
    }
    
    .ai-circle svg {
        width: 32px;
        height: 32px;
    }
    
    .whatsapp-mockup {
        width: 150px;
        height: 300px;
        max-width: 90%;
    }
    
    .flow-stage-label {
        font-size: 0.9rem;
        white-space: normal;
        padding: 0 0.5rem;
    }
    
    .flow-arrow-connector svg {
        width: 26px;
        height: 26px;
    }
    
    .work-step-card {
        width: 150px;
    }
    
    .work-step-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 900px) {
    .work-steps-grid {
        gap: 1rem 0.5rem;
    }
    
    .work-step-arrow {
        display: none;
    }
    
    .work-step-card {
        width: 140px;
    }
    
    .work-step-image {
        width: 110px;
        height: 110px;
    }
    
    .work-step-info h4 {
        font-size: 0.85rem;
    }
}

/* iPad Air and iPad Pro - Keep horizontal layout */
@media (min-width: 769px) and (max-width: 1366px) {
    .visual-flow-diagram {
        flex-direction: row;
        gap: 2rem;
        padding: 2rem 1.5rem;
        justify-content: center;
        align-items: center;
    }
    
    .flow-stage {
        flex: 0 1 auto;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .flow-stage-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .phone-mockup {
        width: 160px;
        height: 320px;
    }
    
    .phone-screen-content {
        min-height: 300px;
    }
    
    .whatsapp-mockup {
        width: 160px;
        height: 320px;
        max-width: 100%;
    }
    
    .call-avatar {
        width: 60px;
        height: 60px;
    }
    
    .call-avatar svg {
        width: 32px;
        height: 32px;
    }
    
    .call-name {
        font-size: 0.95rem;
    }
    
    .call-status-text {
        font-size: 0.75rem;
    }
    
    .ai-circle {
        width: 130px;
        height: 130px;
    }
    
    
    .wa-header {
        padding: 10px 12px;
    }
    
    .wa-header svg {
        width: 20px;
        height: 20px;
    }
    
    .wa-header span {
        font-size: 0.9rem;
    }
    
    .wa-messages {
        padding: 12px;
        gap: 10px;
    }
    
    .wa-messages {
        padding: 13px;
        gap: 11px;
    }
    
    .wa-property {
        padding: 13px;
        gap: 13px;
    }
    
    .wa-prop-img {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    
    .wa-prop-info span:first-child {
        font-size: 0.88rem;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.35;
        word-wrap: break-word;
    }
    
    .wa-price {
        font-size: 0.83rem;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.35;
        word-wrap: break-word;
        margin-top: 3px;
    }
    
    .flow-stage-label {
        font-size: 1rem;
        white-space: nowrap;
        text-align: center;
        max-width: 100%;
    }
    
    .flow-arrow-connector {
        transform: rotate(0deg);
        width: 50px;
        height: auto;
        flex-shrink: 0;
    }
    
    .flow-arrow-connector svg {
        width: 50px;
        height: 50px;
    }
    
    @keyframes arrowMove {
        0%, 100% { transform: translateX(0); opacity: 0.6; }
        50% { transform: translateX(8px); opacity: 1; }
    }
}

@media (max-width: 768px) {
    .visual-flow-diagram {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.75rem 1rem;
    }
    
    .phone-mockup {
        width: 140px;
        height: 280px;
    }
    
    .phone-screen-content {
        min-height: 260px;
    }
    
    .whatsapp-mockup {
        width: 140px;
        height: 280px;
        max-width: 90%;
    }
    
    .wa-header {
        padding: 8px 10px;
    }
    
    .wa-header span {
        font-size: 0.85rem;
    }
    
    .wa-messages {
        padding: 8px;
    }
    
    .wa-property {
        padding: 8px;
        gap: 8px;
    }
    
    .wa-prop-img {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }
    
    .wa-prop-info span:first-child {
        font-size: 0.7rem;
    }
    
    .wa-price {
        font-size: 0.65rem;
    }
    
    .flow-stage-label {
        font-size: 0.95rem;
        white-space: normal;
        padding: 0 0.5rem;
        max-width: 200px;
    }
    
    .ai-identity {
        padding: 1rem 1.5rem;
        margin: 1.25rem auto;
    }
    
    .hero-heading {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        white-space: normal;
    }
    
    .flow-arrow-connector {
        transform: rotate(90deg);
    }
    
    @keyframes arrowMove {
        0%, 100% { transform: rotate(90deg) translateX(0); opacity: 0.6; }
        50% { transform: rotate(90deg) translateX(6px); opacity: 1; }
    }
    
    .work-steps-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .work-step-card {
        width: 100%;
        max-width: 300px;
        flex-direction: row;
        gap: 1rem;
        text-align: left;
    }
    
    .work-step-image {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
        margin-bottom: 0;
    }
    
    .work-step-info {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .visual-flow-diagram {
        padding: 1.25rem 0.875rem;
        border-radius: 16px;
        gap: 1rem;
    }
    
    .ai-identity {
        padding: 0.875rem 1.25rem;
    }
    
    .hero-heading {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 0.75rem;
        white-space: normal;
    }
    
    .hero-subheading {
        font-size: clamp(0.9rem, 2.5vw, 1.25rem);
        margin-bottom: 1.25rem;
    }
    
    .phone-mockup {
        width: 120px;
        height: 240px;
    }
    
    .phone-screen-content {
        min-height: 220px;
    }
    
    .call-avatar {
        width: 38px;
        height: 38px;
    }
    
    .ai-circle {
        width: 65px;
        height: 65px;
    }
    
    .whatsapp-mockup {
        width: 120px;
        height: 240px;
        max-width: 90%;
    }
    
    .wa-header {
        padding: 7px 9px;
    }
    
    .wa-header svg {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }
    
    .wa-header span {
        font-size: 0.8rem;
    }
    
    .wa-messages {
        padding: 7px;
        gap: 6px;
    }
    
    .wa-property {
        padding: 7px;
        gap: 7px;
    }
    
    .wa-prop-img {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    
    .wa-prop-info span:first-child {
        font-size: 0.65rem;
    }
    
    .wa-price {
        font-size: 0.6rem;
    }
    
    .flow-stage-label {
        font-size: 0.85rem;
        white-space: normal;
        padding: 0 0.5rem;
        line-height: 1.3;
        max-width: 180px;
        word-break: break-word;
    }
    
    .flow-stage {
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .flow-stage-visual {
        max-width: 100%;
        width: 100%;
    }
    
    .work-step-card {
        max-width: 100%;
    }
    
    .work-step-image {
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   SECTION 3: PARTNER NETWORK
   ============================================ */
.partner-network-section {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(110, 193, 228, 0.1) 100%);
    position: relative;
    z-index: 2;
}

.partner-cta-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.partner-cta-content h2 {
    font-size: 2rem;
    color: var(--deep-cloud-blue);
    margin-bottom: 1rem;
}

.partner-cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-large svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-large:hover svg {
    transform: translateX(5px);
}

.partner-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.partner-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: rgba(110, 193, 228, 0.1);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.partner-icon-item:hover {
    background: rgba(110, 193, 228, 0.2);
    transform: translateY(-3px);
}

.partner-icon-item svg {
    width: 36px;
    height: 36px;
    fill: var(--deep-cloud-blue);
}

.partner-icon-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 24px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    fill: var(--text-dark);
}

.modal-content {
    padding: 2.5rem;
}

.modal-title {
    font-size: 1.5rem;
    color: var(--deep-cloud-blue);
    margin-bottom: 0.5rem;
    padding-right: 2rem;
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Partner Form Styles */
.partner-form .form-group {
    margin-bottom: 1.25rem;
}

.partner-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.required {
    color: #ef4444;
}

.partner-form input[type="text"],
.partner-form input[type="email"],
.partner-form input[type="tel"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--cloud-grey);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    font-family: inherit;
}

.partner-form input:focus {
    outline: none;
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 4px rgba(110, 193, 228, 0.15);
}

.input-with-prefix {
    display: flex;
    align-items: stretch;
}

.input-prefix {
    background: var(--cloud-grey);
    padding: 0 1rem;
    display: flex;
    align-items: center;
    border-radius: 12px 0 0 12px;
    font-weight: 600;
    color: var(--text-dark);
    border: 2px solid var(--cloud-grey);
    border-right: none;
}

.input-with-prefix input {
    border-radius: 0 12px 12px 0 !important;
}

/* Multi-select Dropdown */
.multi-select-container {
    position: relative;
}

.multi-select-trigger {
    padding: 0.875rem 1rem;
    border: 2px solid var(--cloud-grey);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    background: white;
}

.multi-select-trigger:hover {
    border-color: var(--sky-blue);
}

.multi-select-trigger .placeholder {
    color: var(--text-light);
}

.multi-select-trigger svg {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
    transition: transform 0.3s ease;
}

.multi-select-container.open .multi-select-trigger svg {
    transform: rotate(180deg);
}

.multi-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--sky-blue);
    border-radius: 12px;
    margin-top: 4px;
    padding: 0.5rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.multi-select-container.open .multi-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 0.95rem;
}

.checkbox-item:hover {
    background: rgba(110, 193, 228, 0.1);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--sky-blue);
    cursor: pointer;
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    min-height: 1.2em;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cloud-grey);
}

/* ============================================
   SECTION 4: TRUST SECTION
   ============================================ */
.trust-section {
    background: white;
    position: relative;
    z-index: 10;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.trust-point {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.12);
    transition: var(--transition-smooth);
    border: 2px solid rgba(110, 193, 228, 0.3);
}

.trust-point:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.18);
    border-color: rgba(110, 193, 228, 0.5);
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
}

.trust-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #6EC1E4, #1E3A8A);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 15px rgba(110, 193, 228, 0.3);
}

.trust-icon svg {
    width: 36px;
    height: 36px;
    fill: #ffffff;
}

.trust-point h4 {
    color: #1E3A8A;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.trust-point p {
    color: #4B5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RESPONSIVE - NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .flow-illustration {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-points {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .partner-cta-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partner-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .flow-illustration {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .flow-step {
        padding: 1rem;
    }
    
    .trust-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .registration-cards {
        gap: 1.25rem;
    }
    
    .partner-cta-box {
        padding: 2rem;
        gap: 2rem;
    }
    
    .trust-point {
        padding: 1.5rem 1rem;
    }
    
    .partner-cta-box {
        padding: 2rem;
    }
    
    .partner-cta-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .trust-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-point {
        padding: 2rem 1.5rem;
    }
    
    .registration-cards {
        gap: 1rem;
    }
    
    .partner-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   PITCH DECK PAGE STYLES
   ============================================ */

/* Pitch Hero */
.pitch-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.4) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(224, 242, 254, 0.3) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.pitch-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.4) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(224, 242, 254, 0.3) 100%),
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    animation: cloudFloat 20s ease-in-out infinite;
}

@keyframes cloudFloat {
    0%, 100% { opacity: 0.8; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-10px); }
}

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

.pitch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.pitch-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.pitch-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--deep-cloud-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pitch-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--deep-cloud-blue);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.pitch-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

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

/* Pitch Slides */
.pitch-slide {
    padding: 5rem 0;
    background: white;
}

.pitch-slide-alt {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.4) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(224, 242, 254, 0.3) 100%);
}

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

.slide-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sky-blue);
    background: rgba(110, 193, 228, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.slide-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--deep-cloud-blue);
    margin: 0;
}

.slide-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 100%;
    line-height: 1.7;
    margin-bottom: 3rem;
    white-space: nowrap;
}

.slide-intro .highlight-text {
    background: linear-gradient(135deg, rgba(110, 193, 228, 0.3), rgba(30, 58, 138, 0.2));
    color: var(--deep-cloud-blue);
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.problem-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08);
    border: 2px solid rgba(110, 193, 228, 0.4);
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.12);
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.problem-icon svg {
    width: 28px;
    height: 28px;
    fill: #ef4444;
}

.problem-card h4 {
    font-size: 1.4rem;
    color: var(--deep-cloud-blue);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.problem-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.problem-result {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-color: rgba(239, 68, 68, 0.2);
}

.problem-result .problem-icon {
    background: #ef4444;
}

.problem-result .problem-icon svg {
    fill: white;
}

/* Solution Section */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.solution-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08);
    border: 2px solid rgba(110, 193, 228, 0.4);
    text-align: center;
    transition: var(--transition-smooth);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15);
}

.solution-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--sky-blue), var(--deep-cloud-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.solution-icon svg {
    width: 36px;
    height: 36px;
    fill: white;
}

.solution-card h4 {
    font-size: 1.25rem;
    color: var(--deep-cloud-blue);
    margin-bottom: 0.75rem;
}

.solution-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Pitch Flow Grid */
.pitch-flow-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.pitch-flow-visual {
    display: flex;
    justify-content: center;
}

.flow-diagram {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.1);
}

.flow-node {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.flow-node svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.flow-node span {
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
}

.flow-node-call {
    background: linear-gradient(135deg, var(--sky-blue), var(--deep-cloud-blue));
}

.flow-node-ai {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    padding: 0;
}

.flow-node-ai img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.flow-node-whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.flow-connector {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-blue), var(--deep-cloud-blue));
    border-radius: 2px;
    position: relative;
}

.flow-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: var(--deep-cloud-blue);
}

.pitch-flow-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pitch-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.06);
    transition: var(--transition-smooth);
}

.pitch-step:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
}

.pitch-step-num {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--sky-blue), var(--deep-cloud-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pitch-step-content h4 {
    font-size: 1rem;
    color: var(--deep-cloud-blue);
    margin-bottom: 0.25rem;
}

.pitch-step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.capability-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08);
    border: 2px solid rgba(110, 193, 228, 0.4);
    transition: var(--transition-smooth);
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.12);
}

.capability-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(110, 193, 228, 0.2), rgba(30, 58, 138, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.capability-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--deep-cloud-blue);
}

.capability-card h4 {
    font-size: 1rem;
    color: var(--deep-cloud-blue);
    margin-bottom: 0.5rem;
}

.capability-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Market Grid */
.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.market-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.08);
    position: relative;
    overflow: hidden;
}

.market-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--sky-blue);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.market-card h3 {
    font-size: 1.1rem;
    color: var(--deep-cloud-blue);
    margin-bottom: 1.5rem;
    padding-right: 3rem;
}

.market-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.market-stat {
    padding: 1rem;
    background: rgba(110, 193, 228, 0.08);
    border-radius: 12px;
}

.market-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-cloud-blue);
    margin-bottom: 0.25rem;
}

.market-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

.market-tam .market-label { background: #8b5cf6; }
.market-sam .market-label { background: #06b6d4; }
.market-som .market-label { background: #22c55e; }

.market-projections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.projection {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 1rem;
}

.projection-year {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.projection-bar {
    height: 24px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 6px;
    min-width: 20px;
}

.projection-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--deep-cloud-blue);
    white-space: nowrap;
}

/* Revenue Streams */
.revenue-streams {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.revenue-streams-cards {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    width: 100% !important;
    margin-top: 2rem !important;
}

.revenue-streams .revenue-card,
.revenue-streams-cards .revenue-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08);
    border: 2px solid rgba(110, 193, 228, 0.4);
    transition: var(--transition-smooth);
}

.revenue-streams .revenue-card:hover {
    transform: translateY(-5px);
}

.revenue-streams .revenue-icon {
    width: 56px;
    height: 56px;
    background: rgba(250, 204, 21, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.revenue-streams .revenue-icon svg {
    width: 28px;
    height: 28px;
    fill: #ca8a04;
}

.revenue-streams .revenue-card h4 {
    font-size: 1rem;
    color: var(--deep-cloud-blue);
    margin-bottom: 0.5rem;
}

.revenue-streams .revenue-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Advantage Grid */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.advantage-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08);
    border: 2px solid rgba(110, 193, 228, 0.4);
    transition: var(--transition-smooth);
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-main {
    background: linear-gradient(135deg, rgba(110, 193, 228, 0.15), rgba(30, 58, 138, 0.08));
    color: var(--deep-cloud-blue);
    border: 2px solid rgba(110, 193, 228, 0.4);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08);
}

.advantage-main h3 {
    color: var(--deep-cloud-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.advantage-main p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.advantage-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.advantage-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--deep-cloud-blue);
}

.advantage-icon-small {
    width: 48px;
    height: 48px;
    background: rgba(110, 193, 228, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.advantage-icon-small svg {
    width: 24px;
    height: 24px;
    fill: var(--deep-cloud-blue);
}

.advantage-card h4 {
    font-size: 1.1rem;
    color: var(--deep-cloud-blue);
    margin-bottom: 0.5rem;
}

.advantage-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Roadmap Timeline */
.roadmap-timeline {
    position: relative;
    padding-left: 3rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--sky-blue), var(--deep-cloud-blue));
    border-radius: 2px;
}

.roadmap-phase {
    position: relative;
    padding-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.roadmap-phase:last-child {
    padding-bottom: 0;
}

.phase-marker {
    position: absolute;
    left: -3rem;
    width: 34px;
    height: 34px;
    background: white;
    border: 3px solid var(--sky-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.phase-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--deep-cloud-blue);
}

.phase-content {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08);
    flex: 1;
    transition: var(--transition-smooth);
}

.phase-content:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.12);
}

.phase-content h4 {
    font-size: 1.15rem;
    color: var(--deep-cloud-blue);
    margin-bottom: 0.5rem;
}

.phase-content p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.phase-timeline {
    display: inline-block;
    background: rgba(110, 193, 228, 0.15);
    color: var(--deep-cloud-blue);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Pitch CTA */
.pitch-cta {
    background: linear-gradient(135deg, var(--deep-cloud-blue), #1e40af);
    padding: 5rem 0;
    text-align: center;
}

.pitch-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 1rem;
}

.pitch-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

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

/* Pitch Deck Responsive */
@media (max-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .pitch-flow-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .market-grid {
        grid-template-columns: 1fr;
    }
    
    .revenue-streams-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pitch-hero {
        min-height: 60vh;
        padding: 5rem 0 3rem;
    }
    
    .pitch-hero-stats {
        gap: 2rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .slide-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .revenue-streams-cards {
        grid-template-columns: 1fr !important;
    }
    
    .flow-diagram {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .flow-connector {
        width: 3px;
        height: 30px;
        background: linear-gradient(180deg, var(--sky-blue), var(--deep-cloud-blue));
    }
    
    .flow-connector::after {
        right: 50%;
        top: auto;
        bottom: -4px;
        transform: translateX(50%) rotate(90deg);
    }
    
    .roadmap-timeline {
        padding-left: 2.5rem;
    }
    
    .phase-marker {
        left: -2.5rem;
        width: 28px;
        height: 28px;
    }
    
    .phase-content {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .pitch-cta-buttons {
        flex-direction: column;
    }
    
    .projection {
        grid-template-columns: 50px 1fr;
        gap: 0.5rem;
    }
    
    .projection-value {
        grid-column: 1 / -1;
        text-align: right;
    }
}

/* ============================================
   AUDIO PLAYER UI
   ============================================ */
.audio-player-ui {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.audio-player-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(110, 193, 228, 0.3);
    min-width: 350px;
    max-width: 500px;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.play-pause-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-blue), var(--deep-cloud-blue));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(110, 193, 228, 0.3);
}

.play-pause-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(110, 193, 228, 0.4);
}

.play-pause-btn svg {
    width: 24px;
    height: 24px;
    color: white;
}

.audio-info {
    flex: 1;
    min-width: 0;
}

.audio-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-cloud-blue);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.audio-time {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    font-family: 'Inter', monospace;
}

.close-audio-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.close-audio-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: scale(1.1);
}

.close-audio-btn svg {
    width: 18px;
    height: 18px;
    color: #EF4444;
}

.audio-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(110, 193, 228, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.audio-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--sky-blue), var(--deep-cloud-blue));
    border-radius: 4px;
    transition: width 0.1s linear;
}

.audio-progress::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

/* Responsive Audio Player */
@media (max-width: 768px) {
    .audio-player-container {
        min-width: 300px;
        max-width: calc(100vw - 40px);
        padding: 1rem 1.25rem;
    }
    
    .audio-title {
        font-size: 0.85rem;
    }
    
    .audio-time {
        font-size: 0.75rem;
    }
    
    .play-pause-btn {
        width: 40px;
        height: 40px;
    }
    
    .play-pause-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 8px 40px rgba(37, 211, 102, 0.2);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: white;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5), 0 12px 50px rgba(37, 211, 102, 0.3);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 8px 40px rgba(37, 211, 102, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 8px 50px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
}

/* ============================================
   CINEMATIC SKY JOURNEY SECTION
   ============================================ */
.sky-journey-section {
    min-height: 100vh;
    background: linear-gradient(180deg, 
        #E0F2FE 0%, 
        #BAE6FD 20%, 
        #7DD3FC 50%, 
        #38BDF8 80%, 
        #0EA5E9 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
}

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

/* Animated Clouds */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    opacity: 0.7;
    animation: cloudFloat 60s infinite linear;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
}

.cloud-1 {
    width: 120px;
    height: 40px;
    top: 10%;
    left: -120px;
    animation-duration: 50s;
}

.cloud-1::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 20px;
}

.cloud-1::after {
    width: 80px;
    height: 50px;
    top: -20px;
    right: 15px;
}

.cloud-2 {
    width: 150px;
    height: 50px;
    top: 30%;
    left: -150px;
    animation-duration: 70s;
    animation-delay: 10s;
}

.cloud-2::before {
    width: 70px;
    height: 70px;
    top: -35px;
    left: 30px;
}

.cloud-2::after {
    width: 90px;
    height: 60px;
    top: -25px;
    right: 20px;
}

.cloud-3 {
    width: 100px;
    height: 35px;
    top: 60%;
    left: -100px;
    animation-duration: 55s;
    animation-delay: 20s;
}

.cloud-3::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 15px;
}

.cloud-3::after {
    width: 65px;
    height: 45px;
    top: -18px;
    right: 12px;
}

.cloud-4 {
    width: 130px;
    height: 45px;
    top: 80%;
    left: -130px;
    animation-duration: 65s;
    animation-delay: 5s;
}

.cloud-4::before {
    width: 65px;
    height: 65px;
    top: -32px;
    left: 25px;
}

.cloud-4::after {
    width: 85px;
    height: 55px;
    top: -22px;
    right: 18px;
}

@keyframes cloudFloat {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 200px));
    }
}

/* Journey Header */
.journey-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.journey-main-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 750;
    color: var(--deep-cloud-blue);
    text-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

.journey-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 750;
    color:var(--deep-cloud-blue);
    text-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

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

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

/* Sky Path Container */
.sky-path-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Journey Path SVG */
.journey-path {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
}

.path-line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawPath 3s ease-out forwards;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

/* Journey Steps */
.journey-step {
    position: relative;
    z-index: 2;
    margin: 8rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: stepAppear 0.8s ease-out forwards;
}

.journey-step:nth-child(2) { animation-delay: 0.5s; }
.journey-step:nth-child(3) { animation-delay: 1s; }
.journey-step:nth-child(4) { animation-delay: 1.5s; }
.journey-step:nth-child(5) { animation-delay: 2s; }
.journey-step:nth-child(6) { animation-delay: 2.5s; }

@keyframes stepAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Step Cloud Platform */
.step-cloud {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 20px 60px rgba(30, 58, 138, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 0 30px rgba(110, 193, 228, 0.1);
    animation: float 6s ease-in-out infinite;
    position: relative;
}

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

/* Floating Icons */
.floating-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.floating-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--deep-cloud-blue);
    filter: drop-shadow(0 4px 10px rgba(30, 58, 138, 0.2));
}

/* Avatar Icon */
.floating-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6EC1E4, #1E3A8A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: avatarGlow 3s ease-in-out infinite;
}

.floating-avatar svg {
    width: 50px;
    height: 50px;
    fill: white;
}

@keyframes avatarGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(110, 193, 228, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(110, 193, 228, 0.8);
    }
}

/* Phone Icon with Pulse */
.phone-icon {
    position: relative;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #6EC1E4;
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

.pulse-ring-2 {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* AI Icon with Neural Particles */
.ai-icon {
    position: relative;
}

.neural-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.neural-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #6EC1E4;
    border-radius: 50%;
    animation: neuralFloat 3s ease-in-out infinite;
}

.neural-particles span:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.neural-particles span:nth-child(2) {
    top: 10%;
    right: 10%;
    animation-delay: 0.5s;
}

.neural-particles span:nth-child(3) {
    bottom: 10%;
    left: 10%;
    animation-delay: 1s;
}

.neural-particles span:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes neuralFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }
    50% {
        transform: translate(10px, -10px);
        opacity: 1;
    }
}

/* Data Icon with Mini Cards */
.data-icon {
    position: relative;
}

.property-cards-mini {
    display: flex;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.mini-card {
    width: 25px;
    height: 35px;
    background: linear-gradient(135deg, #ffffff, #E0F2FE);
    border-radius: 6px;
    border: 2px solid #6EC1E4;
    animation: cardShuffle 2s ease-in-out infinite;
}

.mini-card:nth-child(1) { animation-delay: 0s; }
.mini-card:nth-child(2) { animation-delay: 0.3s; }
.mini-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes cardShuffle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.filter-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #1E3A8A;
    border-radius: 50%;
    padding: 5px;
}

.filter-icon path {
    fill: white;
}

/* WhatsApp Icon with Preview */
.whatsapp-icon {
    position: relative;
}

.whatsapp-icon svg {
    fill: #25D366;
}

.whatsapp-preview {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: messageSlide 2s ease-in-out infinite;
}

.preview-line {
    width: 40px;
    height: 3px;
    background: #E0F2FE;
    margin: 3px 0;
    border-radius: 2px;
}

.preview-line.short {
    width: 25px;
}

@keyframes messageSlide {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50%) translateX(5px);
        opacity: 1;
    }
}

/* Home Destination */
.home-destination {
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 30px 80px rgba(244, 197, 66, 0.3),
        0 0 0 2px rgba(244, 197, 66, 0.2),
        inset 0 0 40px rgba(244, 197, 66, 0.1);
    animation: homeGlow 4s ease-in-out infinite;
    position: relative;
}

@keyframes homeGlow {
    0%, 100% {
        box-shadow: 
            0 30px 80px rgba(244, 197, 66, 0.3),
            0 0 0 2px rgba(244, 197, 66, 0.2),
            inset 0 0 40px rgba(244, 197, 66, 0.1);
    }
    50% {
        box-shadow: 
            0 30px 100px rgba(244, 197, 66, 0.5),
            0 0 0 3px rgba(244, 197, 66, 0.4),
            inset 0 0 50px rgba(244, 197, 66, 0.2);
    }
}

.home-illustration {
    position: relative;
}

.house-svg {
    width: 150px;
    height: 150px;
    animation: houseAppear 2s ease-out;
}

@keyframes houseAppear {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.home-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(244, 197, 66, 0.3) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Step Labels */
.step-label {
    text-align: center;
    margin-top: 2rem;
    max-width: 350px;
}

.step-label h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-cloud-blue);
    text-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
    margin-bottom: 0.5rem;
}

.step-label p {
    font-size: 1rem;
    color: var(--deep-cloud-blue);
    text-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
    font-weight: 500;
}

.final-label h3 {
    font-size: 2rem;
    color: var(--deep-cloud-blue);
    text-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .sky-journey-section {
        padding: 4rem 0 3rem;
    }
    
    .journey-main-title {
        font-size: 2rem;
    }
    
    .journey-subtitle {
        font-size: 1rem;
    }
    
    .journey-step {
        margin: 6rem auto;
    }
    
    .step-cloud {
        width: 150px;
        height: 150px;
    }
    
    .floating-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .home-destination {
        width: 180px;
        height: 180px;
    }
    
    .house-svg {
        width: 120px;
        height: 120px;
    }
    
    .step-label h3 {
        font-size: 1.25rem;
    }
    
    .step-label p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .journey-step {
        margin: 5rem auto;
    }
    
    .step-cloud {
        width: 130px;
        height: 130px;
    }
    
    .floating-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .home-destination {
        width: 150px;
        height: 150px;
    }
    
    .house-svg {
        width: 100px;
        height: 100px;
    }
    
    .whatsapp-preview {
        right: -30px;
        padding: 6px;
    }
    
    .preview-line {
        width: 30px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

