/* ========================================
   VetSyCare "Why Us" Page Styles
   Premium marketing landing page design
   ======================================== */

/* Hero Section - Bold & Attention Grabbing */
.why-hero {
    background: linear-gradient(135deg, #1a3331 0%, #2F5855 50%, #1a3331 100%);
    padding: 140px 20px 120px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge-wrapper {
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #C98572 0%, #d9a090 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(201, 133, 114, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

.why-hero h1 {
    color: white;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, #C98572 0%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-accent {
    background: linear-gradient(135deg, #2F5855 0%, #3d6f6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #C98572 0%, #d9a090 100%);
    color: white;
    border: none;
    box-shadow: 0 15px 40px rgba(201, 133, 114, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(201, 133, 114, 0.5);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-cta-white {
    background: white;
    color: #2F5855;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: #C98572;
    top: -200px;
    right: -200px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: #C98572;
    bottom: -100px;
    left: -100px;
}

.circle-3 {
    width: 300px;
    height: 300px;
    background: white;
    top: 50%;
    left: 10%;
}

/* Pain Points Section */
.pain-section {
    padding: 100px 20px;
    background: #F8F9FA;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.pain-card {
    background: white;
    border-radius: 20px;
    padding: 36px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #EF4444, #F97316);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pain-card:hover {
    border-color: #EF4444;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.1);
}

.pain-card:hover::before {
    opacity: 1;
}

.pain-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #FEF2F2;
    color: #EF4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.pain-card > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pain-impact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #FEF2F2;
    color: #991B1B;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Features Highlight Section */
.features-highlight {
    padding: 100px 20px;
    background: white;
}

.badge-accent {
    background: rgba(201, 133, 114, 0.1);
    color: #C98572;
}

/* Feature Showcase */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 120px;
    padding-bottom: 120px;
    border-bottom: 1px solid #E5E7EB;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-showcase.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-showcase:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-showcase.reverse {
    direction: rtl;
}

.feature-showcase.reverse .feature-showcase-content,
.feature-showcase.reverse .feature-showcase-visual {
    direction: ltr;
}

.feature-number {
    font-size: 5rem;
    font-weight: 900;
    color: #E5E7EB;
    line-height: 1;
    margin-bottom: 16px;
}

.feature-exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #F59E0B 0%, #EAB308 100%);
    color: white;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.feature-showcase-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1F2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-description {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 32px;
}

.feature-benefits {
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
}

.benefit-item i {
    color: #10B981;
    font-size: 1.25rem;
    margin-top: 2px;
}

.benefit-item span {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.5;
}

.time-saved-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.time-saved-badge i {
    font-size: 1.35rem;
}

/* Dual Access Badge */
.dual-access-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E5E7EB 100%);
    border-radius: 12px;
    border: 2px solid #E5E7EB;
}

.access-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1F2937;
    font-weight: 600;
}

.access-item i {
    color: #2F5855;
    font-size: 1.25rem;
}

.access-divider {
    color: #10B981;
    font-size: 1.25rem;
}

/* Template Types */
.template-types {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.template-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #F8F9FA;
    border: 2px solid #E5E7EB;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s ease;
}

.template-type:hover {
    border-color: #2F5855;
    background: rgba(47, 88, 85, 0.05);
    color: #2F5855;
}

.template-type i {
    color: #2F5855;
}

/* Export Formats */
.export-formats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.format-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
}

.format-badge.pdf {
    background: #FEF2F2;
    color: #DC2626;
    border: 2px solid #FECACA;
}

.format-badge.excel {
    background: #F0FDF4;
    color: #16A34A;
    border: 2px solid #BBF7D0;
}

.format-badge.csv {
    background: #EFF6FF;
    color: #2563EB;
    border: 2px solid #BFDBFE;
}

/* Feature Visual Demos */
.feature-showcase-visual {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-showcase-visual > div {
    width: 100%;
    max-width: 480px;
}

/* OCR Demo */
.ocr-demo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ocr-input, .ocr-output {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #E5E7EB;
}

.ocr-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
}

.ocr-input .ocr-header {
    color: #2F5855;
}

.ocr-input .ocr-header i {
    color: #DC2626;
}

.ocr-output .ocr-header {
    color: #10B981;
}

.ocr-dropzone {
    border: 3px dashed #D1D5DB;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: #9CA3AF;
    transition: all 0.3s ease;
}

.ocr-dropzone i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.ocr-dropzone span {
    font-weight: 500;
}

.ocr-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #2F5855;
    font-weight: 700;
    font-size: 1.1rem;
}

.ocr-arrow i {
    font-size: 1.5rem;
    color: #C98572;
    animation: pulse 2s ease-in-out infinite;
}

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

.ocr-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ocr-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    background: #F9FAFB;
    border-radius: 10px;
}

.result-name {
    font-weight: 600;
    color: #374151;
    width: 100px;
}

.result-value {
    flex: 1;
    color: #1F2937;
    font-weight: 500;
}

.result-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.result-status.normal {
    background: #D1FAE5;
    color: #065F46;
}

.result-status.high {
    background: #FEE2E2;
    color: #991B1B;
}

.result-status.low {
    background: #DBEAFE;
    color: #1E40AF;
}

/* Client Portal Demo */
.portal-demo {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(47, 88, 85, 0.15), 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(47, 88, 85, 0.1);
}

.portal-header {
    background: linear-gradient(135deg, #2F5855 0%, #3d6f6b 100%);
    color: white;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 3px solid #C98572;
}

.portal-header i {
    font-size: 1.3rem;
}

.portal-content {
    padding: 20px;
    background: linear-gradient(180deg, #f8fafa 0%, #ffffff 100%);
}

.portal-pet-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: white;
    border-radius: 14px;
    margin-bottom: 16px;
    border: 2px solid #e8f0ef;
    box-shadow: 0 4px 12px rgba(47, 88, 85, 0.06);
}

.pet-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #C98572 0%, #d9a090 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(201, 133, 114, 0.3);
}

.pet-details {
    flex: 1;
    min-width: 0;
}

.pet-details strong {
    display: block;
    font-size: 1.05rem;
    color: #1F2937;
    margin-bottom: 2px;
}

.pet-details span {
    color: #64748b;
    font-size: 0.85rem;
    display: block;
}

.portal-badge {
    padding: 6px 12px;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    border: 1px solid #F59E0B;
}

.portal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.portal-action {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: white;
    border: 2px solid #e8f0ef;
    border-radius: 12px;
    color: #374151;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.portal-action:hover {
    border-color: #2F5855;
    color: #2F5855;
    background: #f0f7f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 88, 85, 0.1);
}

.portal-action i {
    color: #2F5855;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

/* Messaging Demo */
.messaging-demo {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(47, 88, 85, 0.15), 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(47, 88, 85, 0.1);
}

.messaging-header {
    background: linear-gradient(135deg, #2F5855 0%, #3d6f6b 100%);
    color: white;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 3px solid #C98572;
}

.messaging-header i {
    font-size: 1.3rem;
}

.messaging-thread {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: linear-gradient(180deg, #f8fafa 0%, #ffffff 100%);
    min-height: 280px;
}

.message {
    max-width: 82%;
    padding: 12px 16px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.message.clinic {
    background: linear-gradient(135deg, #2F5855 0%, #3a6a66 100%);
    color: white;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.message.client {
    background: white;
    color: #1F2937;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    border: 2px solid #e8f0ef;
}

.message .sender {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.message.clinic .sender {
    color: rgba(255, 255, 255, 0.75);
}

.message.client .sender {
    color: #C98572;
}

.message p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.message .time {
    display: block;
    font-size: 0.65rem;
    margin-top: 6px;
    opacity: 0.6;
}

/* Email Demo */
.email-demo {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(47, 88, 85, 0.15), 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(47, 88, 85, 0.1);
}

.email-preview {
    padding: 0;
}

.email-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: linear-gradient(135deg, #2F5855 0%, #3d6f6b 100%);
    border-bottom: 3px solid #C98572;
}

.email-from {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
}

.email-from i {
    color: white;
    font-size: 1.2rem;
}

.email-time {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
}

.email-subject {
    padding: 14px 20px;
    background: #f8fafa;
    border-bottom: 1px solid #E5E7EB;
}

.email-subject strong {
    color: #1F2937;
    font-size: 1rem;
}

.email-body {
    padding: 20px;
    background: white;
}

.email-body p {
    color: #374151;
    margin: 0 0 12px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.email-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    background: linear-gradient(135deg, #f0f7f6 0%, #e8f4f3 100%);
    border-radius: 12px;
    margin-top: 12px;
    border: 2px solid #d1e3e1;
}

.email-details div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
}

.email-details i {
    color: #2F5855;
    width: 18px;
    font-size: 0.95rem;
}

/* AI Demo */
.ai-demo {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(124, 58, 237, 0.15), 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.ai-header {
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    color: white;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 3px solid #C98572;
}

.ai-header i {
    font-size: 1.3rem;
}

.ai-content {
    padding: 20px;
    background: linear-gradient(180deg, #faf8ff 0%, #ffffff 100%);
}

.ai-input {
    padding: 14px;
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 2px solid #e8e0f7;
}

.ai-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #7C3AED;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.ai-input p {
    margin: 0;
    color: #374151;
    font-style: italic;
    font-size: 0.9rem;
}

.ai-suggestions {
    margin-bottom: 16px;
}

.ai-suggestion {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: white;
    border: 2px solid #e8e0f7;
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.ai-suggestion:hover {
    border-color: #7C3AED;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

.ai-suggestion .confidence {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 42px;
    text-align: center;
}

.ai-suggestion .confidence.high {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
}

.ai-suggestion .confidence.medium {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
}

.ai-suggestion .confidence.low {
    background: #F3F4F6;
    color: #64748b;
}

.ai-suggestion span:last-child {
    color: #1F2937;
    font-weight: 600;
    font-size: 0.9rem;
}

.ai-recommendation {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
    border-radius: 12px;
    color: #5B21B6;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #C4B5FD;
}

.ai-recommendation i {
    font-size: 1.1rem;
    color: #7C3AED;
}

/* Reminders Demo */
.reminders-demo {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(47, 88, 85, 0.15), 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(47, 88, 85, 0.1);
}

.reminders-header {
    background: linear-gradient(135deg, #2F5855 0%, #3d6f6b 100%);
    color: white;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 3px solid #C98572;
}

.reminders-header i {
    font-size: 1.3rem;
}

.reminders-list {
    padding: 16px;
    background: linear-gradient(180deg, #f8fafa 0%, #ffffff 100%);
}

.reminder-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: white;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 2px solid #e8f0ef;
}

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

.reminder-item:hover {
    border-color: #2F5855;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(47, 88, 85, 0.1);
}

.reminder-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #f0f7f6 0%, #e8f4f3 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F5855;
    font-size: 1rem;
    border: 2px solid #d1e3e1;
    flex-shrink: 0;
}

.reminder-details {
    flex: 1;
    min-width: 0;
}

.reminder-details strong {
    display: block;
    color: #1F2937;
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.reminder-details span {
    color: #64748b;
    font-size: 0.8rem;
    display: block;
}

.reminder-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
    white-space: nowrap;
    flex-shrink: 0;
}

.reminder-status.scheduled {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Partial Badge */
.partial-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 2px solid #93C5FD;
    border-radius: 12px;
    color: #1E40AF;
    font-size: 0.9rem;
    margin-top: 16px;
}

.partial-badge i {
    color: #3B82F6;
    font-size: 1rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.partial-badge span {
    line-height: 1.4;
}

/* Lab Interpretation Demo */
.lab-interpretation-demo {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(47, 88, 85, 0.15), 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(47, 88, 85, 0.1);
}

.lab-panel {
    padding: 0;
}

.lab-panel-header {
    background: linear-gradient(135deg, #2F5855 0%, #3d6f6b 100%);
    color: white;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 3px solid #C98572;
}

.lab-panel-header i {
    font-size: 1.3rem;
}

.lab-results-grid {
    padding: 20px;
    background: linear-gradient(180deg, #f8fafa 0%, #ffffff 100%);
}

.lab-result-row {
    display: grid;
    grid-template-columns: 90px 1fr 90px;
    gap: 16px;
    align-items: center;
    padding: 14px;
    background: white;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 2px solid #e8f0ef;
    transition: all 0.3s ease;
}

.lab-result-row:last-child {
    margin-bottom: 0;
}

.lab-result-row:hover {
    border-color: #2F5855;
    box-shadow: 0 4px 12px rgba(47, 88, 85, 0.1);
}

.result-test {
    font-weight: 700;
    color: #1F2937;
    font-size: 0.9rem;
}

.result-chart {
    padding: 0 8px;
}

.range-bar {
    height: 10px;
    background: linear-gradient(90deg, #e8f0ef 0%, #d1e3e1 100%);
    border-radius: 5px;
    position: relative;
    overflow: visible;
}

.range-fill {
    position: absolute;
    height: 100%;
    border-radius: 5px;
}

.range-fill.normal {
    background: linear-gradient(90deg, #10B981, #34D399);
}

.range-fill.high {
    background: linear-gradient(90deg, #F59E0B, #EF4444);
}

.value-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: #2F5855;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.value-marker.high {
    background: #EF4444;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 0.7rem;
    color: #9CA3AF;
    font-weight: 500;
}

.result-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.badge-normal {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
}

.badge-high {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #991B1B;
}

/* Template Builder Demo */
.template-builder-demo {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.builder-toolbar {
    background: #F9FAFB;
    padding: 16px 20px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #E5E7EB;
}

.toolbar-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toolbar-item:hover {
    border-color: #2F5855;
    color: #2F5855;
}

.builder-canvas {
    padding: 24px;
    min-height: 250px;
}

.builder-element {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    cursor: grab;
}

.builder-element:hover {
    border-color: #2F5855;
}

.builder-element.active {
    border-color: #C98572;
    background: #FFF7ED;
}

.builder-element.header {
    background: linear-gradient(135deg, #2F5855 0%, #3d6f6b 100%);
    color: white;
    border: none;
}

.drag-handle {
    color: #9CA3AF;
}

.builder-element.header .drag-handle {
    color: rgba(255, 255, 255, 0.7);
}

.builder-actions {
    padding: 20px 24px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    border-top: 1px solid #E5E7EB;
}

.builder-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.builder-btn.preview {
    background: #F3F4F6;
    color: #374151;
}

.builder-btn.save {
    background: linear-gradient(135deg, #2F5855 0%, #3d6f6b 100%);
    color: white;
}

.builder-btn:hover {
    transform: translateY(-2px);
}

/* Reports Demo */
.reports-demo {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.report-builder-header {
    background: linear-gradient(135deg, #2F5855 0%, #3d6f6b 100%);
    color: white;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}

.report-preview {
    padding: 24px;
}

.report-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 24px;
}

.report-chart {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    height: 120px;
    padding: 0 20px;
    margin-bottom: 24px;
}

.mini-bar {
    flex: 1;
    background: linear-gradient(to top, #2F5855, #C98572);
    border-radius: 6px 6px 0 0;
    transition: all 0.3s ease;
}

.mini-bar:hover {
    opacity: 0.8;
}

.report-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.report-stat {
    flex: 1;
    padding: 16px;
    background: #F9FAFB;
    border-radius: 10px;
    text-align: center;
}

.report-stat .stat-label {
    font-size: 0.85rem;
    color: #64748b;
    display: block;
    margin-bottom: 8px;
}

.report-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1F2937;
}

.report-stat .stat-value.positive {
    color: #10B981;
}

.export-buttons {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid #E5E7EB;
}

.export-btn {
    flex: 1;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.export-btn.pdf {
    background: #FEF2F2;
    color: #DC2626;
    border: 2px solid #FECACA;
}

.export-btn.excel {
    background: #F0FDF4;
    color: #16A34A;
    border: 2px solid #BBF7D0;
}

.export-btn:hover {
    transform: translateY(-2px);
}

/* Comparison Section */
.comparison-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #F8F9FA 0%, #EDF2F7 100%);
}

.comparison-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: left;
}

.comparison-table thead {
    background: #1F2937;
}

.comparison-table th {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.feature-col {
    width: 40%;
}

.vetsycare-col {
    width: 30%;
    background: linear-gradient(135deg, #2F5855 0%, #3d6f6b 100%);
}

.other-col {
    width: 30%;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: #F9FAFB;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    color: #1F2937;
}

.feature-name i {
    width: 36px;
    height: 36px;
    background: #F3F4F6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F5855;
}

.vetsycare-cell {
    background: rgba(47, 88, 85, 0.05);
}

.check-yes {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #059669;
    font-weight: 600;
}

.check-yes i {
    width: 24px;
    height: 24px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.check-no {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #DC2626;
    font-weight: 500;
}

.check-no i {
    width: 24px;
    height: 24px;
    background: #FEE2E2;
    color: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.check-partial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D97706;
    font-weight: 500;
}

.check-partial i {
    width: 24px;
    height: 24px;
    background: #FEF3C7;
    color: #D97706;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 36px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    border-color: #2F5855;
    box-shadow: 0 20px 40px rgba(47, 88, 85, 0.1);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, #2F5855 0%, #3d6f6b 100%);
    border: none;
    box-shadow: 0 20px 60px rgba(47, 88, 85, 0.3);
}

.testimonial-card.featured .testimonial-text {
    color: white;
}

.testimonial-card.featured .author-info strong {
    color: white;
}

.testimonial-card.featured .author-info span {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #F59E0B;
    font-size: 1.1rem;
    margin-right: 4px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C98572 0%, #d9a090 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 1rem;
    color: #1F2937;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.9rem;
    color: #64748b;
}

.trust-logos {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #E5E7EB;
}

.trust-logos > p {
    color: #64748b;
    margin-bottom: 28px;
    font-size: 1rem;
}

.logo-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
    font-weight: 600;
}

.trust-stat i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2F5855 0%, #3d6f6b 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Trial Section */
.trial-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2F5855 0%, #1a3331 100%);
    position: relative;
    overflow: hidden;
}

.trial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(201, 133, 114, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 133, 114, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.trial-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trial-text h2 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.trial-text > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.trial-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trial-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    font-size: 1.1rem;
}

.trial-feature i {
    color: #10B981;
    font-size: 1.35rem;
}

.trial-cta {
    text-align: center;
    padding: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.guarantee-badge i {
    font-size: 1.2rem;
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 20px;
}

/* Final CTA Section */
.final-cta {
    padding: 120px 20px;
}

.final-cta .cta-content h2 {
    font-size: 3.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-hero h1 {
        font-size: 3.5rem;
    }

    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-showcase.reverse {
        direction: ltr;
    }

    .trial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trial-cta {
        padding: 36px;
    }
}

@media (max-width: 768px) {
    .why-hero {
        padding: 100px 20px 80px;
        min-height: auto;
    }

    .why-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-divider {
        height: 40px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-xl {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .feature-showcase-content h3 {
        font-size: 1.75rem;
    }

    .feature-number {
        font-size: 3.5rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .trial-text h2 {
        font-size: 2rem;
    }

    .final-cta .cta-content h2 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .why-hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .feature-exclusive-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .dual-access-badge {
        flex-direction: column;
        gap: 12px;
    }

    .access-divider {
        transform: rotate(90deg);
    }

    .template-types {
        flex-direction: column;
    }

    .export-formats {
        flex-direction: column;
    }

    .logo-row {
        flex-direction: column;
        gap: 20px;
    }

    /* Demo responsive styles */
    .portal-actions {
        grid-template-columns: 1fr;
    }

    .portal-pet-card {
        flex-wrap: wrap;
    }

    .portal-badge {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    .messaging-thread {
        padding: 16px;
        min-height: 240px;
    }

    .message {
        max-width: 90%;
        padding: 10px 14px;
    }

    .email-details {
        gap: 8px;
        padding: 12px;
    }

    .ai-suggestion {
        flex-wrap: wrap;
    }

    .ai-suggestion .confidence {
        min-width: 36px;
    }

    .reminder-item {
        flex-wrap: wrap;
    }

    .reminder-status {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }

    .lab-result-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .result-badge {
        justify-content: center;
    }
}
