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

:root {
    --primary-color: #00d4ff;
    --secondary-color: #00ff88;
    --accent-color: #0099ff;
    --background-dark: #0a0a0a;
    --background-glass: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.3);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    --gradient-secondary: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-primary);
    background: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
.section-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1rem;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.9;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo .logo-image {
    height: 160px;
    width: auto;
    object-fit: contain;
    margin: -1.6rem 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link.cta-link {
    background: var(--gradient-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: white;
    font-weight: 600;
}

.nav-link.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
    animation: ctaPulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-glow {
    display: none;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 153, 255, 0.1) 0%, transparent 50%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-main {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
}

.hero-accent {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-container {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    padding-top: 1rem;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 30px;
}

.hero-phone {
    width: 100%;
    max-width: 280px;
    height: auto;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 30px;
    padding: 20px;
    box-shadow:
        0 0 20px rgba(0, 212, 255, 0.3),
        0 0 40px rgba(0, 212, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    position: relative;
    animation: phoneFloat 4s ease-in-out infinite;
    overflow: hidden;
    transform-style: preserve-3d;
}

.phone-screen {
    width: 100%;
    height: auto;
    min-height: 350px;
    background: #000;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.chat-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    max-width: 85%;
    font-size: 13px;
    line-height: 1.3;
    animation: messageSlide 0.5s ease-out;
    text-align: left;
}

.chat-bubble.ai {
    background: var(--gradient-primary);
    color: white;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-bubble.user {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* Explainer Section */
.explainer {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--background-dark) 0%, rgba(0, 212, 255, 0.02) 100%);
}

.explainer-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.flow-step {
    text-align: center;
    padding: 2rem;
    background: var(--background-glass);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    min-width: 200px;
}

.flow-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary-color);
}

.flow-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.flow-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.flow-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.flow-arrow {
    color: var(--primary-color);
    font-size: 2rem;
    animation: arrowPulse 2s ease-in-out infinite;
}

/* Calculator Section */
.calculator {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.02) 0%, var(--background-dark) 100%);
}

.calculator-widget {
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 2/1;
    min-height: 500px;
}

.calculator-box {
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-primary);
    color: #fff;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.calculator-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calculator-box:hover::before {
    opacity: 1;
}

.calculator-box label {
    font-size: 1.2em;
    margin-bottom: 25px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.calculator-box span {
    font-size: 2.2em;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #fff;
    margin-top: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.calculator-box input[type=range] {
    width: 100%;
    max-width: 200px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 8px;
    margin: 20px 0;
    position: relative;
    z-index: 2;
}

.calculator-box input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.calculator-box input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    margin-top: -10px;
    height: 30px;
    width: 30px;
    background: black;
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
}

.calculator-box input[type=range]::-moz-range-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.calculator-box input[type=range]::-moz-range-thumb {
    height: 30px;
    width: 30px;
    background: black;
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
}

.calculator-box input[type=range]::-ms-track {
    width: 100%;
    height: 8.4px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

.calculator-box input[type=range]::-ms-fill-lower {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.calculator-box input[type=range]::-ms-fill-upper {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.calculator-box input[type=range]::-ms-thumb {
    height: 30px;
    width: 30px;
    background: black;
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
}

.revenueBox .result {
    font-size: 1.5em;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
}

.revenueBox .result span {
    display: block;
    font-size: 2.8em;
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin-top: 15px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

/* How It Works Section */
.how-it-works {
    padding: 120px 0;
    background: var(--background-dark);
}

.how-it-works-content {
    text-align: center;
}

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

.step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--background-glass);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    flex: 1;
    max-width: 280px;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
    border-color: #00d4ff;
}

.step:hover::before {
    transform: scaleX(1);
}



.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

/* Force blue colors with maximum specificity - CACHE BUST */
.how-it-works .step .step-icon {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%) !important;
}

.how-it-works .step .step-icon i {
    color: white !important;
}



.step-icon i {
    color: white !important;
}

.step-arrow {
    color: #00d4ff;
    font-size: 2rem;
    animation: arrowPulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.how-it-works-cta {
    margin-top: 3rem;
    text-align: center;
}

.how-it-works-cta .btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%) !important;
    border: 2px solid #00d4ff !important;
    color: white !important;
    animation: buttonPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.how-it-works-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, #0099ff 0%, #00d4ff 100%) !important;
}

/* Industries Section */
.industries {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.02) 0%, var(--background-dark) 100%);
}

.industries-header {
    text-align: center;
    margin-bottom: 4rem;
}

.industries-subheadline {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.industries-headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem 1.5rem;
    background: var(--background-glass);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 160px;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 255, 136, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.industry-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 212, 255, 0.15);
    border-color: var(--primary-color);
}

.industry-item:hover::before {
    opacity: 1;
}

.industry-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.industry-item:hover .industry-icon {
    transform: scale(1.1);
}

.industry-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    stroke-width: 1.5px;
}

.industry-item:hover .industry-icon i {
    color: var(--secondary-color);
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.4));
}

.industry-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.industry-item:hover .industry-name {
    color: var(--primary-color);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--background-dark) 0%, rgba(0, 153, 255, 0.02) 100%);
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.features-subheadline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.comparison-table {
    max-width: 900px;
    margin: 4rem auto 0;
    background: var(--background-glass);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.table-header::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.feature-column,
.competitor-column,
.myzo-column {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
    text-align: center;
}

.competitor-column {
    color: var(--text-secondary);
}

.myzo-column {
    color: var(--primary-color);
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(4px);
}

.table-row:last-child {
    border-bottom: none;
}

.feature-name {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.competitor-status,
.myzo-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    padding: 0.5rem;
}

.competitor-status i {
    color: #ff4444;
    font-size: 1.2rem;
    stroke-width: 2px;
}

.myzo-status i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    stroke-width: 2px;
}

.competitor-status span,
.myzo-status span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.3;
    max-width: 120px;
}

.myzo-status span {
    color: var(--text-primary);
}

.credibility-note {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem;
    background: var(--background-glass);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
}

.credibility-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.credibility-item:last-child {
    margin-bottom: 0;
}

.credibility-item:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateX(8px);
}

.credibility-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.credibility-item span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Case Studies Section */
.case-studies {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(0, 153, 255, 0.02) 0%, var(--background-dark) 100%);
}

.case-studies-header {
    text-align: center;
    margin-bottom: 3rem;
}

.case-studies-subheadline {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.case-studies-headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-studies-description {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.case-studies-description p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.case-study-card {
    background: var(--background-glass);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
}

.video-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px 20px 0 0;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.7;
}

.coming-soon {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.case-study-card:hover .video-overlay {
    opacity: 1;
}

.watch-btn {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.watch-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5);
}

.case-content {
    padding: 2rem;
}

.case-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.case-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-badge {
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--background-dark) 0%, rgba(0, 212, 255, 0.05) 100%);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo .logo-image {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

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

@keyframes phoneFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(-2deg) rotateX(5deg); 
    }
    50% { 
        transform: translateY(-8px) rotate(2deg) rotateX(-5deg); 
    }
}

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

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

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

@keyframes buttonPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    }
    50% { 
        transform: scale(1.02); 
        box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5);
    }
}

@keyframes ctaPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% { 
        transform: scale(1.03); 
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .nav-logo .logo-image {
        height: 80px;
        margin: -0.5rem 0;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        z-index: 9999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1.5rem 0;
        font-size: 1.5rem;
        font-weight: 500;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 300px;
    }
    
    .nav-link.cta-link {
        margin-top: 2rem;
        background: var(--gradient-primary);
        padding: 1rem 2rem;
        border-radius: 50px;
        border: none;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 10000;
        padding: 8px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .hero-phone-container {
        max-width: 240px;
        width: 100%;
        margin: 0 auto;
        padding-top: 1rem;
        margin-bottom: 0;
        padding-bottom: 0;
        overflow: hidden;
        border-radius: 25px;
    }
    .hero-phone {
        max-width: 240px;
        height: auto;
        overflow: hidden;
        border-radius: 25px;
        box-shadow:
            0 0 20px rgba(0, 212, 255, 0.3),
            0 0 40px rgba(0, 212, 255, 0.1),
            inset 0 0 20px rgba(255, 255, 255, 0.05);
    }
    .phone-screen {
        border-radius: 15px;
        gap: 10px;
        padding: 15px;
        min-height: 300px;
    }
    
    .explainer-flow {
        flex-direction: column;
        gap: 1rem;
    }
    .flow-arrow {
        transform: rotate(90deg) !important;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
        height: auto;
        aspect-ratio: auto;
        min-height: auto;
        padding: 0 10px;
    }
    
    .calculator-box {
        padding: 25px 15px;
        min-height: 180px;
    }
    
    .calculator-box label {
        font-size: 1.1em;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .calculator-box span {
        font-size: 1.8em;
        margin-top: 10px;
        color: #fff;
    }
    
    .revenueBox .result {
        font-size: 1.3em;
    }
    
    .revenueBox .result span {
        font-size: 2.2em;
    }
    
    .calculator-box input[type=range] {
        height: 6px;
        max-width: 150px;
    }
    
    .calculator-box input[type=range]::-webkit-slider-thumb {
        height: 24px;
        width: 24px;
    }
    
    .calculator-box input[type=range]::-moz-range-thumb {
        height: 24px;
        width: 24px;
    }
    
    .calculator-box input[type=range]::-ms-thumb {
        height: 24px;
        width: 24px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }
    .step-arrow {
        transform: rotate(90deg) !important;
    }
    .step {
        padding: 2rem 1.5rem;
        min-width: auto;
        flex: none;
        max-width: none;
    }
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .step-icon i {
        font-size: 1.5rem;
    }
    .step h3 {
        font-size: 1.2rem;
    }
    .step p {
        font-size: 0.9rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .industry-item {
        padding: 1.5rem 1rem;
    }
    .industry-icon i {
        font-size: 1.5rem;
    }
    .industry-name {
        font-size: 0.8rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .case-studies-description {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .case-studies-description p {
        font-size: 1.1rem;
    }
    
    .comparison-table {
        margin: 2rem 1rem 0;
        border-radius: 16px;
    }
    
    .table-header {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 1.5rem 1rem;
    }
    
    .table-header::after {
        left: 33.33%;
    }
    
    .table-row {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 1rem;
    }
    
    .feature-name {
        font-size: 0.9rem;
    }
    
    .competitor-status span,
    .myzo-status span {
        font-size: 0.8rem;
        max-width: 80px;
    }
    
    .credibility-note {
        margin: 2rem 1rem 0;
        padding: 1.5rem;
    }
    
    .credibility-item span {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.0002rem 0.5rem;
    }
    
    .nav-logo .logo-image {
        height: 100px;
        margin: -0.9rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .calculator-container {
        gap: 12px;
        padding: 0 5px;
    }
    
    .calculator-box {
        padding: 20px 12px;
        min-height: 160px;
    }
    
    .calculator-box label {
        font-size: 1em;
        margin-bottom: 15px;
    }
    
    .calculator-box span {
        font-size: 1.6em;
        margin-top: 8px;
        color: #fff;
    }
    
    .revenueBox .result {
        font-size: 1.2em;
    }
    
    .revenueBox .result span {
        font-size: 2em;
    }
    
    .calculator-box input[type=range] {
        max-width: 120px;
        height: 5px;
    }
    
    .calculator-box input[type=range]::-webkit-slider-thumb {
        height: 20px;
        width: 20px;
    }
    
    .calculator-box input[type=range]::-moz-range-thumb {
        height: 20px;
        width: 20px;
    }
    
    .calculator-box input[type=range]::-ms-thumb {
        height: 20px;
        width: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .hero-phone-container {
        max-width: 75vw;
        padding-top: 0.5rem;
        margin-bottom: 0;
        padding-bottom: 0;
        overflow: hidden;
        border-radius: 20px;
    }
    .hero-phone {
        max-width: 75vw;
        height: auto;
        overflow: hidden;
        border-radius: 20px;
        box-shadow:
            0 0 12px rgba(0, 212, 255, 0.13),
            inset 0 0 8px rgba(255, 255, 255, 0.03);
    }
    .phone-screen {
        border-radius: 12px;
        gap: 8px;
        padding: 15px;
        min-height: 250px;
    }
    
    .flow-step {
        min-width: auto;
    }
    
    .step {
        padding: 2rem 1rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%) !important;
    }
    
    .step-icon i {
        color: white !important;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
    
    .step p {
        font-size: 0.95rem;
    }
    
    .how-it-works-cta .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .industry-item {
        padding: 1.5rem 1rem;
        min-height: 140px;
    }
    
    .industry-icon i {
        font-size: 1.8rem;
    }
    
    .industry-name {
        font-size: 0.8rem;
    }
    
    .comparison-table {
        margin: 1rem 0.5rem 0;
    }
    
    .table-header {
        padding: 1rem 0.5rem;
    }
    
    .table-row {
        padding: 0.75rem 0.5rem;
    }
    
    .feature-name {
        font-size: 0.8rem;
    }
    
    .competitor-status span,
    .myzo-status span {
        font-size: 0.75rem;
        max-width: 60px;
    }
    
    .credibility-note {
        margin: 1.5rem 0.5rem 0;
        padding: 1rem;
    }
    
    .credibility-item span {
        font-size: 0.9rem;
    }
    

    
    .case-studies-description {
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .case-studies-description p {
        font-size: 1rem;
    }
    
    .video-container {
        height: 200px;
    }
    
    .case-content {
        padding: 1.5rem;
    }
    
    .case-title {
        font-size: 1.1rem;
    }
    
    .case-description {
        font-size: 0.9rem;
    }
    
    .stat-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
} 

/* Legal Pages Styling */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--background-dark);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--background-glass);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.8rem 0;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.back-to-home {
    margin-top: 3rem;
    text-align: center;
}

.back-to-home .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
    
    .back-to-home .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
} 