/**
 * TTY App Features Info Page Styles
 * Comprehensive app features showcase with interactive demos
 *
 * @package Transtoyou
 */

/* ========================================
   WRAPPER & LAYOUT
   ======================================== */

.tty-app-features-wrapper {
    background: var(--tty-bg-primary);
    min-height: 100vh;
    position: relative;
}

.tty-app-features-wrapper::before {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5v10m0 30v10m-20-25h10m30 0h10' stroke='%23005F5F' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='5' fill='%23005F5F'/%3E%3Ccircle cx='30' cy='15' r='2' fill='%23005F5F'/%3E%3Ccircle cx='30' cy='45' r='2' fill='%23005F5F'/%3E%3Ccircle cx='20' cy='30' r='2' fill='%23005F5F'/%3E%3Ccircle cx='40' cy='30' r='2' fill='%23005F5F'/%3E%3C/svg%3E");
  content: '';
  position: absolute;
  top: 0;
  left: 9%;
  width: 40%;
  height: 100%;
  opacity: 0.05;
}

/* ========================================
   BANNER SECTION
   ======================================== */

.tty-app-features-banner {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.tty-app-features-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.tty-app-features-banner-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tty-app-features-banner-icon i {
    font-size: 40px;
    color: white;
}

.tty-app-features-banner-text h1 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
}

.tty-app-features-banner-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.tty-app-features-banner-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5v10m0 30v10m-20-25h10m30 0h10' stroke='%23ffffff' stroke-width='1' opacity='0.1'/%3E%3Ccircle cx='30' cy='30' r='3' fill='%23ffffff' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.5;
}

/* ========================================
   CONTAINER & SIDEBAR
   ======================================== */

.tty-app-features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px 120px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.tty-app-features-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.tty-app-features-nav-block {
    background: var(--tty-bg-secondary);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.tty-app-features-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--tty-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tty-app-features-nav-link i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.tty-app-features-nav-link:hover {
    background: var(--tty-bg-primary);
    color: var(--tty-primary);
}

.tty-app-features-nav-link.active {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    color: white;
}

/* Quick Links */
.tty-app-features-quick-links {
    background: var(--tty-bg-secondary);
    border-radius: 16px;
    padding: 20px;
}

.tty-app-features-quick-links h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--tty-text-secondary);
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tty-app-features-quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--tty-text-primary);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid var(--tty-border-light);
    transition: all 0.2s ease;
}

.tty-app-features-quick-link:last-child {
    border-bottom: none;
}

.tty-app-features-quick-link:hover {
    color: var(--tty-primary);
}

.tty-app-features-quick-link i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.tty-app-features-quick-link:hover i {
    transform: translateX(4px);
}

/* ========================================
   MAIN CONTENT
   ======================================== */

.tty-app-features-content {
    min-width: 0;
    z-index: 1;
}

.tty-app-features-section {
    background: var(--tty-bg-primary);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--tty-border-light);
}

#faq {
  background-color: var(--tty-bg-secondary);
  padding: 30px;
  border-radius: 30px;
}

.tty-app-features-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--tty-header-primary);
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tty-app-features-section h2 i {
    color: var(--tty-primary);
}

.tty-section-intro {
    font-size: 17px;
    color: var(--tty-text-secondary);
    margin: 0 0 32px 0;
    line-height: 1.6;
}

/* ========================================
   VALUE BANNER
   ======================================== */

.tty-app-features-value-banner {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.tty-app-features-value-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.tty-app-features-value-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tty-app-features-value-icon i {
    font-size: 32px;
    color: white;
}

.tty-app-features-value-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
}

.tty-app-features-value-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   HIGHLIGHTS GRID
   ======================================== */

.tty-app-features-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tty-app-features-highlight {
    background: var(--tty-bg-secondary);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tty-app-features-highlight:hover {
    transform: translateY(-4px);
    border-color: var(--tty-primary);
    box-shadow: 0 8px 24px rgba(0, 95, 95, 0.1);
}

.tty-app-features-highlight.tty-highlight-gold {
    background: linear-gradient(135deg, rgba(229, 146, 76, 0.1) 0%, rgba(229, 146, 76, 0.05) 100%);
    border-color: rgba(229, 146, 76, 0.3);
}

.tty-app-features-highlight.tty-highlight-gold .tty-app-features-highlight-icon {
    background: linear-gradient(135deg, #E5924C 0%, #f5a962 100%);
}

.tty-app-features-highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.tty-app-features-highlight-icon i {
    font-size: 28px;
    color: white;
}

.tty-app-features-highlight h4 {
    font-weight: 600;
    color: var(--tty-header-primary);
    margin: 0 0 8px 0;
}

.tty-app-features-highlight p {
    font-size: 14px;
    color: var(--tty-text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* ========================================
   PHONE PREVIEW
   ======================================== */

.tty-app-features-phone-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tty-app-phone-frame {
    background: #1a1a1a;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 265px;
    position: relative;
}

.tty-app-phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 20px;
    z-index: 10;
}

.tty-app-phone-screen {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.tty-app-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.tty-app-status-icons {
    display: flex;
    gap: 6px;
    font-size: 11px;
}

.tty-app-home-screen {
    padding: 0 16px 16px;
}

.tty-app-home-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.tty-app-home-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tty-app-home-header-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--tty-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tty-app-home-header-btn i {
    font-size: 16px;
    color: var(--tty-text-secondary);
}

.tty-app-home-header-btn.tty-home-hamburger {
    background: var(--tty-primary);
}

.tty-app-home-header-btn.tty-home-hamburger i {
    color: white;
}

.tty-app-home-logo {
    height: 24px;
    width: auto;
}

.tty-app-home-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tty-app-home-user i {
    font-size: 18px;
    color: var(--tty-text-secondary);
}

.tty-app-home-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.tty-app-home-welcome {
    margin: 16px 0;
}

.tty-app-home-welcome h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px 0;
}

.tty-app-home-welcome p {
    font-size: 13px;
    color: var(--tty-text-secondary);
    margin: 0;
}

.tty-app-home-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.tty-app-home-card {
    background: var(--tty-bg-secondary);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.tty-app-home-card i {
    font-size: 24px;
    margin-bottom: 8px;
}

.tty-app-home-card.tty-card-order i {
    color: #06b6d4;
}

.tty-app-home-card.tty-card-reminder i {
    color: var(--tty-secondary);
}

.tty-app-home-card span {
    display: block;
    font-size: 11px;
    color: var(--tty-text-secondary);
}

.tty-app-home-card strong {
    display: block;
    font-size: 13px;
    color: var(--tty-header-primary);
}

.tty-app-home-nav {
    display: flex;
    justify-content: space-between;
    padding: 8px 8px 6px;
    border-top: 1px solid var(--tty-border-light);
    margin-top: 16px;
}

.tty-app-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--tty-text-secondary);
    font-size: 9px;
    position: relative;
    flex: 1;
}

.tty-app-nav-item i {
    font-size: 16px;
}

.tty-app-nav-item.active {
    color: var(--tty-primary);
}

.tty-app-nav-avatar {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 9px;
    font-weight: 600;
    border: 2px solid var(--tty-primary);
}

.tty-app-nav-item.active .tty-app-nav-avatar {
    border-color: var(--tty-secondary);
    box-shadow: 0 0 0 2px rgba(229, 146, 76, 0.3);
}

.tty-app-nav-badge {
    position: absolute;
    top: -4px;
    right: 50%;
    transform: translateX(10px);
    background: var(--tty-secondary);
    color: white;
    font-size: 8px;
    font-weight: 600;
    min-width: 13px;
    height: 13px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

.tty-app-nav-badge.tty-nav-badge-saved {
    background: #ef4444;
}

[data-theme="dark"] .tty-app-home-header-btn {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-home-header-btn i {
    color: var(--tty-text-primary);
}

[data-theme="dark"] .tty-app-home-header-btn.tty-home-hamburger {
    background: var(--tty-primary);
}

[data-theme="dark"] .tty-app-home-header-btn.tty-home-hamburger i {
    color: white;
}

.tty-app-phone-caption {
    margin-top: 20px;
    text-align: center;
}

.tty-app-phone-caption p {
    font-size: 14px;
    color: var(--tty-text-secondary);
    margin: 0;
}

/* ========================================
   ORDER TRACKING MOCKUP
   ======================================== */

.tty-app-order-mockup {
    margin-bottom: 32px;
}

.tty-app-order-card {
    background: var(--tty-bg-secondary);
    border-radius: 16px;
    padding: 24px;
    border: 2px solid var(--tty-border-light);
}

.tty-app-order-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tty-app-order-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.tty-app-order-icon.tty-status-shipped {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.tty-app-order-info {
    flex: 1;
}

.tty-app-order-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--tty-header-primary);
    margin: 0 0 4px 0;
}

.tty-app-order-date {
    font-size: 13px;
    color: var(--tty-text-secondary);
}

.tty-app-order-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.tty-app-order-status.tty-status-shipped {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
}

.tty-app-order-tracking {
    margin-bottom: 24px;
}

.tty-app-tracking-progress {
    margin-bottom: 16px;
}

.tty-app-tracking-bar {
    height: 6px;
    background: var(--tty-border-light);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.tty-app-tracking-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.tty-app-tracking-steps {
    display: flex;
    justify-content: space-between;
}

.tty-app-tracking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--tty-text-secondary);
}

.tty-app-tracking-step i {
    font-size: 16px;
}

.tty-app-tracking-step.completed {
    color: var(--tty-primary);
}

.tty-app-tracking-step.completed i {
    color: var(--tty-primary);
}

.tty-app-order-eta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 95, 95, 0.05);
    border-radius: 10px;
    font-size: 14px;
    color: var(--tty-text-primary);
}

.tty-app-order-eta i {
    color: var(--tty-primary);
}

.tty-app-order-actions {
    display: flex;
    gap: 12px;
}

.tty-app-btn {
    display: inline-flex;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
    width: 44px;
  	height: 44px;
  	align-items: center;
  	justify-content: center;
}

.tty-app-btn-primary {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    color: white;
}

.tty-app-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 95, 95, 0.3);
}

.tty-app-btn-outline {
    background: transparent;
    border: 2px solid var(--tty-border-light);
    color: var(--tty-text-primary);
}

.tty-app-btn-outline:hover {
    border-color: var(--tty-primary);
    color: var(--tty-primary);
}

.tty-app-btn-sm {
    padding: 8px 14px;
    font-size: 13px;
}

/* ========================================
   FEATURES GRID
   ======================================== */

.tty-app-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.tty-app-feature-card {
    background: var(--tty-bg-secondary);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tty-app-feature-card:hover {
    border-color: var(--tty-primary);
    transform: translateY(-4px);
}

.tty-app-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.tty-app-feature-icon i {
    font-size: 24px;
    color: white;
}

.tty-app-feature-card h4 {
    font-weight: 600;
    color: var(--tty-header-primary);
    margin: 0 0 8px 0;
}

.tty-app-feature-card p {
    color: var(--tty-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   STATUS OVERVIEW
   ======================================== */

.tty-app-status-overview {
    background: var(--tty-bg-secondary);
    border-radius: 16px;
    padding: 24px;
}

.tty-app-status-overview h4 {
    font-weight: 600;
    color: var(--tty-header-primary);
    margin: 0 0 16px 0;
}

.tty-app-status-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tty-app-status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--tty-text-primary);
}

.tty-app-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.tty-dot-pending { background: linear-gradient(135deg, #f39c12, #e67e22); }
.tty-dot-processing { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.tty-dot-doctor { background: linear-gradient(135deg, #3498db, #5dade2); }
.tty-dot-approved { background: linear-gradient(135deg, #27ae60, #52be80); }
.tty-dot-shipped { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
.tty-dot-delivered { background: linear-gradient(135deg, #10b981, #34d399); }

/* ========================================
   REMINDER MOCKUP
   ======================================== */

.tty-app-reminder-mockup {
    margin-bottom: 32px;
}

.tty-app-notification-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid var(--tty-border-light);
}

.tty-app-notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.tty-app-notification-app {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tty-app-notification-logo {
    height: 40px;
    width: auto;
}

.tty-app-notification-app span {
    font-size: 13px;
    font-weight: 600;
    color: var(--tty-header-primary);
}

.tty-app-notification-time {
    font-size: 12px;
    color: var(--tty-text-secondary);
}

.tty-app-notification-body {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.tty-app-notification-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--tty-secondary) 0%, #f5a962 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tty-app-notification-icon i {
    font-size: 24px;
    color: white;
}

.tty-app-notification-content strong {
    display: block;
    font-size: 15px;
    color: var(--tty-header-primary);
    margin-bottom: 4px;
}

.tty-app-notification-content p {
    font-size: 13px;
    color: var(--tty-text-secondary);
    margin: 0;
}

.tty-app-notification-actions {
    display: flex;
    gap: 10px;
}

.tty-app-notif-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    font-family: inherit;
}

.tty-notif-primary {
    background: var(--tty-primary);
    color: white;
}

.tty-notif-primary:hover {
    background: var(--tty-primary-dark);
}

.tty-notif-secondary {
    background: var(--tty-bg-secondary);
    color: var(--tty-text-primary);
    border: 1px solid var(--tty-border-light);
}

.tty-notif-secondary:hover {
    border-color: var(--tty-primary);
    color: var(--tty-primary);
}

/* ========================================
   REMINDER FEATURES
   ======================================== */

.tty-app-reminder-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.tty-app-reminder-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--tty-bg-secondary);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tty-app-reminder-feature:hover {
    transform: translateX(8px);
}

.tty-app-reminder-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tty-app-reminder-icon i {
    font-size: 22px;
    color: white;
}

.tty-app-reminder-text h4 {
    font-weight: 600;
    color: var(--tty-header-primary);
    margin: 0 0 6px 0;
}

.tty-app-reminder-text p {
    color: var(--tty-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   SCHEDULE PREVIEW
   ======================================== */

.tty-app-schedule-preview {
    background: var(--tty-bg-secondary);
    border-radius: 16px;
    padding: 24px;
}

.tty-app-schedule-preview h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--tty-header-primary);
    margin: 0 0 16px 0;
}

.tty-app-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tty-app-schedule-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--tty-bg-primary);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.tty-app-schedule-item.current {
    border-color: var(--tty-secondary);
    background: rgba(229, 146, 76, 0.05);
}

.tty-app-schedule-item.completed {
    opacity: 0.6;
}

.tty-app-schedule-time {
    font-size: 16px;
    font-weight: 700;
    color: var(--tty-header-primary);
    min-width: 60px;
}

.tty-app-schedule-info {
    flex: 1;
}

.tty-app-schedule-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--tty-header-primary);
}

.tty-app-schedule-dose {
    font-size: 13px;
    color: var(--tty-text-secondary);
}

.tty-app-schedule-status i {
    font-size: 20px;
}

.tty-app-schedule-item.completed .tty-app-schedule-status i {
    color: var(--tty-primary);
}

.tty-app-schedule-item.current .tty-app-schedule-status i {
    color: var(--tty-secondary);
    animation: pulse-ring 1.5s ease-out infinite;
}

.tty-app-schedule-item.upcoming .tty-app-schedule-status i {
    color: var(--tty-text-secondary);
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* ========================================
   EMAIL PREVIEW
   ======================================== */

.tty-app-email-preview {
    margin-bottom: 32px;
}

.tty-app-email-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid var(--tty-border-light);
}

.tty-app-email-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--tty-border-light);
}

.tty-app-email-from {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tty-app-email-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tty-app-email-avatar i {
    font-size: 18px;
    color: white;
}

.tty-app-email-sender strong {
    display: block;
    font-size: 14px;
    color: var(--tty-header-primary);
}

.tty-app-email-sender span {
    font-size: 12px;
    color: var(--tty-text-secondary);
}

.tty-app-email-time {
    font-size: 12px;
    color: var(--tty-text-secondary);
}

.tty-app-email-subject {
    margin-bottom: 16px;
}

.tty-app-email-subject strong {
    color: var(--tty-header-primary);
}

.tty-app-email-body p {
    font-size: 14px;
    color: var(--tty-text-secondary);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.tty-app-email-tracking {
    background: var(--tty-bg-secondary);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tty-app-email-tracking span {
    font-size: 13px;
    color: var(--tty-text-secondary);
}

.tty-app-email-tracking strong {
    font-size: 14px;
    color: var(--tty-primary);
    font-family: monospace;
}

.tty-app-email-cta {
    margin-top: 20px;
    text-align: center;
}

/* ========================================
   PRESCRIPTION FEATURES
   ======================================== */

.tty-app-prescription-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tty-app-prescription-card {
    background: var(--tty-bg-secondary);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tty-app-prescription-card:hover {
    border-color: var(--tty-primary);
    transform: translateY(-4px);
}

.tty-app-prescription-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.tty-app-prescription-icon i {
    font-size: 24px;
    color: white;
}

.tty-app-prescription-card h4 {
    font-weight: 600;
    color: var(--tty-header-primary);
    margin: 0 0 8px 0;
}

.tty-app-prescription-card p {
    color: var(--tty-text-secondary);
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.tty-app-prescription-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0, 95, 95, 0.1);
    color: var(--tty-primary);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* ========================================
   VIDEO CONSULTATION MOCKUP
   ======================================== */

.tty-app-video-mockup {
    margin-bottom: 32px;
}

.tty-app-video-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    max-width: 265px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.tty-app-video-screen {
    position: relative;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    min-height: 400px;
    max-width: 265px;
}

.tty-app-video-doctor {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tty-app-video-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-image: url('/wp-content/uploads/2026/01/Dr.-Martin-Saar.webp');
  	background-size: cover;
  	background-position: center;
  	background-repeat: no-repeat;
}

.tty-app-video-placeholder i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.5);
}

.tty-app-video-info {
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.tty-app-video-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dc2626;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tty-app-live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.tty-app-video-info strong {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
}

.tty-app-video-info span {
    font-size: 14px;
    opacity: 0.8;
}

.tty-app-video-self {
    position: absolute;
    bottom: 80px;
    right: 16px;
    width: 80px;
    height: 100px;
    background: #333;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid white;
}

.tty-app-self-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.tty-app-video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
}

.tty-app-video-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.2s ease;
}

.tty-app-video-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.tty-app-video-btn.tty-btn-end {
    background: #dc2626;
    transform: rotate(135deg);
}

.tty-app-video-btn.tty-btn-end:hover {
    background: #b91c1c;
}

.tty-app-video-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #2d3748;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

/* Consultation Benefits */
.tty-app-consult-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tty-app-consult-benefit {
    text-align: center;
    padding: 24px;
    background: var(--tty-bg-secondary);
    border-radius: 16px;
}

.tty-app-consult-benefit i {
    font-size: 36px;
    color: var(--tty-primary);
    margin-bottom: 12px;
}

.tty-app-consult-benefit h4 {
    font-weight: 600;
    color: var(--tty-header-primary);
    margin: 0 0 8px 0;
}

.tty-app-consult-benefit p {
    color: var(--tty-text-secondary);
    margin: 0;
}

/* ========================================
   BARCODE SCAN MOCKUP
   ======================================== */

.tty-app-scan-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.tty-app-scan-frame {
    width: 265px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tty-app-scan-viewfinder {
    width: 200px;
    height: 200px;
    position: relative;
    margin-bottom: 20px;
}

.tty-app-scan-corners .corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid white;
}

.tty-app-scan-corners .tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.tty-app-scan-corners .tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.tty-app-scan-corners .bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.tty-app-scan-corners .br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.tty-app-scan-line {
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tty-secondary), transparent);
    animation: scan-move 2s ease-in-out infinite;
}

@keyframes scan-move {
    0%, 100% { top: 10%; }
    50% { top: 90%; }
}

.tty-app-scan-barcode {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tty-app-scan-barcode i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
}

.tty-app-scan-instructions {
    color: white;
    font-size: 14px;
    text-align: center;
}

.tty-app-scan-instructions p {
  color: white;
  margin: 0px;
}

.tty-app-scan-result {
    width: 100%;
    max-width: 400px;
}

.tty-app-scan-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    margin-bottom: 12px;
    color: #10b981;
    font-weight: 600;
}

.tty-app-scan-success i {
    font-size: 20px;
}

.tty-app-scan-product {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--tty-bg-secondary);
    border-radius: 12px;
}

.tty-app-scan-product-image {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tty-app-scan-product-image i {
    font-size: 28px;
    color: var(--tty-primary);
}

.tty-app-scan-product-info {
    flex: 1;
}

.tty-app-scan-product-info strong {
    display: block;
    font-size: 15px;
    color: var(--tty-header-primary);
    margin-bottom: 4px;
}

.tty-app-scan-product-info span {
    font-size: 13px;
    color: var(--tty-text-secondary);
}

/* Scan Features */
.tty-app-scan-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tty-app-scan-feature {
    text-align: center;
    padding: 24px;
    background: var(--tty-bg-secondary);
    border-radius: 16px;
}

.tty-app-scan-feature i {
    font-size: 36px;
    color: var(--tty-primary);
    margin-bottom: 12px;
}

.tty-app-scan-feature h4 {
    font-weight: 600;
    color: var(--tty-header-primary);
    margin: 0 0 8px 0;
}

.tty-app-scan-feature p {
    color: var(--tty-text-secondary);
    margin: 0;
}

/* ========================================
   TTY POINTS
   ======================================== */

.tty-app-points-overview {
    margin-bottom: 32px;
}

.tty-app-points-card {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 20px;
    padding: 32px;
    color: white;
    max-width: 400px;
    margin: 0 auto;
}

.tty-app-points-balance {
    text-align: center;
    margin-bottom: 24px;
}

.tty-app-points-label {
    font-size: 14px;
    opacity: 0.8;
}

.tty-app-points-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 8px 0;
}

.tty-app-points-value i {
    font-size: 40px;
    color: #ffd700;
}

.tty-app-points-number {
    font-size: 56px;
    font-weight: 700;
}

.tty-app-points-worth {
    font-size: 15px;
    opacity: 0.9;
}

.tty-app-points-progress {
    text-align: center;
}

.tty-app-points-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.tty-app-points-progress-fill {
    height: 100%;
    background: #ffd700;
    border-radius: 4px;
}

.tty-app-points-progress span {
    font-size: 13px;
    opacity: 0.8;
}

/* Earning Points */
.tty-app-points-earn h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--tty-header-primary);
    margin: 0 0 20px 0;
}

.tty-app-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tty-app-points-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--tty-bg-secondary);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.tty-app-points-item:hover {
    transform: translateX(8px);
}

.tty-app-points-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tty-app-points-icon i {
    font-size: 22px;
    color: white;
}

.tty-app-points-info {
    flex: 1;
}

.tty-app-points-info strong {
    display: block;
    color: var(--tty-header-primary);
    margin-bottom: 2px;
}

.tty-app-points-info p {
    font-size: 12px;
    color: var(--tty-text-secondary);
    margin: 0;
}

.tty-app-points-amount {
    font-size: 18px;
    font-weight: 700;
    color: #958220;
    background: rgba(255, 215, 0, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
}

/* ========================================
   NOTIFICATIONS SECTION
   ======================================== */

.tty-app-notif-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.tty-app-notif-type {
    background: var(--tty-bg-secondary);
    border-radius: 16px;
    padding: 20px;
}

.tty-app-notif-preview {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tty-app-notif-mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tty-app-notif-mini-icon i {
    font-size: 18px;
    color: white;
}

.tty-notif-order .tty-app-notif-mini-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.tty-notif-reminder .tty-app-notif-mini-icon {
    background: linear-gradient(135deg, var(--tty-secondary) 0%, #f5a962 100%);
}

.tty-notif-appointment .tty-app-notif-mini-icon {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
}

.tty-notif-points .tty-app-notif-mini-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.tty-app-notif-mini-text strong {
    display: block;
    color: var(--tty-header-primary);
    margin-bottom: 0px;
}

.tty-app-notif-mini-text span {
    font-size: 14px;
    color: var(--tty-text-secondary);
}

.tty-app-notif-type h4 {
    font-weight: 600;
    color: var(--tty-header-primary);
    margin: 0 0 6px 0;
}

.tty-app-notif-type p {
    color: var(--tty-text-secondary);
    margin: 0;
}

/* Notification Note */
.tty-app-notif-note {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(0, 95, 95, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--tty-primary);
}

.tty-app-notif-note > i {
    font-size: 24px;
    color: var(--tty-primary);
    flex-shrink: 0;
}

.tty-app-notif-note strong {
    display: block;
    color: var(--tty-header-primary);
    margin-bottom: 4px;
}

.tty-app-notif-note p {
    font-size: 14px;
    color: var(--tty-text-secondary);
    margin: 0;
}

/* ========================================
   LIVE DEMO
   ======================================== */

.tty-app-demo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tty-app-demo-phone {
    margin-bottom: 24px;
}

.tty-app-demo-frame {
    background: #1a1a1a;
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    width: 265px;
    position: relative;
}

.tty-app-demo-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 20px;
    z-index: 10;
}

.tty-app-demo-screen {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    min-height: 500px;
}

.tty-app-demo-status {
    display: flex;
    justify-content: space-between;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
}

.tty-app-demo-status-icons {
    display: flex;
    gap: 6px;
    font-size: 11px;
}

.tty-app-demo-content {
    padding: 0 12px;
    min-height: 400px;
    position: relative;
}

/* Demo Screens */
.tty-app-demo-content > div {
    display: none;
}

.tty-app-demo-content > div.tty-demo-active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Home Screen */
.tty-app-demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.tty-app-demo-header img {
    height: 38px;
}

.tty-app-demo-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tty-app-demo-header-btn.tty-demo-hamburger {
  flex-direction: column;
  padding: 0;
  position: relative;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  background: #e9e9ed;
}

.tty-app-demo-header-btn {
  flex-direction: column;
  padding: 0;
  position: relative;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  background: var(--tty-bg-linear-graniet);
}

.tty-app-demo-header-btn img {
  color: #fff;
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  min-width: 20px;
  min-height: 20px;
}

.tty-app-demo-header-btn i {
    font-size: 16px;
    color: var(--tty-primary);
}


.tty-app-demo-header-btn.tty-demo-hamburger .fa-solid.fa-bars {
  font-size: 20px;
  color: var(--tty-primary);
}

.tty-app-demo-welcome {
    margin: 16px 0;
}

.tty-app-demo-welcome h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px 0;
}

.tty-app-demo-welcome p {
    font-size: 13px;
    color: var(--tty-text-secondary);
    margin: 0;
}

.tty-app-demo-quick-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tty-app-demo-quick-card {
    background: var(--tty-bg-secondary);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tty-app-demo-quick-card.highlight {
    border: 2px solid var(--tty-primary);
    background: rgba(0, 95, 95, 0.05);
}

.tty-app-demo-quick-card i {
    font-size: 24px;
    margin-bottom: 8px;
}

.tty-demo-order-card i { color: #06b6d4; }
.tty-demo-reminder-card i { color: var(--tty-secondary); }

.tty-app-demo-quick-card span {
    display: block;
    font-size: 11px;
    color: var(--tty-text-secondary);
}

.tty-app-demo-quick-card strong {
    display: block;
    font-size: 13px;
    color: var(--tty-header-primary);
}

/* Orders Screen */
.tty-app-demo-page-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    margin-bottom: 16px;
}

.tty-app-demo-back {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--tty-bg-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tty-app-demo-page-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.tty-app-demo-order {
    background: var(--tty-bg-secondary);
    border-radius: 12px;
    padding: 16px;
}

.tty-app-demo-order-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tty-app-demo-order-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.tty-app-demo-order-info strong {
    display: block;
    font-size: 14px;
    color: var(--tty-header-primary);
}

.tty-app-demo-order-info span {
    font-size: 12px;
    color: #06b6d4;
    font-weight: 600;
}

.tty-app-demo-tracking {
    margin-bottom: 16px;
}

.tty-app-demo-tracking-bar {
    height: 6px;
    background: var(--tty-border-light);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.tty-app-demo-tracking-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--tty-primary), #00a896);
    border-radius: 3px;
    transition: width 1s ease;
}

.tty-app-demo-tracking-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--tty-text-secondary);
}

.tty-app-demo-eta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--tty-text-primary);
}

.tty-app-demo-eta i {
    color: var(--tty-primary);
}

/* Notifications */
.tty-app-demo-notification,
.tty-app-demo-reminder-notif,
.tty-app-demo-points {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
    z-index: 20;
}

.tty-app-demo-notif-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: slideUp 0.3s ease;
}

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

.tty-app-demo-notif-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.tty-app-demo-notif-icon i {
    font-size: 28px;
    color: white;
}

.tty-app-demo-notif-icon.tty-notif-success {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.tty-app-demo-notif-icon.tty-notif-reminder {
    background: linear-gradient(135deg, var(--tty-secondary) 0%, #f5a962 100%);
}

.tty-app-demo-notif-text strong {
    display: block;
    font-size: 18px;
    color: var(--tty-header-primary);
    margin-bottom: 4px;
}

.tty-app-demo-notif-text p {
    font-size: 14px;
    color: var(--tty-text-secondary);
    margin: 0;
}

/* Points Card */
.tty-app-demo-points-card {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 16px;
    padding: 24px;
    color: white;
    text-align: center;
    animation: pointsPop 0.5s ease;
    color: white;
}


@keyframes pointsPop {
    0% { transform: scale(0); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.tty-app-demo-points-card i {
    font-size: 40px;
    color: #ffd700;
    margin-bottom: 8px;
}

.tty-app-demo-points-card strong {
    display: block;
    font-size: 22px;
    margin-bottom: 4px;
}

.tty-app-demo-points-card p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    color: white;
}

/* Reminders Screen */
.tty-app-demo-reminder-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tty-app-demo-reminder-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--tty-bg-secondary);
    border-radius: 12px;
}

.tty-app-demo-reminder-item.completed {
    opacity: 0.6;
}

.tty-app-demo-reminder-item.active {
    border: 2px solid var(--tty-secondary);
    background: rgba(229, 146, 76, 0.05);
}

.tty-app-demo-reminder-time {
    font-size: 14px;
    font-weight: 700;
    color: var(--tty-header-primary);
    min-width: 50px;
}

.tty-app-demo-reminder-info {
    flex: 1;
}

.tty-app-demo-reminder-info strong {
    display: block;
    font-size: 14px;
    color: var(--tty-header-primary);
}

.tty-app-demo-reminder-info span {
    font-size: 12px;
    color: var(--tty-text-secondary);
}

.tty-app-demo-reminder-item i {
    font-size: 18px;
}

.tty-app-demo-reminder-item.completed i {
    color: var(--tty-primary);
}

.tty-app-demo-reminder-item.active i {
    color: var(--tty-secondary);
}

/* Demo Navigation */
.tty-app-demo-nav {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px 6px;
    border-top: 1px solid var(--tty-border-light);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px 15px 0px 0px !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 5px 0px 5px;
}

.tty-app-demo-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--tty-text-secondary);
    font-size: 7px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    flex: 1;
    max-width: 50px;
}

.tty-app-demo-nav-item[data-nav="account"] {
  margin-top: -20px;
  border: 8px solid var(--tty-bg-primary);
  border-radius: 50%;
  object-fit: cover;
}

.tty-app-demo-nav-item i {
    font-size: 16px;
}

.tty-app-demo-nav-item.active {
    color: var(--tty-primary);
}

.tty-app-demo-nav-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
    border: 2px solid var(--tty-primary);
}

.tty-app-demo-nav-item.active .tty-app-demo-nav-avatar {
    border-color: var(--tty-secondary);
    box-shadow: 0 0 0 2px rgba(229, 146, 76, 0.3);
}

.tty-app-demo-nav-badge {
  position: absolute;
  top: -8px;
  right: 42%;
  transform: translateX(12px);
  background: var(--tty-secondary);
  color: white;
  font-size: 9px;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Demo Controls */
.tty-app-demo-controls {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.tty-app-demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
}

.tty-demo-play {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    color: white;
}

.tty-demo-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 95, 95, 0.3);
}

.tty-demo-pause {
    background: linear-gradient(135deg, var(--tty-secondary) 0%, #f5a962 100%);
    color: white;
}

.tty-demo-reset {
    background: var(--tty-bg-secondary);
    color: var(--tty-text-primary);
    border: 2px solid var(--tty-border-light);
}

.tty-demo-reset:hover {
    border-color: var(--tty-primary);
}

/* Progress Bar */
.tty-app-demo-progress {
    width: 100%;
    max-width: 500px;
}

.tty-app-demo-progress-bar {
    height: 6px;
    background: var(--tty-border-light);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.tty-app-demo-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--tty-primary), var(--tty-secondary));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.tty-app-demo-steps {
    display: flex;
    justify-content: space-between;
}

.tty-demo-step {
    font-size: 11px;
    color: var(--tty-text-secondary);
    transition: all 0.2s ease;
}

.tty-demo-step.active {
    color: var(--tty-primary);
    font-weight: 600;
}

.tty-demo-step.completed {
    color: var(--tty-primary);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.tty-app-features-faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tty-app-features-faq-item {
 background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: var(--tty-transition-normal);
}

.tty-app-features-faq-item.active {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.tty-app-features-faq-question {
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--tty-transition-normal);
  width: 100%;
}

.tty-app-features-faq-question span {
  margin: 0;
  font-weight: 600;
  color: var(--tty-text-primary);
  font-size: 17px;
}

.tty-app-features-faq-question i {
  color: var(--tty-primary);
  transition: var(--tty-transition-normal);
  font-size: 17px;
  opacity: .4;
}

.tty-app-features-faq-item.active .tty-app-features-faq-question i {
    transform: rotate(180deg);
    color: var(--tty-primary);
}

.tty-app-features-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.tty-app-features-faq-item.active .tty-app-features-faq-answer {
    max-height: 300px;
}

.tty-app-features-faq-answer p {
    padding: 0 24px 20px;
    color: var(--tty-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   EXPLORE MORE
   ======================================== */

.tty-app-features-explore {
    margin-bottom: 32px;
}

.tty-app-features-explore h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--tty-header-primary);
    margin: 0 0 20px 0;
}

.tty-app-features-explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tty-app-features-explore-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--tty-bg-secondary);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tty-app-features-explore-card:hover {
    border-color: var(--tty-primary);
    transform: translateY(-4px);
}

.tty-app-features-explore-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tty-app-features-explore-icon i {
    font-size: 22px;
    color: white;
}

.tty-app-features-explore-text {
    flex: 1;
    min-width: 0;
}

.tty-app-features-explore-text h4
    font-weight: 600;
    color: var(--tty-header-primary);
    margin: 0 0 4px 0;
}

.tty-app-features-explore-text p {
    color: var(--tty-text-secondary);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tty-app-features-explore-card > i {
    font-size: 14px;
    color: var(--tty-text-secondary);
    transition: transform 0.2s ease;
}

.tty-app-features-explore-card:hover > i {
    transform: translateX(4px);
    color: var(--tty-primary);
}

/* ========================================
   CTA SECTION
   ======================================== */

.tty-app-features-cta {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tty-app-features-cta-float {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(10deg); }
}

.tty-app-features-cta-content {
    position: relative;
    z-index: 2;
}

.tty-app-features-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.tty-app-features-cta-icon i {
    font-size: 40px;
    color: white;
}

.tty-app-features-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
}

.tty-app-features-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 28px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tty-app-features-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.tty-app-features-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tty-app-features-cta-btn.tty-btn-primary {
    background: white;
    color: var(--tty-primary);
}

.tty-app-features-cta-btn.tty-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.tty-app-features-cta-btn.tty-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.tty-app-features-cta-btn.tty-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.tty-app-features-cta-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .tty-app-features-container {
        grid-template-columns: 1fr;
    }
    
    .tty-app-features-sidebar {
        position: relative;
        top: 0;
    }
    
    .tty-app-features-nav-block {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .tty-app-features-nav-link {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .tty-app-features-quick-links {
        display: none;
    }
    
    .tty-app-features-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tty-app-features-explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .tty-app-features-banner {
        padding: 40px 20px;
    }
    
    .tty-app-features-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tty-app-features-section {
        padding: 32px 24px;
    }
    
    .tty-app-features-grid,
    .tty-app-reminder-features,
    .tty-app-prescription-features,
    .tty-app-points-grid,
    .tty-app-notif-types {
        grid-template-columns: 1fr;
    }
    
    .tty-app-consult-benefits,
    .tty-app-scan-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tty-app-features-banner-icon {
        width: 60px;
        height: 60px;
    }
    
    .tty-app-features-banner-icon i {
        font-size: 28px;
    }
    
    .tty-app-features-banner-text h1 {
        font-size: 26px;
    }
    
    .tty-app-features-banner-text p {
        font-size: 15px;
    }
    
    .tty-app-features-container {
        padding: 24px 16px 60px;
    }
    
    .tty-app-features-nav-block {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
        padding: 12px;
        margin-bottom: 0px;
    }
    
    .tty-app-features-nav-link {
        flex-direction: column;
        padding: 10px 8px;
        font-size: 10px;
        gap: 4px;
        min-width: auto;
    }
    
    .tty-app-features-nav-link i {
        font-size: 24px;
    }
    
    .tty-app-features-nav-link span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .tty-app-features-section {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .tty-app-features-section h2 {
        font-size: 22px;
        flex-wrap: wrap;
    }
    
    .tty-section-intro {
        font-size: 15px;
    }
    
    .tty-app-features-value-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .tty-app-features-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .tty-app-features-highlight {
        padding: 20px 16px;
    }
    
    .tty-app-features-highlight-icon {
        width: 50px;
        height: 50px;
    }
    
    .tty-app-features-highlight-icon i {
        font-size: 22px;
    }
    
    .tty-app-features-highlight h4 {
        font-size: 14px;
    }
    
    .tty-app-features-highlight p {
        font-size: 12px;
    }
    
    .tty-app-order-header {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .tty-app-order-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .tty-app-order-actions {
        flex-direction: column;
    }
    
    .tty-app-order-actions .tty-app-btn {
        width: 100%;
        justify-content: center;
    }
    
    .tty-app-reminder-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .tty-app-points-item {
        flex-wrap: wrap;
    }
    
    .tty-app-points-amount {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
    
    .tty-app-features-explore-grid {
        grid-template-columns: 1fr;
    }
    
    .tty-app-features-cta {
        padding: 32px 20px;
    }
    
    .tty-app-features-cta h3 {
        font-size: 22px;
    }
    
    .tty-app-features-cta p {
        font-size: 14px;
    }
    
    .tty-app-features-cta-buttons {
        flex-direction: column;
    }
    
    .tty-app-features-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .tty-app-demo-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tty-app-demo-btn {
        flex: 1;
        min-width: 100px;
        justify-content: center;
    }
    
    .tty-app-demo-steps {
        display: none;
    }
}

@media (max-width: 480px) {
    .tty-app-features-banner {
        padding: 32px 16px;
    }
    
    .tty-app-features-banner-text h1 {
        font-size: 22px;
    }
    
    .tty-app-features-nav-block {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tty-app-features-section {
        padding: 20px 16px;
    }
    
    .tty-app-features-section h2 {
        font-size: 20px;
    }
    
    .tty-app-features-highlights {
        grid-template-columns: 1fr;
    }
    
    .tty-app-notification-card {
        padding: 16px;
    }
    
    .tty-app-notification-actions {
        flex-direction: column;
    }
    
    .tty-app-email-card {
        padding: 16px;
    }
    
    .tty-app-video-card {
        max-width: 100%;
    }
    
    .tty-app-scan-frame {
        width: 100%;
        max-width: 265px;
    }
    
    .tty-app-points-card {
        padding: 24px 20px;
    }
    
    .tty-app-points-number {
        font-size: 44px;
    }
    
    .tty-app-features-faq-question {
        padding: 16px;
    }
    
    .tty-app-features-faq-question span {
        font-size: 14px;
    }
    
    .tty-app-features-faq-answer p {
        padding: 0 16px 16px;
        font-size: 13px;
    }
    
    .tty-app-features-explore-card {
        padding: 16px;
    }
    
    .tty-app-demo-frame {
        width: 260px;
    }
}

/* ========================================
   DARK MODE
   ======================================== */

[data-theme="dark"] .tty-app-features-wrapper::before {
    opacity: 0.5;
}

[data-theme="dark"] .tty-app-demo-header-btn {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-demo-header-btn i {
    color: var(--tty-text-primary);
}

[data-theme="dark"] .tty-app-demo-header-btn.tty-demo-hamburger {
    background: var(--tty-primary);
}

[data-theme="dark"] .tty-app-demo-header-btn.tty-demo-hamburger i {
    color: white;
}

[data-theme="dark"] .tty-app-features-section {
    background: var(--tty-bg-secondary);
    border-color: var(--tty-border-medium);
}

[data-theme="dark"] .tty-app-features-nav-block {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-features-quick-links {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-features-highlight {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-phone-screen,
[data-theme="dark"] .tty-app-demo-screen {
    background: var(--tty-bg-primary);
}

[data-theme="dark"] .tty-app-home-card,
[data-theme="dark"] .tty-app-demo-quick-card {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-order-card {
    background: var(--tty-bg-tertiary);
    border-color: var(--tty-border-medium);
}

[data-theme="dark"] .tty-app-tracking-bar,
[data-theme="dark"] .tty-app-demo-tracking-bar {
    background: var(--tty-border-medium);
}

[data-theme="dark"] .tty-app-feature-card {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-status-overview {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-notification-card,
[data-theme="dark"] .tty-app-demo-notif-card {
    background: var(--tty-bg-secondary);
    border-color: var(--tty-border-medium);
}

[data-theme="dark"] .tty-app-notif-preview {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-reminder-feature {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-schedule-preview {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-schedule-item {
    background: var(--tty-bg-secondary);
}

[data-theme="dark"] .tty-app-email-card {
    background: var(--tty-bg-secondary);
    border-color: var(--tty-border-medium);
}

[data-theme="dark"] .tty-app-email-tracking {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-prescription-card {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-scan-product {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-scan-product-image {
    background: var(--tty-bg-secondary);
}

[data-theme="dark"] .tty-app-scan-success {
    background: rgba(16, 185, 129, 0.15);
}

[data-theme="dark"] .tty-app-points-item {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-notif-type {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-notif-note {
    background: rgba(0, 95, 95, 0.1);
}

[data-theme="dark"] .tty-app-features-faq-item {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-features-explore-card {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-demo-order,
[data-theme="dark"] .tty-app-demo-reminder-item {
    background: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-app-demo-nav {
    background: var(--tty-bg-primary);
    border-color: var(--tty-border-medium);
}

[data-theme="dark"] .tty-demo-reset {
    background: var(--tty-bg-tertiary);
    border-color: var(--tty-border-medium);
}

[data-theme="dark"] .tty-notif-secondary {
    background: var(--tty-bg-tertiary);
    border-color: var(--tty-border-medium);
}

[data-theme="dark"] .tty-app-btn-outline {
    border-color: var(--tty-border-medium);
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .tty-app-features-sidebar,
    .tty-app-features-banner-pattern,
    .tty-app-features-cta-float,
    .tty-app-demo-container,
    .tty-app-features-cta {
        display: none !important;
    }
    
    .tty-app-features-container {
        display: block;
    }
    
    .tty-app-features-section {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .tty-app-features-faq-answer {
        max-height: none !important;
        display: block !important;
    }
}

/* ========================================
   ACCESSIBILITY ENHANCEMENTS
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    .tty-app-features-highlight,
    .tty-app-feature-card,
    .tty-app-reminder-feature,
    .tty-app-prescription-card,
    .tty-app-points-item,
    .tty-app-features-explore-card,
    .tty-app-btn,
    .tty-app-features-cta-btn,
    .tty-app-demo-btn {
        transition: none;
    }
    
    .tty-app-scan-line {
        animation: none;
    }
    
    .tty-app-live-dot {
        animation: none;
    }
    
    .tty-app-schedule-item.current .tty-app-schedule-status i {
        animation: none;
    }
    
    .tty-app-features-cta-float {
        animation: none;
    }
    
    .tty-app-demo-content > div.tty-demo-active {
        animation: none;
    }
    
    .tty-app-demo-notif-card {
        animation: none;
    }
    
    .tty-app-demo-points-card {
        animation: none;
    }
}

/* Skip link for accessibility */
.tty-app-features-skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--tty-primary);
    color: white;
    padding: 8px 16px;
    z-index: 100;
    transition: top 0.3s ease;
}

.tty-app-features-skip-link:focus {
    top: 0;
}
        
        