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

html {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

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

/* Brand link wrapper - clickable logo */
.nav-brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.nav-brand-link:focus {
    outline: none;
}

.nav-brand-link:hover .brand-text,
.nav-brand-link:active .brand-text {
    color: #1d4ed8;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: #111827;
    transition: color 0.2s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #1e40af;
}

/* Kodama Logo Animations */
.kodama-logo svg, .kodama-logo-large svg {
    /* Remove floating animation to let rings rotate independently */
}

.ring-1 {
    animation: rotate 20s linear infinite;
    transform-origin: center;
}

.ring-2 {
    animation: rotate 15s linear infinite reverse;
    transform-origin: center;
}

.ring-3 {
    animation: rotate 25s linear infinite;
    transform-origin: center;
}

.center-dot {
    animation: pulse 4s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

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

/* Buttons */
.btn-primary {
    background: #1e40af;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-primary-large {
    background: #3b82f6;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary-large:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(30, 64, 175, 0.4);
}

.btn-primary-hero {
    background: #1e40af;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary-hero:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
    padding: 1rem 2rem;
    border: 2px solid #1e40af;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(30, 64, 175, 0.2);
}

/* Hero Section */
.hero {
    background:
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(30, 64, 175, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6.48rem 0 4.86rem;
    margin-top: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
    position: relative;
    z-index: 1;
}

.hero-left {
    text-align: left;
}

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

/* Hero Visual Mockup */
.hero-visual {
    position: relative;
}

/* Hero Visual Collage Layout */
.hero-visual-collage {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 450px;
    margin: -60px auto 0;
}

/* Geometric Shapes */
.collage-shape {
    position: absolute;
    z-index: 1;
}

/* Star shape - top left */
.shape-star {
    width: 120px;
    height: 120px;
    background: #3b82f6;
    top: 0;
    left: 0;
    clip-path: polygon(
        50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
        50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
    );
}

/* Circle shape - top center */
.shape-circle {
    width: 180px;
    height: 180px;
    background: #1e40af;
    border-radius: 50%;
    top: 10px;
    left: 110px;
    z-index: 2;
}

/* Circle shape - bottom right */
.shape-rectangle {
    width: 180px;
    height: 180px;
    background: #60a5fa;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    z-index: 1;
}

/* Photo containers */
.collage-photo {
    position: absolute;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

/* Patient photo - bottom left */
.photo-patient {
    width: 280px;
    height: 220px;
    bottom: 40px;
    left: 100px;
    z-index: 4;
}

/* Doctor photo - top right */
.photo-doctor {
    width: 240px;
    height: 200px;
    top: 40px;
    right: 40px;
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.visual-mockup {
    max-width: 550px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.visual-mockup .mockup-screen {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-mockup .mockup-screen:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.2),
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.visual-mockup .mockup-header {
    background: #f8fafc;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.header-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.header-dot.green { background: #10b981; }
.header-dot.yellow { background: #f59e0b; }
.header-dot.red { background: #ef4444; }

.dashboard-content {
    padding: 20px;
}

/* Live Video Call UI */
.live-call-ui {
    background: #111827;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.video-feed-area {
    position: relative;
    aspect-ratio: 16/9;
    background: #1f2937;
}

.main-video {
    position: relative;
    width: 100%;
    height: 100%;
}

.patient-video {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.video-placeholder {
    text-align: center;
    color: white;
}

.patient-avatar-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0 auto 8px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.call-status {
    font-size: 0.75rem;
    opacity: 0.9;
}

.doctor-video-small {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 80px;
    height: 60px;
    background: #374151;
    border-radius: 6px;
    border: 2px solid white;
}

.doctor-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.call-controls {
    background: #f8fafc;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e5e7eb;
}

.patient-info-inline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.patient-name-inline {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.payment-ready {
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 500;
    background: #f0fdf4;
    padding: 2px 8px;
    border-radius: 12px;
}

.charge-button-live {
    background: #10b981;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.charge-button-live:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.workflow-indicator {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step {
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.step.completed {
    background: #f0fdf4;
    color: #166534;
    border-left: 3px solid #10b981;
}

.step.active {
    background: #fef3c7;
    color: #92400e;
    border-left: 3px solid #f59e0b;
}

/* Free Trial Section */
.trial-section {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Abstract Background Shapes */
.trial-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.trial-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
}

.trial-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
    background: linear-gradient(45deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
}

.trial-shape-2 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: -80px;
    background: rgba(34, 197, 94, 0.08);
}

.trial-shape-3 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: 20%;
    background: rgba(168, 85, 247, 0.06);
}

.trial-shape-4 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 30%;
    transform: rotate(45deg);
}

.trial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.trial-content {
    text-align: center;
}

.trial-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #ffffff;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.trial-subtitle {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    color: #ffffff;
    opacity: 1;
    line-height: 1.4;
    font-weight: 500;
    position: relative;
    z-index: 3;
}

.highlight-stat {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-shadow: none;
}

/* Enhanced Benefits Section */
.trial-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.benefit-icon {
    color: #10b981;
    flex-shrink: 0;
}

/* Enhanced Trial Section */
.trial-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.trial-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.trial-accent-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
}

.trial-accent-circle.accent-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
}

.trial-accent-circle.accent-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
}

.trial-accent-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.trial-accent-line.line-1 {
    width: 200px;
    top: 35%;
    right: 20%;
    transform: rotate(25deg);
}

.trial-accent-line.line-2 {
    width: 150px;
    bottom: 30%;
    left: 20%;
    transform: rotate(-20deg);
}

.trial-cta-section {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.trial-form {
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.trial-input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    color: #1f2937;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.trial-input:focus {
    border-color: #10b981;
    background: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.trial-input::placeholder {
    color: #6b7280;
    font-weight: 400;
}

.trial-button-enhanced {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-decoration: none;
    padding: 1.5rem 3.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    letter-spacing: 0.5px;
}



.trial-button-enhanced:hover {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    text-decoration: none;
}

.trust-indicators {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.trial-cta-section .trust-item,
.trial-benefits-section .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 500;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #10b981;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-icon svg {
    width: 17px;
    height: 17px;
}



/* Responsive Trial Section */
@media (max-width: 768px) {
    .trial-header {
        margin-bottom: 3rem;
    }
    
    .trial-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .trial-subtitle {
        font-size: 1rem;
    }
    
    .trial-cta-section {
        gap: 3rem;
    }
    
    .trial-button-enhanced {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .trust-indicators {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .trust-item {
        justify-content: center;
    }
    
    .trial-accent-circle.accent-1 {
        width: 80px;
        height: 80px;
        left: 5%;
    }
    
    .trial-accent-circle.accent-2 {
        width: 60px;
        height: 60px;
        right: 5%;
    }
    
    .trial-accent-line.line-1 {
        width: 120px;
        right: 10%;
    }
    
    .trial-accent-line.line-2 {
        width: 100px;
        left: 10%;
    }
}

/* Keep old trial-button styles for compatibility */
.trial-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.trial-button:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.trial-button:active {
    transform: translateY(-1px);
}

.button-text {
    transition: opacity 0.2s;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Enhanced Notes */
.trial-note {
    margin: 0;
}

.note-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.note-icon {
    color: #10b981;
    flex-shrink: 0;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 1.5rem 0 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-icon {
    color: #10b981;
    flex-shrink: 0;
}

/* Input Validation States */
.trial-input.valid {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.trial-input.invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}

.trial-social-proof {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.proof-stat {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    display: block;
    margin-bottom: 0.5rem;
}

.proof-text {
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 1.25rem;
    line-height: 1.05;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.hero-subtitle {
    font-size: 1.375rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.trust-strip {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding: 0.75rem 1.25rem;
    background: rgba(248, 250, 252, 0.9);
    border-radius: 2rem;
    border: 1px solid rgba(226, 232, 240, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-weight: 600;
    font-size: 0.875rem;
}

.trust-icon {
    font-size: 1.35rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Hero Mockup */
.hero-mockup {
    margin-top: 4rem;
    text-align: center;
}

.mockup-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.mockup-screen {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    min-width: 280px;
    max-width: 320px;
}

.mockup-header {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.875rem;
}

.patient-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.patient-avatar {
    width: 40px;
    height: 40px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.patient-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.consultation-type {
    font-size: 0.75rem;
    color: #6b7280;
}

.charge-button {
    background: #10b981;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s;
}

.charge-button:hover {
    background: #059669;
}

.card-capture {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #dbeafe;
}

.card-icon {
    font-size: 1.5rem;
}

.card-details div:first-child {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.card-status {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 500;
}

.mockup-caption {
    color: #6b7280;
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Section Badge */
.section-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(30, 64, 175, 0.1);
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.section-badge .badge-new {
    background: #1e40af;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Workflow Icons */
.workflow-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.workflow-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    border: 2px solid #1e40af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.2s;
}

.workflow-icon:hover {
    transform: scale(1.05);
}

.workflow-step span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.workflow-arrow {
    color: #9ca3af;
    font-size: 1.5rem;
    font-weight: bold;
}



/* Abstract Hero Background Elements */
.abstract-hero-composition {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Background Geometric Shapes */
.bg-shape {
    position: absolute;
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.bg-circle-large {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 50%;
    top: 10%;
    left: -5%;
    animation-delay: -2s;
}

.bg-circle-medium {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(168, 85, 247, 0.08) 0%, rgba(59, 130, 246, 0.06) 100%);
    border-radius: 50%;
    top: 60%;
    right: -3%;
    animation-delay: -8s;
}

.bg-polygon-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(225deg, rgba(34, 197, 94, 0.08) 0%, rgba(16, 185, 129, 0.05) 100%);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    bottom: 20%;
    left: 15%;
    animation-delay: -5s;
}

.bg-square-rotated {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.06) 0%, rgba(245, 158, 11, 0.04) 100%);
    border-radius: 20%;
    transform: rotate(45deg);
    top: 25%;
    right: 20%;
    animation-delay: -12s;
}

/* Design Ring Elements */
.design-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    animation: rotate 30s linear infinite;
}

.ring-accent-1 {
    width: 180px;
    height: 180px;
    border-color: rgba(30, 64, 175, 0.15);
    top: 15%;
    right: 10%;
    animation-duration: 25s;
}

.ring-accent-2 {
    width: 120px;
    height: 120px;
    border-color: rgba(59, 130, 246, 0.12);
    bottom: 30%;
    left: 8%;
    animation-duration: 35s;
    animation-direction: reverse;
}

.ring-accent-3 {
    width: 80px;
    height: 80px;
    border-color: rgba(16, 185, 129, 0.1);
    top: 45%;
    left: 25%;
    animation-duration: 40s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(0px) translateX(-5px);
    }
    75% {
        transform: translateY(10px) translateX(0px);
    }
}

/* Value Propositions Section */
.value-props {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Abstract Background Elements */
.value-props-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.06));
    backdrop-filter: blur(40px);
}

.shape-circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -150px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(59, 130, 246, 0.08));
}

.shape-circle-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    left: -100px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.06), rgba(34, 197, 94, 0.04));
}

.shape-oval-1 {
    width: 250px;
    height: 180px;
    top: 50%;
    right: 20%;
    border-radius: 40%;
    transform: rotate(-25deg);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.04), rgba(245, 158, 11, 0.06));
}

.connecting-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    height: 2px;
}

.line-1 {
    width: 300px;
    top: 25%;
    left: 15%;
    transform: rotate(15deg);
}

.line-2 {
    width: 200px;
    top: 60%;
    right: 25%;
    transform: rotate(-20deg);
}

.line-3 {
    width: 150px;
    bottom: 30%;
    left: 30%;
    transform: rotate(45deg);
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    border-radius: 30%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.element-1 {
    top: 20%;
    left: 10%;
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite;
}

.element-2 {
    bottom: 25%;
    right: 15%;
    transform: rotate(-30deg);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(45deg); }
    50% { transform: translateY(-15px) rotate(45deg); }
}

.value-prop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 8rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.value-prop:last-child {
    margin-bottom: 0;
}

.value-prop-reverse {
    direction: rtl;
}

.value-prop-reverse > * {
    direction: ltr;
}

.value-prop-content {
    padding: 2rem 0;
    position: relative;
}

.value-prop-content::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: -1rem;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e40af, #10b981);
    border-radius: 2px;
    opacity: 0.6;
}

.value-prop-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.value-prop-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.value-prop-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.value-prop-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: color 0.2s;
    width: fit-content;
}

.value-prop-link:hover {
    color: #059669;
}

.value-prop-link span {
    transition: transform 0.2s;
}

.value-prop-link:hover span {
    transform: translateX(4px);
}

.value-prop-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone Mockup */
.mockup-phone {
    width: 280px;
    height: 500px;
    background: #1f2937;
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}

.screen-header {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.app-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.payment-form {
    padding: 1.5rem;
}

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

.form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.card-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #1f2937;
    background: #f9fafb;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.consultation-info {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.consultation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consultation-label {
    font-weight: 500;
    color: #374151;
}

.consultation-value {
    font-weight: 700;
    font-size: 1.125rem;
    color: #1e40af;
}

.secure-payment-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.secure-payment-btn:hover {
    transform: translateY(-1px);
}

/* Desktop Mockup */
.mockup-desktop {
    width: 400px;
    height: 280px;
    background: #f3f4f6;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.desktop-screen {
    width: 100%;
    height: 100%;
    background: white;
}

.desktop-header {
    background: #f8fafc;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close { background: #ef4444; }
.control.minimize { background: #f59e0b; }
.control.maximize { background: #10b981; }

.browser-bar {
    background: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    flex: 1;
    border: 1px solid #e5e7eb;
}

.url {
    font-size: 0.875rem;
    color: #6b7280;
}

.desktop-content {
    padding: 1.5rem;
}

.appointment-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.appointment-header {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.patient-avatar {
    width: 40px;
    height: 40px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e40af;
}

.patient-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.patient-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.appointment-time {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.appointment-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

.appointment-btn.confirmed {
    background: #10b981;
}

/* Tablet Mockup */
.mockup-tablet {
    width: 320px;
    height: 400px;
    background: #1f2937;
    border-radius: 1.5rem;
    padding: 0.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.notification-popup {
    background: white;
    margin: 2rem;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
    position: relative;
}

.popup-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    display: block;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.action-btn:hover {
    transform: translateY(-1px);
}

.action-btn.available {
    background: #10b981;
    color: white;
}

.action-btn.unavailable {
    background: #f3f4f6;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.practitioner-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.practitioner-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

/* Features Abstract Background Elements */
.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.features-circle-1 {
    width: 350px;
    height: 350px;
    top: -100px;
    left: -150px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.04), rgba(34, 197, 94, 0.06));
}

.features-circle-2 {
    width: 280px;
    height: 280px;
    bottom: -80px;
    right: -120px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.07));
}

.features-line-1 {
    width: 250px;
    top: 30%;
    right: 20%;
    transform: rotate(35deg);
}

.features-line-2 {
    width: 180px;
    bottom: 25%;
    left: 25%;
    transform: rotate(-15deg);
}

.features-element-1 {
    top: 15%;
    right: 12%;
    transform: rotate(15deg);
    animation: float 7s ease-in-out infinite;
}

.features-element-2 {
    bottom: 20%;
    left: 8%;
    transform: rotate(-45deg);
    animation: float 9s ease-in-out infinite reverse;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-image {
    height: 280px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feature-mockup {
    width: 90%;
    max-width: 300px;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    position: relative;
}

.mockup-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.mockup-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

/* Payment Mockup */
.payment-mockup {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
}

.form-field-preview {
    margin-bottom: 1rem;
}

.field-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.field-input {
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    font-size: 0.875rem;
    color: #1f2937;
}

.payment-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    text-align: center;
    margin: 1rem 0;
}

.secure-badge {
    background: #10b981;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

/* Telehealth Mockup */
.telehealth-mockup {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.video-call-preview {
    text-align: center;
}

.video-participant {
    margin-bottom: 1rem;
}

.participant-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.participant-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

.call-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.control-btn {
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: background 0.2s;
}

.control-btn.active {
    background: #10b981;
}

.call-status {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 500;
}

/* Broadcast Mockup */
.broadcast-mockup {
    background: linear-gradient(135deg, #fefbf3 0%, #fef3c7 100%);
}

.message-preview {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-left: 3px solid #f59e0b;
}

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

.message-icon {
    font-size: 1rem;
}

.message-header span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
}

.message-content {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.4;
}

.broadcast-stats {
    text-align: center;
}

.stat {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 500;
}

/* Compliance Mockup */
.compliance-mockup {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.compliance-badges {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.badge {
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.6rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.badge.australian {
    color: #1e40af;
    border-color: #3b82f6;
}

.badge.secure {
    color: #059669;
    border-color: #10b981;
}

.badge.encrypted {
    color: #7c3aed;
    border-color: #8b5cf6;
}

.audit-log {
    background: white;
    border-radius: 0.25rem;
    padding: 0.5rem;
}

.log-entry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.625rem;
}

.timestamp {
    color: #6b7280;
    font-weight: 500;
}

.action {
    color: #374151;
}

.status.success {
    color: #10b981;
    font-weight: 600;
}

/* Feature Card Content */
.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 1.5rem 2rem 1rem 2rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0 2rem 1.5rem 2rem;
    font-size: 1rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0 2rem 2rem 2rem;
    transition: color 0.2s;
}

.feature-link:hover {
    color: #059669;
}

.feature-link span {
    transition: transform 0.2s;
}

.feature-link:hover span {
    transform: translateX(4px);
}

.featured-card h3 {
    color: #1e40af;
}



/* CSS Variables */
:root {
    /* Brand */
    --brand-900: #0f2a6b;
    --brand-800: #153e90;
    --brand-700: #1e40af; /* primary */
    --brand-600: #1d4ed8;
    --brand-500: #3b82f6;
    --brand-400: #60a5fa;

    /* Neutrals */
    --bg: #f7f9fc;
    --card: #ffffff;
    --ink: #0f172a;
    --ink-2: #334155;
    --ink-3: #64748b;
    --line: #e6ebf2;
    --shadow: 0 10px 30px rgba(16,24,40,.06), 0 4px 10px rgba(16,24,40,.04);

    /* Accents */
    --success: #16a34a;
    --warning: #f59e0b;
    --ring: 0 0 0 4px rgba(29,78,216,.12);
    --radius: 20px;
}

/* Pricing Section */
.pricing-section {
    background: 
        radial-gradient(1000px 800px at 15% 25%, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 40%, transparent 70%),
        radial-gradient(1200px 400px at 50% 85%, rgba(30, 64, 175, 0.1) 0%, rgba(30, 64, 175, 0.03) 40%, transparent 70%),
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(30, 64, 175, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(600px 600px at 20% 60%, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.02) 40%, transparent 70%),
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Pricing Abstract Composition */
.pricing-abstract-composition {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Pricing Background Shapes */
.pricing-bg-shape {
    position: absolute;
    opacity: 0.8;
}

.pricing-bg-circle-large {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(30, 64, 175, 0.15) 100%);
    border-radius: 50%;
    top: 5%;
    left: -8%;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.pricing-bg-circle-medium {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, rgba(168, 85, 247, 0.18) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-radius: 50%;
    bottom: 2%;
    right: -6%;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.pricing-bg-polygon-1 {
    display: none;
}

.pricing-bg-square-rotated {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.15) 0%, rgba(245, 158, 11, 0.12) 100%);
    border-radius: 25%;
    transform: rotate(45deg);
    bottom: 10%;
    left: 2%;
    border: 1px solid rgba(249, 115, 22, 0.1);
}

/* Additional layered shapes for enhanced visual weight */
.pricing-bg-circle-overlay {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(139, 92, 246, 0.06) 100%);
    border-radius: 50%;
    top: 25%;
    right: -10%;
    opacity: 0.7;
}

.pricing-bg-circle-flow {
    width: 180px;
    height: 180px;
    background: linear-gradient(225deg, rgba(59, 130, 246, 0.12) 0%, rgba(30, 64, 175, 0.08) 100%);
    border-radius: 50%;
    top: 60%;
    left: 15%;
    opacity: 0.6;
}

.pricing-bg-rectangle-accent {
    width: 120px;
    height: 200px;
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.08) 100%);
    border-radius: 60px;
    transform: rotate(-15deg);
    bottom: 5%;
    right: 25%;
    opacity: 0.5;
}

.pricing-bg-circle-small {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(34, 197, 94, 0.12) 100%);
    border-radius: 50%;
    top: 8%;
    right: 15%;
    opacity: 0.4;
}

.pricing-bg-circle-center {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(139, 92, 246, 0.04) 100%);
    border-radius: 50%;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.8;
    border: 1px solid rgba(59, 130, 246, 0.08);
}

/* Pricing Design Ring Elements */
.pricing-design-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    opacity: 0.4;
}

.pricing-ring-accent-1 {
    width: 160px;
    height: 160px;
    border-color: rgba(30, 64, 175, 0.25);
    top: 15%;
    right: -3%;
}

.pricing-ring-accent-2 {
    width: 110px;
    height: 110px;
    border-color: rgba(59, 130, 246, 0.22);
    bottom: 15%;
    left: -3%;
}

.pricing-ring-accent-3 {
    width: 80px;
    height: 80px;
    border-color: rgba(168, 85, 247, 0.2);
    top: 55%;
    right: 8%;
}

.pricing-ring-accent-4 {
    width: 220px;
    height: 220px;
    border-color: rgba(245, 158, 11, 0.15);
    top: 45%;
    left: 25%;
    border-width: 2px;
}

.pricing-ring-accent-5 {
    width: 60px;
    height: 60px;
    border-color: rgba(16, 185, 129, 0.18);
    bottom: 25%;
    right: 12%;
    border-width: 2px;
}

.pricing-header {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 40px);
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--brand-700);
    background: linear-gradient(90deg, rgba(59,130,246,.12), rgba(29,78,216,.12));
    border: 1px solid rgba(30,64,175,.15);
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.pricing-title {
    margin: 0.75rem 0 0.5rem;
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.pricing-sub {
    margin: 0 auto;
    max-width: 720px;
    color: var(--ink-3);
    font-size: clamp(14px, 1.6vw, 16px);
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin: 24px auto 0;
    user-select: none;
}

.switch {
    position: relative;
    width: 64px;
    height: 34px;
    background: #e8eefb;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid rgba(30,64,175,.18);
    transition: 0.2s ease;
    padding: 0;
    outline: none;
}

.switch:hover {
    box-shadow: 0 0 0 4px rgba(29,78,216,.12);
}

.switch input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.knob {
    position: absolute;
    top: 50%;
    left: 3px;
    height: 26px;
    width: 26px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff, #f3f6fb);
    border: 1px solid #d9e2f2;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
    transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-50%);
}

.switch[data-checked="true"] .knob {
    transform: translateX(32px) translateY(-50%);
}

.toggle-label {
    font-weight: 600;
    color: #334155;
    font-size: 14px;
}

.save-pill {
    margin-left: 0.25rem;
    color: #065f46;
    background: #d1fae5;
    border: 1px solid #86efac;
    font-size: 12px;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(16px, 2vw, 20px);
    margin-top: clamp(24px, 3vw, 32px);
    position: relative;
    z-index: 2;
}

/* Plan Cards */
/* New Pricing Grid Layout */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: #3b82f6;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.plan-description {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 32px;
}

.price-container {
    margin-bottom: 32px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.price-note {
    font-size: 0.875rem;
    color: #9ca3af;
}

.pricing-card .features-list {
    list-style: none;
    margin-bottom: 32px;
    display: block;
}

.pricing-card .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
    font-size: 0.95rem;
    color: #374151;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-icon svg {
    width: 12px;
    height: 12px;
    stroke: #3b82f6;
    stroke-width: 3;
    fill: none;
}

.pricing-card .cta-button {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: white;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.pricing-card .cta-button:hover {
    background: #3b82f6;
    color: white;
}

.pricing-card.featured .cta-button {
    background: #3b82f6;
    color: white;
}

.pricing-card.featured .cta-button:hover {
    background: #2563eb;
}

.pricing-card.enterprise .cta-button {
    background: #111827;
    color: white;
    border-color: #111827;
}

.pricing-card.enterprise .cta-button:hover {
    background: #000;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.cta-button.primary {
    background: white;
    color: #1e40af;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: #1e40af;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Pricing CTA Section */
.pricing-cta {
    margin-top: 0;
    padding: 6rem 3rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.pricing-cta-content {
    position: relative;
    z-index: 1;
}

.pricing-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.pricing-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.cta-button.primary {
    background: white;
    color: #1e40af;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: #1e40af;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-section {
        padding: 6rem 0;
        margin-top: 2rem;
    }
    
    .pricing-header {
        margin-bottom: 2rem;
    }
    
    /* Pricing Abstract Elements - Mobile */
    .pricing-bg-circle-large {
        width: 220px;
        height: 220px;
        top: 2%;
        left: -12%;
    }
    
    .pricing-bg-circle-medium {
        width: 180px;
        height: 180px;
        bottom: -2%;
        right: -10%;
    }
    
    .pricing-bg-polygon-1 {
        display: none;
    }
    
    .pricing-bg-square-rotated {
        width: 70px;
        height: 70px;
        bottom: 8%;
        left: -2%;
    }
    
    .pricing-ring-accent-1 {
        width: 120px;
        height: 120px;
        top: 12%;
        right: -6%;
    }
    
    .pricing-ring-accent-2 {
        width: 90px;
        height: 90px;
        bottom: 12%;
        left: -6%;
    }
    
    .pricing-ring-accent-3 {
        width: 60px;
        height: 60px;
        top: 50%;
        right: 5%;
    }
    
    /* Additional layered shapes - Mobile */
    .pricing-bg-circle-overlay {
        width: 280px;
        height: 280px;
        top: 20%;
        right: -15%;
    }
    
    .pricing-bg-circle-flow {
        width: 120px;
        height: 120px;
        top: 65%;
        left: 10%;
    }
    
    .pricing-bg-rectangle-accent {
        width: 80px;
        height: 140px;
        bottom: 2%;
        right: 20%;
    }
    
    .pricing-bg-circle-small {
        width: 60px;
        height: 60px;
        top: 5%;
        right: 10%;
    }
    
    .pricing-ring-accent-4 {
        width: 160px;
        height: 160px;
        top: 40%;
        left: 20%;
    }
    
    .pricing-ring-accent-5 {
        width: 45px;
        height: 45px;
        bottom: 20%;
        right: 8%;
    }
    
    .pricing-bg-circle-center {
        width: 250px;
        height: 250px;
        top: 25%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .plan.popular {
        transform: translateY(0);
    }
    
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h3 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    /* Adjust background gradients for mobile */
    .pricing-section {
        background: 
            radial-gradient(600px 400px at 10% 20%, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.04) 40%, transparent 70%),
            radial-gradient(500px 300px at 90% 30%, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.03) 40%, transparent 70%),
            radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
            linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
}

.benefit-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    color: #1f2937;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 100%;
}

.contact-form h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-note {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand .brand-text {
    color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Abstract Hero Composition */
.abstract-hero-composition {
    position: relative;
    width: 600px;
    height: 450px;
    margin: 0 auto;
    overflow: visible;
}

/* Background geometric shapes */
.bg-shape {
    position: absolute;
    opacity: 0.08;
    z-index: 1;
}

.bg-circle-large {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 50%;
    top: -80px;
    right: -100px;
}

.bg-polygon-1 {
    width: 140px;
    height: 140px;
    background: #10b981;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    top: 50px;
    left: -20px;
    opacity: 0.12;
}

.bg-circle-medium {
    width: 220px;
    height: 220px;
    background: linear-gradient(45deg, #f59e0b, #f97316);
    border-radius: 50%;
    bottom: -50px;
    left: -80px;
}

.bg-square-rotated {
    width: 120px;
    height: 120px;
    background: #ef4444;
    transform: rotate(45deg);
    bottom: 150px;
    right: 80px;
    opacity: 0.1;
}

/* Kodama ring design motifs */
.design-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0.15;
    z-index: 2;
}

.ring-accent-1 {
    width: 250px;
    height: 250px;
    border-color: #3b82f6;
    top: -20px;
    left: 30px;
}

.ring-accent-2 {
    width: 180px;
    height: 180px;
    border-color: #1e40af;
    top: 220px;
    right: 50px;
}

.ring-accent-3 {
    width: 120px;
    height: 120px;
    border-color: #1d4ed8;
    top: 120px;
    left: 250px;
}

/* UI Mockups */
.ui-mockup {
    position: absolute;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 10;
}

/* Payment Interface Mockup */
.payment-interface {
    width: 260px;
    padding: 20px;
    top: 50px;
    left: 25%;
    z-index: 5;
}

/* Queue Interface Mockup */
.queue-interface {
    width: 280px;
    padding: 24px 24px 18px 24px;
    bottom: 50px;
    right: 25%;
    text-align: center;
    z-index: 5;
}

.doctor-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.doctor-avatar {
    width: 40px;
    height: 40px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-details {
    flex: 1;
}

.doctor-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.doctor-specialty {
    font-size: 0.8rem;
    color: #6b7280;
}

.queue-position {
    text-align: right;
}

.position-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3b82f6;
    display: block;
}

.position-label {
    font-size: 0.7rem;
    color: #6b7280;
}

.queue-status {
    text-align: center;
    margin-bottom: 20px;
}

.queue-status h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.queue-status p {
    font-size: 0.85rem;
    color: #6b7280;
}

.queue-icon-large {
    width: 70px;
    height: 70px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.notification-card {
    background: #f0f9ff;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.notification-icon {
    font-size: 1.1rem;
    opacity: 0.8;
}

.notification-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.notification-subtitle {
    font-size: 0.75rem;
    color: #6b7280;
}

.payment-header {
    text-align: center;
    margin-bottom: 20px;
}

.payment-icon {
    width: 48px;
    height: 48px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.payment-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.payment-header p {
    font-size: 0.8rem;
    color: #6b7280;
}

.fee-display {
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.fee-label {
    font-size: 0.85rem;
    color: #6b7280;
}

.fee-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3b82f6;
}

.payment-method {
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 12px;
    background: #f0fdf4;
}

.card-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.card-brand {
    background: #1e40af;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.card-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2937;
}

.card-expiry {
    font-size: 0.75rem;
    color: #6b7280;
    margin-left: auto;
}

.security-note {
    font-size: 0.75rem;
    color: #059669;
    text-align: center;
    padding: 6px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 6px;
}

/* Patient Photo */
.patient-photo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 15;
    width: 160px;
    height: 160px;
}

.patient-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 0 4px #1e40af,
        0 0 20px rgba(30, 64, 175, 0.3);
    border: none;
    background: linear-gradient(145deg, #e2e8f0, #cbd5e1);
}

.patient-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    border: none;
    display: block;
}

/* Connection Lines */
.connection-line {
    position: absolute;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    border-radius: 2px;
    opacity: 0.2;
    z-index: 3;
}

.line-1 {
    width: 2px;
    height: 100px;
    top: 150px;
    left: 200px;
    transform: rotate(25deg);
}

.line-2 {
    width: 2px;
    height: 80px;
    top: 280px;
    right: 180px;
    transform: rotate(-35deg);
}

/* Doctor Photo */
.doctor-photo {
    position: absolute;
    top: 25%;
    left: 58%;
    transform: translate(-50%, -50%);
    z-index: 12;
    width: 200px;
    height: 200px;
}

.doctor-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    border: none;
    display: block;
}

/* Fallback when image fails to load */
.doctor-img:not([src]), 
.doctor-img[src=""] {
    background: linear-gradient(145deg, #3b82f6, #1e40af);
    min-height: 140px;
    min-width: 140px;
}

/* Debug styling to make the container visible */
.doctor-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 0 4px #1e40af,
        0 0 20px rgba(30, 64, 175, 0.3);
    border: none;
    background: linear-gradient(145deg, #e2e8f0, #cbd5e1);
}



/* Workflow results */
.workflow-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.result-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.result-stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

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

@keyframes gentleRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile Responsiveness for Abstract Hero */
@media (max-width: 768px) {
    .abstract-hero-composition {
        width: 100%;
        height: 400px;
        margin-top: 2rem;
    }
    
    .ui-mockup {
        transform: scale(0.85);
        transform-origin: center;
    }
    
    .payment-interface {
        width: 220px;
        padding: 16px;
        top: 20px;
        left: 20px;
    }
    
    .queue-interface {
        width: 240px;
        padding: 16px;
        top: 200px;
        right: 10px;
    }
    
    .bg-circle-large {
        width: 250px;
        height: 250px;
        top: -60px;
        right: -80px;
    }
    
    .bg-circle-medium {
        width: 160px;
        height: 160px;
        bottom: -40px;
        left: -60px;
    }
    
    .bg-polygon-1 {
        width: 100px;
        height: 100px;
    }
    
    .bg-square-rotated {
        width: 80px;
        height: 80px;
    }
    
    .design-ring {
        opacity: 0.1;
    }
    
    .ring-accent-1 {
        width: 200px;
        height: 200px;
    }
    
    .ring-accent-2 {
        width: 140px;
        height: 140px;
    }
    
    .ring-accent-3 {
        width: 100px;
        height: 100px;
    }
    
    .doctor-photo {
        transform: translate(-50%, -50%) scale(0.7);
        width: 120px;
        height: 120px;
        top: 20%;
        left: 56%;
    }
}

.patient-label {
    font-size: 0.65rem;
    color: #6b7280;
}

.consultation-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 6px;
}

.controls-left {
    display: flex;
    gap: 6px;
}

.control-btn.active {
    background: #dbeafe;
    border-radius: 4px;
    padding: 4px 6px;
    font-size: 0.75rem;
}

.payment-ready {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-status-live {
    font-size: 0.7rem;
    color: #059669;
    font-weight: 500;
}

.charge-btn-live {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.charge-btn-live:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Enhanced Mockup Styles for Integrated Consultation UI */
.consultation-header {
    background: #f8fafc;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.75rem;
}

.status-badge {
    color: #059669;
    font-weight: 600;
    background: #d1fae5;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
}

.call-timer {
    color: #6b7280;
    font-weight: 500;
}

.video-thumbnail {
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.patient-avatar {
    font-size: 2rem;
    margin-bottom: 4px;
}

.patient-name {
    font-weight: 600;
    font-size: 0.8rem;
    margin: 4px 0;
}

.video-indicator {
    font-size: 0.65rem;
    opacity: 0.9;
    background: rgba(239, 68, 68, 0.9);
    padding: 1px 6px;
    border-radius: 8px;
    font-weight: 500;
}

.doctor-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.call-controls-integrated {
    background: #f8fafc;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
}

.control-section {
    display: flex;
    gap: 8px;
}

.control-btn.active {
    background: #dbeafe;
    border-radius: 4px;
    padding: 4px 6px;
    font-size: 0.75rem;
}

.payment-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-status {
    font-size: 0.7rem;
    color: #059669;
    font-weight: 500;
}

.charge-btn-integrated {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.charge-btn-integrated:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.workflow-progress {
    background: white;
    padding: 8px 12px;
    border-top: 1px solid #e5e7eb;
}

.progress-step {
    font-size: 0.65rem;
    color: #6b7280;
    margin: 2px 0;
}

.progress-step.completed {
    color: #059669;
}

.progress-step.current {
    color: #3b82f6;
    font-weight: 600;
}

/* Social Proof Strip */
.social-proof-strip {
    background: rgba(248, 250, 252, 0.6);
    border-top: 1px solid rgba(226, 232, 240, 0.3);
    padding: 1rem 0;
    margin-top: 2rem;
}

.social-proof-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.social-proof-text {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .btn-primary-large,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .visual-mockup {
        max-width: 400px;
    }
    
    /* Mobile Workflow Montage Adjustments */
    .workflow-montage {
        height: 500px;
        max-width: 350px;
    }
    
    .queue-layer {
        top: 150px;
        left: -10px;
        width: 90%;
    }
    
    .payment-layer {
        top: 80px;
        right: -15px;
        width: 85%;
    }
    
    .consultation-layer {
        top: 0;
        left: 10px;
        width: 85%;
    }
    
    .mockup-card {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    

    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .featured-card {
        transform: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mockup-container {
        flex-direction: column;
        align-items: center;
    }
    
    .mockup-screen {
        min-width: 240px;
        max-width: 280px;
    }
    
    .workflow-icons {
        gap: 1rem;
    }
    
    .workflow-arrow {
        display: none;
    }
    
    .trust-strip {
        gap: 1.5rem;
        padding: 0.75rem 1rem;
    }
    
    .trust-item {
        font-size: 0.75rem;
        gap: 0.5rem;
    }
    
    .trust-icon {
        font-size: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .trust-strip {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        gap: 1rem;
        padding: 0.5rem 0.75rem;
    }
    
    .trust-item {
        font-size: 0.75rem;
        gap: 0.5rem;
    }
    
    .hero-visual {
        transform: none;
        margin-top: 2rem;
    }
    
    .visual-mockup {
        max-width: 320px;
    }
    
    .dashboard-content {
        padding: 16px;
    }
    
    .patient-card-hero {
        padding: 16px;
    }
    
    .payment-capture {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .charge-button-hero {
        width: 100%;
        text-align: center;
    }
    
    .live-call-ui {
        margin-bottom: 12px;
    }
    
    .patient-avatar-large {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    .doctor-video-small {
        width: 60px;
        height: 45px;
        bottom: 8px;
        right: 8px;
    }
    
    .call-controls {
        padding: 8px 12px;
    }
    
    .patient-info-inline {
        gap: 8px;
    }
    
    .workflow-indicator {
        gap: 6px;
    }
    
    .step {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    /* Trial Section Mobile */
    .trial-section {
        padding: 4rem 0;
    }
    
    .trial-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .trial-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .trial-benefits {
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .benefit-item {
        font-size: 0.875rem;
    }
    
    .trial-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 1rem;
        max-width: none;
    }
    
    .trial-input,
    .trial-button {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .note-items {
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }
    
    .note-item {
        font-size: 0.875rem;
    }
    
    .privacy-note {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    /* Adjust background shapes for mobile */
    .trial-shape-1 {
        width: 200px;
        height: 200px;
        top: -100px;
        left: -60px;
    }
    
    .trial-shape-2 {
        width: 150px;
        height: 150px;
        right: -50px;
    }
    
    .trial-shape-3 {
        width: 120px;
        height: 120px;
        bottom: -60px;
    }
    
    .trial-shape-4 {
        width: 100px;
        height: 100px;
    }
    
    /* Value Props Mobile */
    .value-props {
        padding: 4rem 0;
    }
    
    .value-prop {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 5rem;
        text-align: center;
    }
    
    .value-prop-reverse {
        direction: ltr;
    }
    
    .value-prop-title {
        font-size: 1.875rem;
    }
    
    .value-prop-description {
        font-size: 1.125rem;
    }
    
    .value-prop-links {
        align-items: center;
    }
    
    /* Mobile Mockups */
    .mockup-phone {
        width: 240px;
        height: 420px;
        padding: 0.75rem;
    }
    
    .mockup-desktop {
        width: 320px;
        height: 220px;
    }
    
    .desktop-content {
        padding: 1rem;
    }
    
    .appointment-header {
        padding: 0.75rem 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }
    
    .mockup-tablet {
        width: 280px;
        height: 350px;
    }
    
    .practitioner-photo {
        width: 100px;
        height: 100px;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-image {
        height: 220px;
    }
    
    .feature-mockup {
        width: 85%;
        max-width: 280px;
        padding: 1rem;
    }
    
    .participant-avatar {
        width: 50px;
        height: 50px;
    }
    
    .payment-amount {
        font-size: 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
        margin: 1rem 1.5rem 0.75rem 1.5rem;
    }
    
    .feature-card p {
        margin: 0 1.5rem 1rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .feature-link {
        margin: 0 1.5rem 1.5rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .trial-title {
        font-size: 2rem;
    }
    
    .trial-subtitle {
        font-size: 1.125rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .trial-input {
        width: 100%;
    }
    
    .trial-button {
        width: 100%;
    }
    
    .trial-social-proof {
        gap: 1.5rem;
    }
    
    .proof-stat {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

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

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .logo-svg .ring-1, .logo-svg .ring-2, .logo-svg .ring-3,
    .logo-svg-large .ring-1, .logo-svg-large .ring-2, .logo-svg-large .ring-3 {
        animation: none;
    }
    
    .logo-svg .center-dot, .logo-svg-large .center-dot {
        animation: none;
    }
    
    .kodama-logo svg, .kodama-logo-large svg {
        animation: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
}

/* Clean, professional styling without background elements */

.features-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-text {
    color: #1e40af;
}

.features-subtitle {
    font-size: 1.125rem;
    color: #4b5563;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.feature-block.feature-reverse .feature-content {
    order: 2;
}

.feature-block.feature-reverse .feature-visual {
    order: 1;
}

.feature-content {
    max-width: 500px;
    position: relative;
}

/* Small blue accent line above each feature title */
.feature-content::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 0;
    width: 60px;
    height: 3px;
    background: #93c5fd;
    border-radius: 2px;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
    color: #1e40af;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.feature-visual:has(.payment-flow-feature-container) {
    display: block !important;
    align-items: unset !important;
    justify-content: unset !important;
}

.feature-visual .abstract-hero-composition {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 auto;
    overflow: visible;
    background: white;
}

/* Payment Flow Feature Section - Exact Copy from test.html */
.payment-flow-feature-container {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 0 auto;
    overflow: visible;
    background: white;
}

/* UI Mockups */
.payment-flow-feature-container .ui-mockup {
    position: absolute;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 10;
}

/* Payment Interface Mockup */
.payment-flow-feature-container .payment-interface {
    width: 260px;
    padding: 20px;
    top: 50px;
    left: 10%;
    z-index: 5;
}

.payment-flow-feature-container .payment-header {
    text-align: center;
    margin-bottom: 20px;
}

.payment-flow-feature-container .payment-icon {
    width: 48px;
    height: 48px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.payment-flow-feature-container .payment-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.payment-flow-feature-container .payment-header p {
    font-size: 0.8rem;
    color: #6b7280;
}

.payment-flow-feature-container .fee-display {
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.payment-flow-feature-container .fee-label {
    font-size: 0.85rem;
    color: #6b7280;
}

.payment-flow-feature-container .fee-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #3b82f6;
}

.payment-flow-feature-container .payment-method {
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 12px;
    background: #f0fdf4;
}

.payment-flow-feature-container .card-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.payment-flow-feature-container .card-brand {
    background: #1e40af;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.payment-flow-feature-container .card-number {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2937;
}

.payment-flow-feature-container .card-expiry {
    font-size: 0.75rem;
    color: #6b7280;
    margin-left: auto;
    display: block;
    margin-top: 4px;
}

.payment-flow-feature-container .payment-security {
    margin-top: 8px;
}

.payment-flow-feature-container .security-note {
    font-size: 0.7rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Patient Photo */
.payment-flow-feature-container .patient-photo {
    position: absolute;
    top: 45%;
    left: 70%;
    transform: translate(-50%, -50%);
    z-index: 15;
    width: 128px;
    height: 128px;
}

.payment-flow-feature-container .patient-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.15),
        0 0 0 4px #1e40af,
        0 0 20px rgba(30, 64, 175, 0.3);
    border: none;
    background: linear-gradient(145deg, #e2e8f0, #cbd5e1);
}

.payment-flow-feature-container .patient-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    border: none;
    display: block;
}

/* Queue Interface Mockup */
.payment-flow-feature-container .queue-interface {
    width: 280px;
    padding: 24px 24px 18px 24px;
    bottom: 50px;
    right: 10%;
    text-align: center;
    z-index: 5;
    transform: scale(0.8);
    transform-origin: bottom right;
}

.payment-flow-feature-container .queue-icon-large {
    width: 70px;
    height: 70px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.payment-flow-feature-container .mockup-header {
    margin-bottom: 20px;
}

.payment-flow-feature-container .queue-status {
    margin-bottom: 16px;
}

.payment-flow-feature-container .queue-status h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.payment-flow-feature-container .queue-status p {
    font-size: 0.8rem;
    color: #6b7280;
}

.feature-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-description {
    color: #374151;
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0;
}

.feature-benefits .benefit {
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-benefits .benefit::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    font-size: 0.875rem;
    width: 20px;
    height: 20px;
    background: #f0fdf4;
    border: 1px solid #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Feature Mockups */
.feature-mockup {
    width: 350px;
    height: 280px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.feature-mockup:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.06),
        0 6px 15px rgba(0, 0, 0, 0.04);
}

.mockup-content {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Payment Visual */
.payment-visual {
    background: #f8fafc;
    position: relative;
}

.payment-visual .mockup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: #1e40af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.payment-title {
    font-weight: 700;
    color: #1f2937;
    font-size: 1.25rem;
    line-height: 1.2;
    margin: 0;
}

.payment-subtitle {
    font-weight: 500;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Dashboard Visual */
.dashboard-visual {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.125rem;
}

.dashboard-status {
    color: #1e40af;
    font-weight: 600;
    font-size: 0.875rem;
}

.appointment-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.appointment-item {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(220, 252, 231, 0.5);
}

.appointment-time {
    font-weight: 600;
    color: #1e40af;
    font-size: 0.875rem;
    min-width: 70px;
}

.appointment-patient {
    flex: 1;
    font-weight: 500;
    color: #1f2937;
}

.appointment-status.confirmed {
    color: #1e40af;
    font-weight: 600;
}

/* Communication Visual */
.communication-visual {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.notification-popup {
    background: white;
    border-radius: 0.75rem;
    padding: 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(254, 243, 199, 0.5);
}

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

.notification-icon {
    font-size: 1.25rem;
}

.notification-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
}

.notification-message {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.notification-actions {
    display: flex;
    gap: 0.5rem;
}

.notification-button {
    flex: 1;
    padding: 0.625rem;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

.notification-button.confirm {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
}

.notification-button.reschedule {
    background: #f3f4f6;
    color: #6b7280;
}

/* Security Visual */
.security-visual {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.security-icon {
    font-size: 1.25rem;
}

.security-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.125rem;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.security-badge {
    background: white;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.security-badge.hipaa {
    color: #1e40af;
    border-color: #3b82f6;
}

.security-badge.encrypted {
    color: #1e40af;
    border-color: #3b82f6;
}

.security-badge.secure {
    color: #7c3aed;
    border-color: #8b5cf6;
}

.security-status {
    color: #1e40af;
    font-weight: 600;
    text-align: center;
    font-size: 0.875rem;
    margin-top: auto;
}

/* Responsive Features */
@media (max-width: 768px) {
    .features-section {
        padding: 6rem 0;
    }
    
    .features-header {
        margin-bottom: 4rem;
    }
    
    .features-list {
        gap: 6rem;
    }
    
    .feature-block,
    .feature-block.feature-reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .feature-block.feature-reverse .feature-content {
        order: unset;
    }
    
    .feature-block.feature-reverse .feature-visual {
        order: unset;
    }
    
    .feature-content {
        max-width: none;
    }
    
    .feature-content::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .feature-icon {
        margin: 1rem auto 1.5rem auto;
    }
    
    .feature-mockup {
        width: 320px;
        height: 240px;
        margin: 0 auto;
        max-width: 100%;
    }
}
/* Receptionist Visual - Flexible Routing */
.receptionist-visual-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 40px;
    padding-right: 40px;
}

.receptionist-image-container {
    position: relative;
    width: 100%;
    border: none;
    border-radius: 12px;
    overflow: visible;
}

.receptionist-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.doctor-tiles-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 60%;
    max-width: 220px;
}

.doctor-tile {
    background: white;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.doctor-tile.selected {
    background: #1e40af;
    color: white;
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.3);
}

.doctor-tile-name {
    flex: 1;
}

.doctor-tile-check {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-tile-check svg {
    width: 16px;
    height: 16px;
}

/* Clinic Overview - See Entire Clinic at a Glance */
.clinic-overview-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: 500px;
}

.doctor-image-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 6px solid #3b82f6;
    overflow: hidden;
    box-shadow: 0 0 0 20px rgba(59, 130, 246, 0.15),
                0 0 0 40px rgba(59, 130, 246, 0.08),
                0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.doctor-image-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.doctor-patient-group {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.doctor-patient-group.top-left {
    left: 100px;
    top: 120px;
}

.doctor-patient-group.top-right {
    right: 100px;
    top: 120px;
}

.doctor-patient-group.bottom {
    left: 50%;
    transform: translateX(-50%);
    bottom: 90px;
}

.doctor-name-badge {
    background: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.patient-status-card {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    text-align: center;
}

.patient-name {
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 6px;
}

.patient-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
}

.patient-status.waiting {
    color: #3b82f6;
}

.patient-status.active {
    color: #10b981;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.waiting {
    background: #3b82f6;
}

.status-dot.active {
    background: #10b981;
    animation: pulse 2s infinite;
}
