/* ============================================
   JZR Codes - Design System & Styles
   White theme with electric blue/cyan accents
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    /* Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;

    --accent-primary: #00d4ff;
    --accent-secondary: #0077b6;
    --accent-gradient: linear-gradient(135deg, #00d4ff, #0077b6);
    --accent-glow: 0 0 30px rgba(0, 212, 255, 0.3);

    --text-heading: #0a0a0f;
    --text-body: #4a5568;
    --text-muted: #718096;

    --border-color: #e2e8f0;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-base: 16px;
    --line-height: 1.6;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height);
    color: var(--text-body);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Page transition */
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Page Transitions */
body.page-loading {
    opacity: 0;
}

body.page-transitioning {
    opacity: 0;
    pointer-events: none;
}

@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.page-entering {
    animation: pageEnter 0.4s ease forwards;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-primary);
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-heading);
}

.logo img {
    height: 100px;
    width: 150px;
    object-fit: contain;
}

.footer-logo img {
    height: 100px;
    width: 160px;
}

.logo-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-secondary);
}

.nav-ctas {
    display: flex;
    gap: 12px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-heading);
    transition: all var(--transition-fast);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-secondary);
    border: 2px solid var(--accent-secondary);
}

.btn-secondary:hover {
    background: var(--accent-secondary);
    color: white;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

.btn-arrow {
    transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   Sections
   ============================================ */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.bg-secondary {
    background: var(--bg-secondary);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Grid Pattern */
.animated-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.animated-grid svg {
    width: 100%;
    height: 100%;
}

.grid-square {
    fill: var(--accent-primary);
    opacity: 0;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero h1 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-body);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-trust {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ============================================
   Page Header (Services, Work, Contact)
   ============================================ */
.page-header {
    padding: 160px 0 60px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header.has-grid {
    overflow: hidden;
}

.page-header .animated-grid-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.page-header .animated-grid-pattern svg {
    width: 100%;
    height: 100%;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Cards
   ============================================ */
.card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--accent-primary);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.card h3 {
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* ============================================
   Problem Section
   ============================================ */
.problem-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.problem-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.problem-text {
    font-weight: 500;
    color: var(--text-heading);
}

.problem-closing {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;

}

.problem-closing span {
    color: var(--accent-secondary);

}

/* ============================================
   Process / Steps
   ============================================ */
.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    max-width: 300px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h4 {
    margin-bottom: 8px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* New Process Steps with Connecting Lines */
.process-steps-new {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.process-step-new {
    text-align: center;
    max-width: 280px;
    padding: 0 30px;
}

.step-number-new {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid var(--accent-primary);
    color: var(--accent-primary);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-family);
}

.step-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    margin-top: 35px;
    flex-shrink: 0;
}

.process-step-new h4 {
    margin-bottom: 8px;
    color: var(--text-heading);
}

.process-step-new p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   Included List
   ============================================ */
.included-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-primary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.included-icon {
    color: var(--accent-primary);
    font-size: 1.25rem;
}

/* ============================================
   Demo Cards
   ============================================ */
.demo-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-normal);
}

.demo-card:hover {
    box-shadow: var(--card-shadow-hover);
    border-color: var(--accent-primary);
}

.demo-card h3 {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.demo-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--accent-gradient);
    color: white;
}

.demo-details {
    margin-bottom: 20px;
}

.demo-details p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.demo-details strong {
    color: var(--text-heading);
}

.demo-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.demo-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: left;
}

.demo-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-goal {
    background: rgba(0, 212, 255, 0.1);
}

.demo-goal .demo-label {
    color: var(--accent-primary);
}

.demo-flow {
    background: rgba(139, 92, 246, 0.1);
}

.demo-flow .demo-label {
    color: #8b5cf6;
}

.demo-outcome {
    background: rgba(16, 185, 129, 0.1);
}

.demo-outcome .demo-label {
    color: #10b981;
}

/* New Demo System Cards */
.demos-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.demo-system-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: all var(--transition-normal);
}

.demo-system-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--card-shadow-hover);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.demo-icon-box {
    width: 56px;
    height: 56px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.demo-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.demo-industry {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-system-card h3 {
    font-size: 1.5rem;
    color: var(--text-heading);
    margin: 0;
}

.demo-columns {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.demo-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.column-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-column p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.demo-column ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.demo-column ol li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-body);
    counter-increment: step-counter;
}

.demo-column ol li::before {
    content: counter(step-counter) ".";
    color: var(--accent-secondary);
    font-weight: 600;
    min-width: 18px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--accent-secondary);
    background: transparent;
    color: var(--accent-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--accent-secondary);
    color: white;
}

/* ============================================
   Who It's For
   ============================================ */
.audience-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.audience-item {
    padding: 12px 24px;
    background: var(--bg-primary);
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--text-heading);
    transition: all var(--transition-fast);
}

.audience-item:hover {
    border-color: var(--accent-primary);
    background: var(--bg-secondary);
}

/* New Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.audience-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-normal);
}

.audience-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.audience-card h4 {
    margin-bottom: 8px;
    color: var(--text-heading);
}

.audience-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-heading);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--accent-secondary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-body);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--accent-gradient);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background: white;
    color: var(--accent-secondary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--accent-secondary);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Contact Form
   ============================================ */
.contact-section {
    padding: 160px 0 80px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info h1 {
    font-size: 2.5rem;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.7;
}

.reply-notice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: var(--text-body);
}

.reply-icon {
    font-size: 1.1rem;
}

.whatsapp-box {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-top: 16px;
}

.whatsapp-box h4 {
    color: var(--text-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.whatsapp-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-new .form-group {
    margin-bottom: 20px;
}

.contact-form-new label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-heading);
    font-size: 0.9rem;
}

.optional {
    font-weight: 400;
    color: var(--text-muted);
}

.contact-form-new input,
.contact-form-new select,
.contact-form-new textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    color: #1a1a2e;
    transition: all var(--transition-fast);
}

.contact-form-new input:focus,
.contact-form-new select:focus,
.contact-form-new textarea:focus {
    outline: none;
    border-color: var(--accent-secondary);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.contact-form-new textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.send-icon {
    width: 18px;
    height: 18px;
}

/* Keep old form styles for backwards compatibility */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-primary);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-family);
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: white;
    color: var(--text-heading);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 24px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
    margin-top: 12px;
}

.footer-links h4 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-style: italic;
}

/* ============================================
   Page Headers (Inner Pages)
   ============================================ */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Services Page
   ============================================ */
.service-card {
    padding: 40px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-body);
}

.service-features li::before {
    content: "✓";
    color: var(--accent-primary);
    font-weight: 700;
}

.service-note {
    text-align: center;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    margin-top: 40px;
    color: var(--text-muted);
    font-style: italic;
}

/* Services Intro */
.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.services-system-note {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
}

.services-system-note strong {
    color: var(--accent-secondary);
}

/* Service Badge */
.service-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 6px;
    background: var(--accent-gradient);
    color: white;
    margin-bottom: 16px;
}

.service-badge-secondary {
    background: var(--bg-tertiary);
    color: var(--accent-secondary);
    border: 1px solid var(--border-color);
}

/* Services Customization Note */
.services-customization {
    text-align: center;
    margin-top: 40px;
    padding: 24px 32px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border-left: 4px solid var(--accent-secondary);
}

.services-customization p {
    font-size: 1rem;
    color: var(--text-body);
    font-style: italic;
    margin: 0;
}

/* New Service Block Layout */
.service-block {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-block:last-of-type {
    border-bottom: none;
}

.service-content {
    flex: 1;
}

.service-icon-box {
    width: 56px;
    height: 56px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--text-heading);
}

.service-desc {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 24px;
    max-width: 500px;
    line-height: 1.7;
}

.service-checklist {
    list-style: none;
    margin-bottom: 32px;
}

.service-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-body);
    font-size: 0.95rem;
}

.check-icon {
    color: var(--accent-secondary);
    font-weight: 700;
}

.service-illustration {
    flex-shrink: 0;
}

.illustration-box {
    width: 400px;
    height: 250px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.illustration-icon {
    font-size: 5rem;
    opacity: 0.6;
}

/* Service Highlights Box */
.service-highlights-box {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.08) 0%, rgba(0, 212, 255, 0.08) 100%);
    border: 1px solid rgba(0, 119, 182, 0.15);
    border-radius: 16px;
    padding: 32px;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-row .highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1.4;
}

.highlight-row p {
    color: var(--text-heading);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

/* Animated SVG Illustrations */
.animated-svg {
    width: 100%;
    height: 100%;
    max-width: 200px;
}

/* Chat Animation - Typing dots */
.typing-dot {
    animation: typing-bounce 1.4s ease-in-out infinite;
}

.dot-1 {
    animation-delay: 0s;
}

.dot-2 {
    animation-delay: 0.2s;
}

.dot-3 {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    30% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

.chat-bubble-2 {
    animation: bubble-pop 2s ease-out infinite;
}

@keyframes bubble-pop {

    0%,
    40% {
        opacity: 0;
        transform: translateY(10px) scale(0.9);
    }

    60%,
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.check-circle {
    animation: check-pop 2s ease-out infinite;
}

@keyframes check-pop {

    0%,
    70% {
        opacity: 0;
        transform: scale(0);
    }

    85%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Website Animation - Cursor and elements */
.web-cursor {
    animation: cursor-move 3s ease-in-out infinite;
}

@keyframes cursor-move {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-25px, 10px);
    }
}

.web-button {
    animation: button-pulse 2s ease-in-out infinite;
}

@keyframes button-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.web-line-1 {
    animation: line-load 1.5s ease-out infinite;
}

.web-line-2 {
    animation: line-load 1.5s ease-out 0.2s infinite;
}

.web-line-3 {
    animation: line-load 1.5s ease-out 0.4s infinite;
}

@keyframes line-load {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }

    50%,
    100% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* Chart Animation - Rising bars */
.bar {
    animation: bar-rise 2s ease-out infinite;
    transform-origin: bottom;
}

.bar-1 {
    animation-delay: 0s;
}

.bar-2 {
    animation-delay: 0.15s;
}

.bar-3 {
    animation-delay: 0.3s;
}

.bar-4 {
    animation-delay: 0.45s;
}

@keyframes bar-rise {
    0% {
        transform: scaleY(0);
    }

    40%,
    100% {
        transform: scaleY(1);
    }
}

.chart-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: line-draw 2s ease-out 0.6s infinite;
}

@keyframes line-draw {
    0% {
        stroke-dashoffset: 200;
    }

    50%,
    100% {
        stroke-dashoffset: 0;
    }
}

.chart-dot,
.chart-arrow {
    animation: dot-pop 2s ease-out 1.2s infinite;
}

@keyframes dot-pop {

    0%,
    30% {
        opacity: 0;
        transform: scale(0);
    }

    50%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Service Highlight Card */
.service-highlight {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 119, 182, 0.08));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-highlight p {
    color: var(--text-heading);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* ============================================
   Mobile Responsive
   ============================================ */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links,
    .nav-ctas {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-steps-new {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 3px;
        height: 40px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .problem-list {
        grid-template-columns: 1fr;
    }

    .service-block {
        flex-direction: column;
        padding: 40px 0;
        gap: 30px;
    }

    .service-illustration {
        order: -1;
    }

    .illustration-box {
        width: 100%;
        max-width: 300px;
        height: 160px;
    }

    .service-highlight {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* Demo System Cards Mobile */
    .demo-system-card {
        padding: 24px;
    }

    .demo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .demo-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .demo-system-card h3 {
        font-size: 1.25rem;
    }

    .header .logo {
        height: 80px;
        width: 120px;
    }

    .hero {
        padding: 130px 0 70px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Hero Grid Mobile */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;

    }

    .hero-text {
        text-align: center;
        order: 1;
        width: 100%;
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 2rem;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-image {
        display: none;
    }

    .hero {
        overflow-x: hidden;
    }

    .hero .container {
        overflow-x: hidden;
        padding: 0 16px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-form {
        padding: 32px 24px;
    }

    /* Contact Form Layout Mobile */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h1 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links ul {
        padding: 0;
    }

    .logo img {
        height: 120px;
        width: 120px;
    }

    .footer-logo img {
        height: 120px;
        width: 120px;
    }
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    z-index: 999;
    text-align: center;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    margin-bottom: 40px;
    margin-top: 40px;
}

.mobile-nav li {
    margin-bottom: 16px;
}

.mobile-nav a {
    color: var(--text-heading);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Hide CTA buttons in mobile nav */
.mobile-nav .nav-ctas {
    display: none;
}

/* Hide hero image on mobile */
@media (max-width: 768px) {
    .hero-image {
        display: none;
    }
}

/* ============================================
   Scroll Animations (Framer Motion-style)
   ============================================ */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation variants */
.scroll-animate.hero-content {
    transform: translateY(40px);
}

.scroll-animate.card,
.scroll-animate.demo-card,
.scroll-animate.audience-card {
    transform: translateY(40px) scale(0.95);
}

.scroll-animate-visible.card,
.scroll-animate-visible.demo-card,
.scroll-animate-visible.audience-card {
    transform: translateY(0) scale(1);
}

.scroll-animate.problem-item,
.scroll-animate.included-item {
    transform: translateX(-20px);
}

.scroll-animate-visible.problem-item,
.scroll-animate-visible.included-item {
    transform: translateX(0);
}

.scroll-animate.process-step-new {
    transform: translateY(30px) scale(0.9);
}

.scroll-animate-visible.process-step-new {
    transform: translateY(0) scale(1);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   Thank You Page
   ============================================ */
.thank-you-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon svg {
    width: 50px;
    height: 50px;
    stroke: white;
}

@keyframes successPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(0, 212, 255, 0);
    }
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-subtitle {
    font-size: 1.25rem;
    color: var(--text-heading);
    margin-bottom: 16px;
    font-weight: 500;
}

.thank-you-message {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 40px;
    line-height: 1.7;
}

.thank-you-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}