/* ========================================
   TTY REMINDERS INFO PAGE - Specific styling
   Uses base variables from theme.css
   ======================================== */

/* Base wrapper */
.tty-reminders-info-wrapper {
    position: relative;
    overflow: hidden;
    font-family: inherit;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Decorative pattern background */
.tty-reminders-info-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 9%;
    width: 40%;
    height: 100%;
    opacity: 0.05;
    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");");
    pointer-events: none;
    z-index: 0;
}

.tty-reminders-info-wrapper > * {
    position: relative;
    z-index: 1;
}

/* Banner section */
.tty-reminders-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    overflow: hidden;
    margin-bottom: 40px;
    margin-top: 40px;
}

.tty-reminders-info-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.tty-reminders-info .tty-hero-title {
    margin: 0px 0px 10px 0px;
}

.tty-reminders-info-subtitle {
    font-size: 24px;
    color: var(--tty-primary);
    margin: 0px 0px 20px 0px;
}

/* Container layout */
.tty-reminders-info-container {
    display: flex;
    gap: 40px;
}

/* Sidebar navigation */
.tty-reminders-info-sidebar {
    flex: 0 0 300px;
    position: sticky;
    top: 150px;
    height: fit-content;
}

.tty-reminders-info-nav-block,
.tty-reminders-info-links-block {
    background-color: var(--tty-bg-secondary);
    border-radius: 30px;
    padding: 20px;
    margin-bottom: 20px;
}

.tty-reminders-info-nav-block h3,
.tty-reminders-info-links-block h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.tty-reminders-info-nav-list,
.tty-reminders-info-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tty-reminders-info-nav-list li,
.tty-reminders-info-quick-links li {
    margin-bottom: 10px;
}

.tty-reminders-info-nav-list a,
.tty-reminders-info-quick-links a {
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    transition: var(--tty-transition-normal);
}

.tty-reminders-info-nav-list a:hover,
.tty-reminders-info-quick-links a:hover,
.tty-reminders-info-nav-list a.active {
    background: var(--tty-bg-linear-graniet);
    color: var(--tty-text-light);
}

.tty-reminders-info-quick-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tty-reminders-info-quick-links a i {
    font-size: 12px;
    opacity: 0.7;
    transition: var(--tty-transition-normal);
}

.tty-reminders-info-quick-links a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

/* Main content area */
.tty-reminders-info-content-main {
    flex: 1;
}

.tty-reminders-info-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.tty-reminders-info-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.tty-reminders-info-section h2 {
    color: var(--tty-primary);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 34px;
    line-height: 1.2;
}

.tty-reminders-info-block {
    background-color: var(--tty-bg-secondary);
    padding: 30px;
    border-radius: 30px;
}

.tty-reminders-info-block h3 {
    color: var(--tty-primary);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.tty-reminders-info-intro {
    font-size: 18px;
    font-weight: 600;
    color: var(--tty-primary);
    margin-bottom: 25px;
}

/* Value Banner */
.tty-reminders-info-value-banner {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(0, 95, 95, 0.3);
    position: relative;
    overflow: hidden;
}

.tty-reminders-info-value-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

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

.tty-reminders-info-value-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.tty-reminders-info-value-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.tty-reminders-info-value-content h3 {
    color: white;
    margin: 0 0 10px;
    font-size: 28px;
}

.tty-reminders-info-value-content p {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 16px;
}

/* Benefits Grid */
.tty-reminders-info-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.tty-reminders-info-benefit-card {
    background-color: var(--tty-text-light);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: var(--tty-transition-normal);
    position: relative;
    overflow: hidden;
}

.tty-reminders-info-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tty-primary), #00a896);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tty-reminders-info-benefit-card:hover::before {
    transform: scaleX(1);
}

.tty-reminders-info-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.tty-reminders-info-benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--tty-primary);
}

.tty-reminders-info-benefit-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.tty-reminders-info-benefit-card p {
    margin: 0;
    line-height: 1.5;
}

/* Two Tools Grid */
.tty-reminders-info-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.tty-reminders-info-tool-card {
    background-color: var(--tty-text-light);
    border-radius: 15px;
    padding: 30px;
    transition: var(--tty-transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.tty-reminders-info-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tty-reminders-info-tool-card.tty-tool-reminder:hover {
    border-color: #4F46E5;
}

.tty-reminders-info-tool-card.tty-tool-countdown:hover {
    border-color: #F59E0B;
}

.tty-reminders-info-tool-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tty-reminders-info-tool-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.tty-tool-reminder .tty-reminders-info-tool-icon {
    background: rgba(79, 70, 229, 0.15);
    color: #4F46E5;
}

.tty-tool-countdown .tty-reminders-info-tool-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
}

.tty-reminders-info-tool-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tty-badge-reminder {
    background: rgba(79, 70, 229, 0.15);
    color: #4F46E5;
}

.tty-badge-countdown {
    background: rgba(245, 158, 11, 0.15);
    color: #F59E0B;
}

.tty-reminders-info-tool-card h3 {
    margin: 0 0 15px;
    font-size: 24px;
    color: var(--tty-primary);
}

.tty-reminders-info-tool-card > p {
    margin: 0 0 20px;
    line-height: 1.6;
}

.tty-reminders-info-tool-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tty-reminders-info-tool-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tty-reminders-info-tool-features li:last-child {
    border-bottom: none;
}

.tty-tool-reminder .tty-reminders-info-tool-features i { color: #4F46E5; }
.tty-tool-countdown .tty-reminders-info-tool-features i { color: #F59E0B; }

/* Categories Grid */
.tty-reminders-info-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tty-reminders-info-category-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background-color: var(--tty-text-light);
    border-radius: 12px;
    border-left: 4px solid var(--cat-color);
    transition: var(--tty-transition-normal);
}

.tty-reminders-info-category-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tty-reminders-info-category-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--cat-color) 15%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cat-color);
    flex-shrink: 0;
}

.tty-reminders-info-category-content h4 {
    margin: 0 0 4px;
    font-size: 16px;
    color: var(--tty-primary);
}

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

/* Features Grid */
.tty-reminders-info-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tty-reminders-info-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: var(--tty-text-light);
    border-radius: 12px;
    transition: var(--tty-transition-normal);
}

.tty-reminders-info-feature-item:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.05) 0%, rgba(0, 168, 150, 0.05) 100%);
}

.tty-reminders-info-feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tty-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.tty-reminders-info-feature-content h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--tty-primary);
}

.tty-reminders-info-feature-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* FAQ List */
.tty-reminders-info-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tty-reminders-info-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-reminders-info-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tty-reminders-info-faq-question {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--tty-transition-normal);
}

.tty-reminders-info-faq-question:hover {
    background: rgba(0, 95, 95, 0.02);
}

.tty-reminders-info-faq-question h4 {
    margin: 0;
    font-weight: 600;
    color: var(--tty-text-primary);
    font-size: 17px;
}

.tty-reminders-info-toggle-icon {
    color: var(--tty-primary);
    transition: var(--tty-transition-normal);
}

.tty-reminders-info-faq-item.active .tty-reminders-info-toggle-icon {
    transform: rotate(180deg);
}

.tty-reminders-info-faq-answer {
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.02) 0%, rgba(0, 168, 150, 0.02) 100%);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.tty-reminders-info-faq-item.active .tty-reminders-info-faq-answer {
    padding: 15px 20px 20px;
    max-height: 300px;
}

.tty-reminders-info-faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--tty-text-secondary);
}

/* Explore Grid */
.tty-reminders-info-explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.tty-reminders-info-explore-card {
    background: linear-gradient(135deg, var(--tty-text-light) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 15px;
    padding: 25px;
    text-decoration: none;
    color: var(--tty-text-primary);
    transition: var(--tty-transition-normal);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.tty-reminders-info-explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--tty-primary);
    color: var(--tty-text-primary);
}

.tty-reminders-info-explore-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(0, 95, 95, 0.1) 0%, rgba(0, 168, 150, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--tty-primary);
}

.tty-reminders-info-explore-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: var(--tty-primary);
}

.tty-reminders-info-explore-card > p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.5;
    flex-grow: 1;
}

.tty-reminders-info-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tty-primary);
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
}

.tty-reminders-info-explore-link i {
    transition: transform 0.3s ease;
}

.tty-reminders-info-explore-card:hover .tty-reminders-info-explore-link i {
    transform: translateX(5px);
}

/* Get Started Section */
.tty-reminders-info-get-started {
    background: var(--tty-secondary);
    border-radius: 12px;
    margin: 60px 0 150px;
    overflow: hidden;
    position: relative;
    border-bottom: none;
}

.tty-reminders-info-get-started::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.tty-reminders-info-get-started-container {
    padding: 50px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tty-reminders-info-get-started h2 {
    color: white;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 32px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tty-reminders-info-get-started p {
    color: white;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tty-reminders-info-start-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.tty-reminders-info-start-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--tty-text-light);
    color: var(--tty-primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--tty-transition-normal);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tty-reminders-info-start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--tty-primary);
}

.tty-reminders-info-start-button.tty-reminders-info-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: none;
}

.tty-reminders-info-start-button.tty-reminders-info-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.tty-reminders-info-tagline {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.tty-reminders-info-tagline p {
    margin: 0;
}

.tty-reminders-info-get-started .heartbeat polyline {
    stroke: rgba(255, 255, 255, 0.6);
}

/* ========================================
   INTERACTIVE DEMO SECTION
   ======================================== */

.tty-reminders-info-demo-block {
    padding: 30px;
}

.tty-reminders-info-demo-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--tty-text-secondary);
}

.tty-reminders-demo-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Demo Window Frame */
.tty-reminders-demo-window {
    background: var(--tty-bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Demo Header Bar */
.tty-reminders-demo-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tty-reminders-demo-header-dots {
    display: flex;
    gap: 8px;
}

.tty-reminders-demo-header-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.tty-reminders-demo-header-dots span:nth-child(1) { background: #ff5f57; }
.tty-reminders-demo-header-dots span:nth-child(2) { background: #ffbd2e; }
.tty-reminders-demo-header-dots span:nth-child(3) { background: #28ca41; }

.tty-reminders-demo-header-title {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.tty-reminders-demo-header-actions {
    display: flex;
    gap: 12px;
    color: #999;
    font-size: 12px;
}

/* Demo Interface */
.tty-reminders-demo-interface {
    background: var(--tty-bg-primary);
    padding: 16px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    min-height: 560px;
}

/* Demo Tabs */
.tty-reminders-demo-tabs {
    display: flex;
    gap: 4px;
    background: var(--tty-bg-secondary);
    padding: 4px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.tty-reminders-demo-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tty-reminders-demo-tab.active {
    background: var(--tty-primary);
    color: white;
}

.tty-reminders-demo-tab i {
    font-size: 16px;
}

.tty-reminders-demo-tab-badge {
    background: var(--tty-secondary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Demo Toolbar */
.tty-reminders-demo-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tty-reminders-demo-add-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--tty-bg-secondary);
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--tty-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tty-reminders-demo-add-btn:hover {
    background: var(--tty-primary);
    color: white;
}

.tty-reminders-demo-add-btn.highlight {
    animation: btn-pulse 1s ease infinite;
    background: var(--tty-primary);
    color: white;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 95, 95, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 95, 95, 0); }
}

.tty-reminders-demo-add-btn i {
    font-size: 18px;
}

.tty-reminders-demo-filters {
    display: flex;
    gap: 8px;
}

.tty-reminders-demo-filter {
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--tty-border-light);
    border-radius: 15px;
    font-size: 12px;
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tty-reminders-demo-filter.active {
    background: var(--tty-primary);
    color: white;
    border-color: var(--tty-primary);
}

/* Demo Content Area */
.tty-reminders-demo-content {
    flex: 1;
    overflow-y: auto;
}

.tty-reminders-demo-tab-content {
    display: none;
}

.tty-reminders-demo-tab-content.active {
    display: block;
}

/* Demo Empty State */
.tty-reminders-demo-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.tty-reminders-demo-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ccc;
    margin-bottom: 20px;
}

.tty-reminders-demo-empty h4 {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--tty-text-secondary);
}

.tty-reminders-demo-empty p {
    margin: 0;
    font-size: 14px;
}

/* Demo Reminder Card */
.tty-reminders-demo-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--tty-bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--reminder-color);
    margin-bottom: 12px;
    animation: card-slide-in 0.4s ease;
}

@keyframes card-slide-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tty-reminders-demo-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--reminder-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.tty-reminders-demo-card-content {
    flex: 1;
    min-width: 0;
}

.tty-reminders-demo-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.tty-reminders-demo-card-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--tty-text-primary);
}

.tty-reminders-demo-card-time {
    font-size: 14px;
    font-weight: 600;
    color: var(--tty-primary);
}

.tty-reminders-demo-card-desc {
    margin: 0 0 8px;
    font-size: 14px;
    color: #666;
}

.tty-reminders-demo-card-meta {
    display: flex;
    gap: 12px;
}

.tty-reminders-demo-card-repeat {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tty-reminders-demo-card-actions {
    display: flex;
    gap: 8px;
}

.tty-reminders-demo-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--tty-border-light);
    background: white;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.tty-reminders-demo-action-btn:hover {
    border-color: var(--tty-primary);
    color: var(--tty-primary);
}

.tty-reminders-demo-action-btn.completed {
    background: var(--tty-success);
    border-color: var(--tty-success);
    color: white;
}

.tty-reminders-demo-card.completed {
    opacity: 0.6;
}

.tty-reminders-demo-card.completed .tty-reminders-demo-card-header h4 {
    text-decoration: line-through;
}

/* Demo Countdown Card */
.tty-reminders-demo-countdown-card {
    background: var(--tty-bg-secondary);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    border-left: 4px solid #8B5CF6;
}

.tty-reminders-demo-countdown-mood {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    animation: mood-bounce 2s ease infinite;
}

@keyframes mood-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.tty-reminders-demo-countdown-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    margin-bottom: 16px;
}

.tty-reminders-demo-countdown-content h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--tty-text-primary);
}

.tty-reminders-demo-countdown-content p {
    margin: 0 0 12px;
    font-size: 14px;
    color: #666;
}

.tty-reminders-demo-countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #8B5CF6;
    margin-bottom: 16px;
}

.tty-reminders-demo-countdown-timer i {
    animation: pulse 2s ease infinite;
}

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

.tty-reminders-demo-countdown-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #8B5CF6;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tty-reminders-demo-countdown-action:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    color: white;
}

/* Demo Statistics Bar */
.tty-reminders-demo-stats {
    display: flex;
    gap: 20px;
    padding: 16px;
    background: var(--tty-bg-secondary);
    border-radius: 12px;
    margin-top: 16px;
}

.tty-reminders-demo-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.tty-reminders-demo-stat > i {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.tty-reminders-demo-stat:first-child > i {
    background: rgba(79, 70, 229, 0.1);
    color: #4F46E5;
}

.tty-reminders-demo-stat:last-child > i {
    background: rgba(16, 163, 74, 0.1);
    color: #10A34A;
}

.tty-reminders-demo-stat-info {
    display: flex;
    flex-direction: column;
}

.tty-reminders-demo-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--tty-text-primary);
}

.tty-reminders-demo-stat-label {
    font-size: 12px;
    color: #888;
}

/* Demo Modal */
.tty-reminders-demo-modal {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: modal-fade-in 0.3s ease;
}

@keyframes modal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tty-reminders-demo-modal-content {
    background: var(--tty-bg-primary);
    border-radius: 30px;
    width: 90%;
    max-width: 420px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modal-slide-up 0.4s ease;
}

@keyframes modal-slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.tty-reminders-demo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tty-reminders-demo-modal-header h4 {
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tty-reminders-demo-modal-header h4 i {
    color: var(--tty-primary);
}

.tty-reminders-demo-modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #888;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Demo Modal Steps */
.tty-reminders-demo-modal-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    background: var(--tty-bg-secondary);
}

.tty-reminders-demo-step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #888;
}

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

.tty-reminders-demo-step span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}

.tty-reminders-demo-step.active span {
    background: var(--tty-primary);
    color: white;
}

.tty-reminders-demo-step-line {
    width: 30px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
}

.tty-reminders-demo-modal-progress {
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
}

.tty-reminders-demo-modal-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--tty-primary), #00a896);
    transition: width 0.3s ease;
}

.tty-reminders-demo-modal-body {
    padding: 20px;
}

.tty-reminders-demo-form-group {
    margin-bottom: 16px;
}

.tty-reminders-demo-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--tty-text-primary);
    margin-bottom: 8px;
}

.tty-reminders-demo-form-group select,
.tty-reminders-demo-form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--tty-border-light);
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.tty-reminders-demo-form-group select:focus,
.tty-reminders-demo-form-group input:focus {
    border-color: var(--tty-primary);
    outline: none;
}

.tty-reminders-demo-input-wrapper {
    position: relative;
}

.tty-reminders-demo-input-cursor {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 18px;
    background: var(--tty-primary);
    animation: blink 1s step-end infinite;
    display: none;
}

.tty-reminders-demo-input-wrapper.typing .tty-reminders-demo-input-cursor {
    display: block;
}

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

.tty-reminders-demo-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tty-reminders-demo-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 20px;
    background: var(--tty-bg-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tty-reminders-demo-btn-secondary,
.tty-reminders-demo-btn-primary {
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tty-reminders-demo-btn-secondary {
    background: transparent;
    color: #666;
}

.tty-reminders-demo-btn-primary {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 95, 95, 0.3);
}

.tty-reminders-demo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 95, 95, 0.4);
}

.tty-reminders-demo-btn-primary.saving {
    animation: btn-save-pulse 0.5s ease;
}

@keyframes btn-save-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* Demo Controls */
.tty-reminders-demo-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding: 16px;
    background: var(--tty-bg-secondary);
    border-radius: 12px;
}

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

.tty-reminders-demo-play-btn {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 95, 95, 0.3);
}

.tty-reminders-demo-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 95, 95, 0.4);
}

.tty-reminders-demo-pause-btn {
    background: #E5924C;
    color: white;
    box-shadow: 0 4px 15px rgba(229, 146, 76, 0.3);
}

.tty-reminders-demo-reset-btn {
    background: var(--tty-bg-primary);
    color: var(--tty-text-secondary);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tty-reminders-demo-progress {
    flex: 1;
    max-width: 200px;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

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

/* Demo Steps Indicator */
.tty-reminders-demo-steps-indicator {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 16px;
}

.tty-reminders-demo-step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.tty-reminders-demo-step-dot::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tty-reminders-demo-step-dot.active::before {
    background: linear-gradient(135deg, var(--tty-primary) 0%, #00a896 100%);
    box-shadow: 0 0 0 4px rgba(0, 95, 95, 0.2);
    transform: scale(1.2);
}

.tty-reminders-demo-step-dot.completed::before {
    background: var(--tty-success);
}

.tty-reminders-demo-step-label {
    font-size: 12px;
    color: #888;
    text-align: center;
    white-space: nowrap;
}

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

/* Dark Theme */
[data-theme="dark"] .tty-reminders-info-wrapper::before {
    opacity: 0.03;
}

[data-theme="dark"] .tty-reminders-info-benefit-card,
[data-theme="dark"] .tty-reminders-info-tool-card,
[data-theme="dark"] .tty-reminders-info-category-item,
[data-theme="dark"] .tty-reminders-info-feature-item,
[data-theme="dark"] .tty-reminders-info-faq-item,
[data-theme="dark"] .tty-reminders-info-explore-card {
    background-color: var(--tty-bg-tertiary);
}

[data-theme="dark"] .tty-reminders-demo-header-bar {
    background: linear-gradient(180deg, #2a2a2a 0%, #222 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tty-reminders-info-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tty-reminders-info-explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .tty-reminders-info-container {
        flex-direction: column;
    }
    
    .tty-reminders-info-sidebar {
        position: relative;
        top: 0;
        flex: 1 1 auto;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .tty-reminders-info-benefits-grid,
    .tty-reminders-info-features-grid,
    .tty-reminders-info-categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tty-reminders-info-wrapper::before {
        display: none;
    }
    
    .tty-reminders-info-banner {
        margin-top: 20px;
    }
    
    .tty-reminders-info-value-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .tty-reminders-info-explore-grid {
        grid-template-columns: 1fr;
    }
    
    .tty-reminders-info-start-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .tty-reminders-info-start-button {
        width: 100%;
        justify-content: center;
    }
    
    .tty-reminders-demo-tabs {
        flex-wrap: wrap;
    }
    
    .tty-reminders-demo-tab {
        flex: 1 1 45%;
    }
    
    .tty-reminders-demo-tab span:not(.tty-reminders-demo-tab-badge) {
        display: none;
    }
    
    .tty-reminders-demo-toolbar {
        flex-wrap: wrap;
    }
    
    .tty-reminders-demo-filters {
        flex-wrap: wrap;
    }
    
    .tty-reminders-demo-stats {
        flex-direction: column;
    }
    
    .tty-reminders-demo-controls {
        flex-wrap: wrap;
    }
    
    .tty-reminders-demo-progress {
        order: 3;
        width: 100%;
        max-width: none;
        margin-top: 12px;
    }
    
    .tty-reminders-demo-steps-indicator {
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .tty-reminders-info-block {
        padding: 20px 15px;
    }
    
    .tty-reminders-info-section h2 {
        font-size: 26px;
    }
    
    .tty-reminders-info-get-started-container {
        padding: 30px 20px;
    }
    
    .tty-reminders-info-get-started h2 {
        font-size: 24px;
    }
    
    .tty-reminders-demo-form-row {
        grid-template-columns: 1fr;
    }
    
    .tty-reminders-demo-modal-steps {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .tty-reminders-demo-step-line {
        display: none;
    }
}

/* Print styles */
@media print {
    .tty-reminders-info-sidebar,
    .tty-reminders-info-get-started,
    .tty-reminders-info-demo-block {
        display: none;
    }
    
    .tty-reminders-info-container {
        flex-direction: column;
    }
    
    .tty-reminders-info-faq-answer {
        max-height: none !important;
        padding: 15px 20px !important;
    }
}