/**
 * Tree-Ripe Help Center Premium Styles
 * Version: 2.0.0
 */

/* ================================================== */
/* VARIABLES & BRAND COLORS */
/* ================================================== */

:root {
    /* Tree-Ripe Brand Colors */
    --forest-green: #0F5E41;
    --forest-deep: #0A3A28;
    --forest-light: #1A7A56;
    --mint: #BBE0C6;
    --mint-soft: #D5EBE0;
    --cream: #E8F4EB;
    --cream-soft: #F5EEE6;
    --citrus-orange: #E78825;
    
    /* UI Colors */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-headline: Georgia, 'Times New Roman', serif;
    --font-ui: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-fast: 150ms;
    --transition-normal: 250ms;
    --transition-slow: 350ms;
}

/* ================================================== */
/* RESET & BASE STYLES */
/* ================================================== */

* {
    box-sizing: border-box;
}

.tr-help-center,
.tr-faq-category-page {
    font-family: var(--font-ui);
    color: var(--gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tr-help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 768px) {
    .tr-help-container {
        padding: 0 var(--spacing-lg);
    }
}

/* ================================================== */
/* HERO SECTION */
/* ================================================== */

.tr-help-hero {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-deep) 100%);
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
    position: relative;
    z-index: 10;
    overflow: visible;
}

.tr-help-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.tr-help-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--spacing-md);
}

.tr-help-hero-title {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 var(--spacing-sm);
}

.tr-help-hero-subtitle {
    font-size: 16px;
    color: var(--mint-soft);
    margin: 0 0 var(--spacing-lg);
}

@media (min-width: 768px) {
    .tr-help-hero {
        padding: var(--spacing-2xl) 0;
    }
    
    .tr-help-hero-title {
        font-size: 48px;
        margin-bottom: var(--spacing-md);
    }
    
    .tr-help-hero-subtitle {
        font-size: 18px;
    }
}

/* ================================================== */
/* SEARCH BAR */
/* ================================================== */

.tr-help-search {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    z-index: 1000;
}

/* Hide SVG icon element — using background-image on input instead */
.tr-help-search-icon {
    display: none !important;
}

.tr-help-search input[type="search"].tr-help-search-input,
.tr-help-search-input {
    width: 100% !important;
    height: 64px !important;
    padding: 0 64px 0 28px !important;
    border: none !important;
    border-radius: 999px !important;
    background-color: #FFFFFF !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M11 19a8 8 0 1 0 0-16 8 8 0 0 0 0 16zM21 21l-4.35-4.35' stroke='%23408469' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 24px center !important;
    background-size: 24px 24px !important;
    font-family: var(--font-ui);
    font-size: 17px !important;
    color: #1F2937;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* Hide search icon when user is typing */
.tr-help-search input[type="search"].tr-help-search-input:not(:placeholder-shown),
.tr-help-search-input:not(:placeholder-shown) {
    background-image: none !important;
}

/* Remove Safari's native search decoration */
.tr-help-search-input::-webkit-search-cancel-button,
.tr-help-search-input::-webkit-search-decoration,
.tr-help-search-input::-webkit-search-results-button,
.tr-help-search-input::-webkit-search-results-decoration {
    -webkit-appearance: none !important;
    display: none !important;
}

.tr-help-search input[type="search"].tr-help-search-input::placeholder,
.tr-help-search-input::placeholder {
    color: #9CA3AF !important;
}

.tr-help-search input[type="search"].tr-help-search-input:focus,
.tr-help-search-input:focus {
    outline: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 0 0 3px rgba(187, 224, 198, 0.4) !important;
}

.tr-help-search-clear {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #E5E7EB;
    color: #4B5563;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 0;
    transition: all 150ms ease;
}

.tr-help-search-clear[style*="display: flex"] {
    display: flex !important;
}

.tr-help-search-clear:hover {
    background: #D1D5DB;
    color: #1F2937;
    transform: translateY(-50%) scale(1.05);
}

.tr-help-search-clear:active {
    transform: translateY(-50%) scale(0.95);
}

/* ================================================== */
/* QUICK ACTIONS */
/* ================================================== */

.tr-help-quick-actions {
    position: relative;
    z-index: 1;
    padding: var(--spacing-xl) 0;
    background: var(--cream-soft);
}

.tr-help-quick-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 640px) {
    .tr-help-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tr-help-quick-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tr-help-quick-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-lg);
    background: var(--white);
    border: 2px solid var(--cream);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--gray-900);
    transition: all var(--transition-normal) var(--transition-smooth);
    min-height: 140px;
}

.tr-help-quick-card:hover {
    border-color: var(--mint);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.tr-help-quick-icon {
    font-size: 32px;
    margin-bottom: var(--spacing-sm);
    transition: transform var(--transition-normal) var(--transition-bounce);
}

.tr-help-quick-card:hover .tr-help-quick-icon {
    transform: scale(1.1);
}

.tr-help-quick-title {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 16px;
    color: var(--forest-green);
    margin: 0 0 4px;
    letter-spacing: 0.01em;
}

.tr-help-quick-desc {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.tr-help-quick-arrow {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    color: var(--gray-300);
    transition: all var(--transition-normal) var(--transition-smooth);
}

.tr-help-quick-card:hover .tr-help-quick-arrow {
    color: var(--forest-green);
    transform: translateX(4px);
}

/* ================================================== */
/* CATEGORY GRID */
/* ================================================== */

.tr-help-categories {
    padding: var(--spacing-2xl) 0;
}

.tr-help-section-title {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 var(--spacing-lg);
    text-align: center;
}

@media (min-width: 768px) {
    .tr-help-section-title {
        font-size: 40px;
        margin-bottom: var(--spacing-xl);
    }
}

.tr-help-category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .tr-help-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

@media (min-width: 1024px) {
    .tr-help-category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ================================================== */
/* CATEGORY CARDS */
/* ================================================== */

.tr-help-cat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-normal) var(--transition-smooth);
    min-height: 120px;
}

.tr-help-cat-card:hover {
    border-color: var(--mint);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.tr-help-cat-card--highlight {
    background: linear-gradient(135deg, var(--mint-soft) 0%, var(--cream) 100%);
    border-color: var(--mint);
}

.tr-help-cat-card--highlight:hover {
    border-color: var(--forest-light);
    box-shadow: var(--shadow-xl);
}

.tr-help-cat-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--forest-green);
    background: var(--cream-soft);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal) var(--transition-bounce);
}

.tr-help-cat-card:hover .tr-help-cat-icon {
    transform: scale(1.1) rotate(5deg);
}

.tr-help-cat-card--highlight .tr-help-cat-icon {
    background: var(--white);
}

.tr-help-cat-content {
    flex: 1;
    min-width: 0;
}

.tr-help-cat-eyebrow {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin: 0 0 4px;
}

.tr-help-cat-title {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    color: var(--forest-green);
    margin: 0 0 4px;
    line-height: 1.3;
}

.tr-help-cat-subtitle {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

.tr-help-cat-arrow {
    flex-shrink: 0;
    color: var(--gray-300);
    transition: all var(--transition-normal) var(--transition-smooth);
}

.tr-help-cat-card:hover .tr-help-cat-arrow {
    color: var(--forest-green);
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .tr-help-cat-card {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--spacing-xl);
        min-height: 200px;
    }
    
    .tr-help-cat-icon {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }
    
    .tr-help-cat-title {
        font-size: 22px;
    }
    
    .tr-help-cat-arrow {
        position: absolute;
        top: var(--spacing-xl);
        right: var(--spacing-xl);
    }
}

/* ================================================== */
/* CONTACT SECTION */
/* ================================================== */

.tr-help-contact {
    padding: var(--spacing-2xl) 0;
    background: var(--cream-soft);
}

.tr-help-contact-card {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: var(--white);
    border: 2px solid var(--cream);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.tr-help-contact-title {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 var(--spacing-sm);
}

.tr-help-contact-text {
    font-size: 16px;
    color: var(--gray-600);
    margin: 0 0 var(--spacing-lg);
}

.tr-help-contact-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

@media (min-width: 640px) {
    .tr-help-contact-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.tr-help-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    height: 52px;
    padding: 0 var(--spacing-lg);
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: all var(--transition-normal) var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.tr-help-contact-btn--primary {
    background: var(--forest-green);
    color: var(--white);
}

.tr-help-contact-btn--primary:hover {
    background: var(--forest-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tr-help-contact-btn--secondary {
    background: var(--mint-soft);
    color: var(--forest-green);
    border-color: var(--mint);
}

.tr-help-contact-btn--secondary:hover {
    background: var(--mint);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ================================================== */
/* BREADCRUMB */
/* ================================================== */

.tr-help-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-lg) 0;
    font-size: 14px;
}

.tr-help-breadcrumb a {
    color: var(--forest-green);
    text-decoration: none;
    transition: color var(--transition-fast) var(--transition-smooth);
}

.tr-help-breadcrumb a:hover {
    color: var(--forest-deep);
    text-decoration: underline;
}

.tr-help-breadcrumb svg {
    color: var(--gray-400);
}

.tr-help-breadcrumb span {
    color: var(--gray-600);
}

/* ================================================== */
/* FAQ CATEGORY HEADER */
/* ================================================== */

.tr-faq-category-header {
    padding: var(--spacing-xl) 0;
    background: var(--cream-soft);
}

.tr-faq-cat-header-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.tr-faq-cat-header-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: var(--white);
    border: 2px solid var(--mint);
    border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
    .tr-faq-cat-header-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
}

.tr-faq-cat-header-eyebrow {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin: 0 0 4px;
}

.tr-faq-cat-header-title {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 var(--spacing-xs);
}

@media (min-width: 768px) {
    .tr-faq-cat-header-title {
        font-size: 40px;
    }
}

.tr-faq-cat-header-desc {
    font-size: 16px;
    color: var(--gray-600);
    margin: 0;
}

/* ================================================== */
/* FAQ PAGE LAYOUT */
/* ================================================== */

.tr-faq-page {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1F2937;
    line-height: 1.6;
    padding-bottom: 60px;
}

.tr-faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.tr-faq-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 14px;
    color: #6B7280;
}

.tr-faq-breadcrumb a {
    color: #0F5E41;
    text-decoration: none;
    font-weight: 500;
}

.tr-faq-breadcrumb a:hover {
    text-decoration: underline;
}

.tr-faq-header {
    background: #E8F4EB;
    padding: 40px 0;
    margin-bottom: 32px;
}

.tr-faq-header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tr-faq-header-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--forest-green, #0F5E41);
    background: #fff;
    border: 2px solid #BBE0C6;
    border-radius: 16px;
}

.tr-faq-header-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6B7280;
    margin-bottom: 4px;
}

.tr-faq-header-title {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px;
}

.tr-faq-header-desc {
    font-size: 16px;
    color: #4B5563;
    margin: 0;
}

.tr-faq-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6B7280;
}

/* ================================================== */
/* FAQ LIST (ACCORDION) - UNIFIED STYLES */
/* ================================================== */

.tr-faq-list {
    padding: var(--spacing-xl) 0 var(--spacing-2xl);
}

.tr-faq-item {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tr-faq-item:hover {
    border-color: #BBE0C6;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

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

/* Open state */
.tr-faq-item.is-open {
    border-color: #BBE0C6;
    box-shadow: 0 6px 16px rgba(15, 94, 65, 0.08);
}

.tr-faq-item.is-open .tr-faq-question {
    color: var(--forest-green) !important;
}

/* Question button */
button.tr-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: #fff !important;
    border: none;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    color: var(--forest-green) !important;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    button.tr-faq-question {
        padding: 20px 24px;
        font-size: 18px;
    }
}

button.tr-faq-question:hover {
    color: var(--forest-green) !important;
    background: #fff !important;
}

button.tr-faq-question:focus-visible {
    outline: 2px solid #BBE0C6;
    outline-offset: 3px;
}

/* Chevron */
.tr-faq-chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #9CA3AF;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
}

.tr-faq-item.is-open .tr-faq-chevron {
    transform: rotate(180deg);
    color: #0F5E41;
}

/* Answer - using max-height for smooth animation */
.tr-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.tr-faq-item.is-open .tr-faq-answer {
    max-height: 1000px;
}

.tr-faq-answer-content {
    padding: 0 20px 20px;
    color: #374151;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .tr-faq-answer-content {
        padding: 0 24px 24px;
    }
}

.tr-faq-answer-content p {
    margin: 24px 12px;
}


.tr-faq-answer-content a {
    color: #0F5E41;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s ease;
}

.tr-faq-answer-content a:hover {
    color: #0A3A28;
    text-decoration: underline;
}

.tr-faq-answer-content strong {
    color: #1F2937;
    font-weight: 700;
}

.tr-faq-answer-content ul,
.tr-faq-answer-content ol {
    margin: 0 0 12px;
    padding-left: 24px;
}

.tr-faq-answer-content li {
    margin-bottom: 6px;
}

/* ================================================== */
/* RELATED TOPICS */
/* ================================================== */

.tr-faq-related {
    padding: var(--spacing-2xl) 0;
    background: var(--cream-soft);
}

.tr-faq-related-title {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 var(--spacing-lg);
}

.tr-faq-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 640px) {
    .tr-faq-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tr-faq-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tr-faq-related-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-normal) var(--transition-smooth);
}

.tr-faq-related-card:hover {
    border-color: var(--mint);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.tr-faq-related-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: var(--cream-soft);
    border-radius: var(--radius-sm);
    transition: transform var(--transition-normal) var(--transition-bounce);
}

.tr-faq-related-card:hover .tr-faq-related-icon {
    transform: scale(1.1);
}

.tr-faq-related-name {
    flex: 1;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 16px;
    color: var(--forest-green);
    margin: 0;
}

.tr-faq-related-arrow {
    flex-shrink: 0;
    color: var(--gray-300);
    transition: all var(--transition-normal) var(--transition-smooth);
}

.tr-faq-related-card:hover .tr-faq-related-arrow {
    color: var(--forest-green);
    transform: translateX(4px);
}

/* ================================================== */
/* UTILITY CLASSES */
/* ================================================== */

.tr-help-hidden {
    display: none !important;
}

@media (max-width: 767px) {
    .tr-help-hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .tr-help-hide-desktop {
        display: none !important;
    }
}

/* ================================================== */
/* LOADING STATE */
/* ================================================== */

.tr-help-loading {
    position: relative;
}

.tr-help-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid var(--mint-soft);
    border-top-color: var(--forest-green);
    border-radius: 50%;
    animation: tr-help-spin 0.8s linear infinite;
}

@keyframes tr-help-spin {
    to {
        transform: rotate(360deg);
    }
}

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

.tr-help-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--mint);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--mint);
    outline-offset: 2px;
}

/* ================================================== */
/* V11b: FEATURED PANELS + COMPACT SIDEBAR LAYOUT */
/* ================================================== */

/* ---- Main Grid (featured + sidebar) ---- */
.tr-hc-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(40px, 5vw, 64px) clamp(20px, 4vw, 48px);
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
    text-align: left;
}

@media (max-width: 900px) {
    .tr-hc-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ---- Section Eyebrow Labels ---- */
.tr-hc-eyebrow {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #408469;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tr-hc-eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E8F4EB;
}

/* ---- Featured: Immersive 2x2 Panels ---- */
.tr-hc-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #E8F4EB;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px #0F5E4112, 0 0 0 1px #E8F4EB;
}

a.tr-hc-panel,
.tr-hc-panel {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    padding: clamp(28px, 3vw, 40px);
    text-decoration: none;
    color: #333333;
    min-height: clamp(200px, 22vw, 260px);
    position: relative;
    transition: background 0.35s ease;
    overflow: hidden;
    text-align: left;
}

.tr-hc-panel:hover {
    background: #0F5E41;
}

.tr-hc-panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.tr-hc-panel-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8F4EB;
    border-radius: 12px;
    color: #0F5E41;
    transition: background 0.35s ease, color 0.35s ease;
}

.tr-hc-panel:hover .tr-hc-panel-icon {
    background: #FFFFFF;
    color: #0F5E41;
}

.tr-hc-panel-icon svg {
    width: 22px;
    height: 22px;
}

.tr-hc-panel-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tr-hc-panel-count {
    font-size: 14px;
    font-weight: 700;
    color: #408469;
    background: #E8F4EB;
    padding: 4px 14px;
    border-radius: 100px;
    transition: background 0.35s ease, color 0.35s ease;
}

.tr-hc-panel:hover .tr-hc-panel-count {
    background: #408469;
    color: #FFFFFF;
}

.tr-hc-panel-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #408469;
    border-radius: 50%;
    color: #FFFFFF;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.tr-hc-panel:hover .tr-hc-panel-arrow {
    opacity: 1;
    transform: translateX(0);
}

.tr-hc-panel-arrow svg {
    width: 16px;
    height: 16px;
}

.tr-hc-panel-bottom {
    margin-top: 24px;
    transition: transform 0.35s ease;
}

.tr-hc-panel:hover .tr-hc-panel-bottom {
    transform: translateY(-4px);
}

.tr-hc-panel-title {
    font-family: var(--font-headline);
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    color: #0F5E41;
    line-height: 1.25;
    margin-bottom: 8px;
    transition: color 0.35s ease;
}

.tr-hc-panel:hover .tr-hc-panel-title {
    color: #FFFFFF;
}

.tr-hc-panel-subtitle {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    transition: color 0.35s ease;
}

.tr-hc-panel:hover .tr-hc-panel-subtitle {
    color: #BBE0C6;
}

@media (max-width: 600px) {
    .tr-hc-panels {
        grid-template-columns: 1fr;
    }
    .tr-hc-panel {
        min-height: 180px;
    }
}

/* ---- Sidebar: Compact (icon + title + count) ---- */
.tr-hc-sidebar {
    position: sticky;
    top: 32px;
}

.tr-hc-sidebar .tr-hc-sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 0;
    padding-left: 0;
}

.tr-hc-sidebar-item a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    text-decoration: none;
    color: #333333;
    border-radius: 12px;
    transition: background 0.2s ease;
    text-align: left;
}

.tr-hc-sidebar-item a:hover {
    background: #E8F4EB;
}

.tr-hc-sidebar-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8F4EB;
    border-radius: 10px;
    color: #0F5E41;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.tr-hc-sidebar-item a:hover .tr-hc-sidebar-icon {
    background: #0F5E41;
    color: #FFFFFF;
}

.tr-hc-sidebar-icon svg {
    width: 18px;
    height: 18px;
}

.tr-hc-sidebar-title {
    flex: 1;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 700;
    color: #0F5E41;
    line-height: 1.3;
    min-width: 0;
}

.tr-hc-sidebar-count {
    font-size: 14px;
    font-weight: 600;
    color: #408469;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .tr-hc-sidebar {
        position: static;
    }
    .tr-hc-sidebar-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }
    .tr-hc-sidebar-item a {
        padding: 12px 8px;
        gap: 12px;
    }
}

@media (max-width: 500px) {
    .tr-hc-sidebar-list {
        grid-template-columns: 1fr;
    }
}

.tr-help-search-clear svg {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
    display: block;
}

.tr-help-search-clear svg path {
    stroke: currentColor !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
}

.tr-help-search-clear:hover svg path {
    stroke: #0F5E41 !important;
}

/* ================================================== */
/* SEARCH FAQ PAGE STYLES */
/* ================================================== */

.tr-help-search-page {
    font-family: var(--font-ui);
    color: var(--gray-900);
    background: var(--cream-soft);
    min-height: 60vh;
    padding: var(--spacing-2xl) 0;
}

.tr-help-search-page .tr-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.tr-search-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.tr-search-header h1 {
    font-family: var(--font-headline);
    font-size: 42px;
    font-weight: 700;
    color: var(--forest-green);
    margin: 0 0 var(--spacing-lg);
}

.tr-search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.tr-search-input {
    width: 100%;
    padding: 18px 60px 18px 24px;
    font-size: 16px;
    font-family: var(--font-ui);
    color: var(--gray-900);
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal) var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.tr-search-input:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(15, 94, 65, 0.1), var(--shadow-md);
}

.tr-search-input::placeholder {
    color: var(--gray-400);
}

.tr-search-button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px 24px;
    background: var(--forest-green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast) var(--transition-smooth);
}

.tr-search-button:hover {
    background: var(--forest-deep);
    transform: translateY(-50%) translateY(-1px);
}

.tr-search-results {
    margin-bottom: var(--spacing-2xl);
}

.tr-search-results h2 {
    font-family: var(--font-headline);
    font-size: 24px;
    color: var(--gray-900);
    margin: 0 0 var(--spacing-lg);
}

.tr-faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.tr-no-results {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.tr-no-results h2 {
    font-family: var(--font-headline);
    font-size: 28px;
    color: var(--gray-900);
    margin: 0 0 var(--spacing-sm);
}

.tr-no-results p {
    color: var(--gray-600);
    font-size: 16px;
    margin: 0;
}

.tr-popular-categories {
    margin-top: var(--spacing-2xl);
}

.tr-popular-categories h2 {
    font-family: var(--font-headline);
    font-size: 32px;
    color: var(--gray-900);
    margin: 0 0 var(--spacing-lg);
    text-align: center;
}

.tr-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.tr-category-card {
    display: block;
    padding: var(--spacing-lg);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-normal) var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.tr-category-card:hover {
    border-color: var(--forest-green);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.tr-category-icon {
    font-size: 32px;
    margin-bottom: var(--spacing-sm);
}

.tr-category-card h3 {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    color: var(--forest-green);
    margin: 0 0 var(--spacing-xs);
}

.tr-category-card p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .tr-search-header h1 {
        font-size: 32px;
    }
    
    .tr-search-input {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .tr-search-button {
        position: static;
        transform: none;
        width: 100%;
        margin-top: var(--spacing-sm);
        padding: 16px;
    }
    
    .tr-category-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================== */
/* PRINT STYLES */
/* ================================================== */
/* V3: SPLIT-PANEL FAQ CATEGORY PAGE */
/* ================================================== */

.tr-cat-page {
    font-family: 'Avenir Next', var(--tr-font-callout, system-ui), -apple-system, sans-serif;
    color: #333333;
    line-height: 1.6;
}

/* ---- Breadcrumb ---- */
.tr-cat-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px clamp(20px, 4vw, 48px);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #777777;
}

.tr-cat-breadcrumb a {
    color: #408469;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tr-cat-breadcrumb a:hover {
    color: #0F5E41;
}

.tr-cat-breadcrumb svg {
    width: 14px;
    height: 14px;
    color: #999999;
    flex-shrink: 0;
}

.tr-cat-breadcrumb-current {
    color: #333333;
    font-weight: 600;
}

/* ---- Hero ---- */
.tr-cat-hero {
    background: #0F5E41;
    padding: clamp(48px, 8vw, 80px) clamp(20px, 4vw, 48px) clamp(56px, 9vw, 96px);
    position: relative;
    overflow: hidden;
}

.tr-cat-hero-watermark {
    position: absolute;
    right: clamp(-40px, 5vw, 80px);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(200px, 30vw, 400px);
    height: clamp(200px, 30vw, 400px);
    color: #FFFFFF;
    opacity: 0.05;
    pointer-events: none;
}

.tr-cat-hero-watermark svg {
    width: 100%;
    height: 100%;
}

.tr-cat-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: clamp(20px, 3vw, 32px);
}

.tr-cat-hero-icon {
    width: clamp(56px, 7vw, 72px);
    height: clamp(56px, 7vw, 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 18px;
    flex-shrink: 0;
    color: #0F5E41;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.tr-cat-hero-icon svg {
    width: clamp(24px, 3vw, 32px);
    height: clamp(24px, 3vw, 32px);
}

.tr-cat-hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #E8F4EB;
    margin-bottom: 8px;
}

.tr-cat-hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    margin: 0 0 12px;
}

.tr-cat-hero-desc {
    font-size: clamp(15px, 1.8vw, 18px);
    color: #E8F4EB;
    max-width: 500px;
    line-height: 1.5;
    opacity: 0.85;
}

.tr-cat-hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.tr-cat-hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    opacity: 0.7;
}

.tr-cat-hero-stat svg {
    width: 16px;
    height: 16px;
}

/* ---- Split Layout ---- */
.tr-cat-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 0;
    min-height: 600px;
    margin-top: clamp(32px, 5vw, 48px);
    position: relative;
}

/* ---- Question Nav (Left) ---- */
.tr-cat-nav {
    position: sticky;
    top: 24px;
    align-self: start;
    padding-right: 32px;
}

.tr-cat-nav-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0F5E41;
    padding: 0 0 16px;
    margin-bottom: 0;
}

.tr-cat-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    margin: 0;
}

.tr-cat-nav-item {
    position: relative;
}

.tr-cat-nav-btn {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.tr-cat-nav-btn:hover {
    background: #E8F4EB;
}

.tr-cat-nav-btn:focus-visible {
    outline: 2px solid #408469;
    outline-offset: 2px;
}

.tr-cat-nav-btn.is-active {
    background: #0F5E41;
}

.tr-cat-nav-btn.is-active:hover {
    background: #0A4A33;
}

.tr-cat-nav-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #408469;
    background: #E8F4EB;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1px;
}

.tr-cat-nav-btn.is-active .tr-cat-nav-num {
    background: #408469;
    color: #FFFFFF;
}

.tr-cat-nav-text {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.tr-cat-nav-btn.is-active .tr-cat-nav-text {
    color: #FFFFFF;
}

/* ---- Answer Reader (Right) ---- */
.tr-cat-reader {
    padding: 0 0 80px clamp(32px, 4vw, 56px);
    position: relative;
}

.tr-cat-answer {
    padding-top: 8px;
    display: none;
    opacity: 0;
    transform: translateY(8px);
}

.tr-cat-answer.is-visible {
    display: block;
    animation: trCatAnswerIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.tr-cat-answer-header {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #BBE0C6;
}

.tr-cat-answer-num {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0F5E41;
    margin-bottom: 8px;
}

.tr-cat-answer-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #0F5E41;
    line-height: 1.25;
    margin: 0;
}

.tr-cat-answer-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444444;
}

.tr-cat-answer-body p {
    margin-bottom: 20px;
}

.tr-cat-answer-body p:last-child {
    margin-bottom: 0;
}

.tr-cat-answer-body a {
    color: #0F5E41;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #E8F4EB;
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s ease;
}

.tr-cat-answer-body a:hover {
    text-decoration-color: #0F5E41;
}

.tr-cat-answer-body strong {
    font-weight: 700;
    color: #333333;
}

.tr-cat-answer-body em {
    font-style: italic;
}

.tr-cat-answer-body ul,
.tr-cat-answer-body ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

.tr-cat-answer-body li {
    margin-bottom: 8px;
}

.tr-cat-answer-body h2,
.tr-cat-answer-body h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #0F5E41;
    line-height: 1.25;
    margin-top: 32px;
    margin-bottom: 12px;
}

.tr-cat-answer-body h2 {
    font-size: clamp(22px, 3vw, 28px);
}

.tr-cat-answer-body h3 {
    font-size: clamp(18px, 2.5vw, 22px);
}

/* Callout box */
.tr-cat-callout {
    background: #f1f8f3;
    border-left: 3px solid #0F5E41;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 24px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
}

.tr-cat-callout-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0F5E41;
    margin-bottom: 6px;
}

/* Answer footer */
.tr-cat-answer-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #BBE0C6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.tr-cat-helpful {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tr-cat-helpful-label {
    font-size: 14px;
    font-weight: 500;
    color: #777777;
}

.tr-cat-helpful-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #408469;
    background: #E8F4EB;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.tr-cat-helpful-btn:hover {
    background: #0F5E41;
    color: #FFFFFF;
}

.tr-cat-helpful-btn svg {
    width: 15px;
    height: 15px;
}

.tr-cat-helpful-thanks {
    font-size: 14px;
    font-weight: 600;
    color: #0F5E41;
}

.tr-cat-page-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #408469;
    padding: 8px 16px;
    border-radius: 100px;
    background: #E8F4EB;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tr-cat-page-link:hover {
    background: #408469;
    color: #FFFFFF;
}

.tr-cat-page-link svg {
    width: 14px;
    height: 14px;
}

/* Prev/Next navigation */
.tr-cat-answer-nav {
    margin-top: 48px;
    display: flex;
    gap: 12px;
}

.tr-cat-nav-arrow {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    border: 1px solid #BBE0C6;
    border-radius: 12px;
    transition: all 0.25s ease;
    text-align: left;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.tr-cat-nav-arrow:hover {
    border-color: #0F5E41;
    background: #E8F4EB;
}

.tr-cat-nav-arrow--next {
    text-align: right;
}

.tr-cat-nav-arrow-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #408469;
}

.tr-cat-nav-arrow-title {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    line-height: 1.3;
}

/* Empty state */
.tr-cat-empty {
    text-align: center;
    padding: 60px 20px;
    color: #777777;
    max-width: 960px;
    margin: 0 auto;
}

/* ---- Bottom CTA ---- */
.tr-cat-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px) clamp(60px, 8vw, 100px);
}

.tr-cat-cta-card {
    background: #E8F4EB;
    border-radius: 24px;
    padding: clamp(40px, 6vw, 56px) clamp(24px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.tr-cat-cta-content {
    flex: 1;
    min-width: 240px;
}

.tr-cat-cta-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: #0F5E41;
    margin-bottom: 8px;
}

.tr-cat-cta-desc {
    font-size: 16px;
    color: #666666;
    max-width: 400px;
    margin: 0;
}

.tr-cat-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #0F5E41;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.tr-cat-cta-btn:hover {
    background: #0A4A33;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 94, 65, 0.25);
    color: #FFFFFF;
}

.tr-cat-cta-btn svg {
    width: 20px;
    height: 20px;
}

/* ---- Responsive ---- */
@media (max-width: 800px) {
    .tr-cat-body {
        grid-template-columns: 1fr;
        margin-top: 24px;
        gap: 0;
    }

    .tr-cat-nav {
        position: static;
        padding-right: 0;
        padding-bottom: 8px;
        border-bottom: 1px solid #BBE0C6;
        margin-bottom: 24px;
    }

    .tr-cat-nav-list {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 6px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .tr-cat-nav-list::-webkit-scrollbar {
        display: none;
    }

    .tr-cat-nav-btn {
        white-space: nowrap;
        padding: 10px 14px;
        border-radius: 100px;
        gap: 8px;
        flex-direction: row;
        align-items: center;
    }

    .tr-cat-nav-num {
        width: 24px;
        height: 24px;
        font-size: 12px;
        border-radius: 6px;
    }

    .tr-cat-nav-text {
        font-size: 14px;
    }

    .tr-cat-reader {
        padding-left: 0;
    }

    .tr-cat-answer-nav {
        flex-direction: column;
    }

    .tr-cat-nav-arrow--next {
        text-align: left;
    }

    .tr-cat-cta-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .tr-cat-cta-desc {
        margin: 0 auto;
    }
}

@media (max-width: 500px) {
    .tr-cat-hero-inner {
        flex-direction: column;
        gap: 16px;
    }

    .tr-cat-hero-stats {
        flex-wrap: wrap;
        gap: 12px;
    }

    .tr-cat-answer-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================================================== */
/* SINGLE FAQ — EDITORIAL READER (V3.0)               */
/* ================================================== */

/* ── BREADCRUMB ── */
.tr-sf-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(16px, 3vw, 24px) clamp(20px, 4vw, 48px);
    font-size: 14px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tr-sf-breadcrumb a {
    color: #408469;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.tr-sf-breadcrumb a:hover { color: #0F5E41; }

.tr-sf-breadcrumb svg {
    width: 14px;
    height: 14px;
    color: #999999;
    flex-shrink: 0;
}

.tr-sf-breadcrumb-current {
    color: #333333;
    font-weight: 600;
}

/* ── HERO ── */
.tr-sf-hero {
    background: #0F5E41;
    position: relative;
    overflow: hidden;
}

.tr-sf-hero-watermark {
    position: absolute;
    right: clamp(-20px, 2vw, 60px);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(200px, 30vw, 400px);
    height: clamp(200px, 30vw, 400px);
    opacity: 0.05;
    color: #FFFFFF;
    pointer-events: none;
}

.tr-sf-hero-watermark svg { width: 100%; height: 100%; }

.tr-sf-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 88px) clamp(20px, 4vw, 48px);
    position: relative;
    z-index: 1;
    text-align: center;
}

.tr-sf-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #408469;
    color: #FFFFFF;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.tr-sf-hero-badge svg { width: 16px; height: 16px; }

.tr-sf-hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

/* ── TOOLBAR ── */
.tr-sf-toolbar {
    max-width: 800px;
    margin: -24px auto 0;
    padding: 0 clamp(20px, 4vw, 48px);
    position: relative;
    z-index: 2;
}

.tr-sf-toolbar-inner {
    background: #FFFFFF;
    border: 1.5px solid #BBE0C6;
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 4px 20px #0F5E4110;
}

.tr-sf-toolbar-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #666666;
}

.tr-sf-toolbar-meta svg {
    width: 15px;
    height: 15px;
    vertical-align: -2px;
    margin-right: 4px;
    color: #408469;
}

.tr-sf-toolbar-actions {
    display: flex;
    gap: 8px;
}

.tr-sf-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid #BBE0C6;
    background: #FFFFFF;
    color: #408469;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.tr-sf-action-btn svg { width: 15px; height: 15px; }

.tr-sf-action-btn:hover {
    border-color: #0F5E41;
    background: #E8F4EB;
    color: #0F5E41;
}

/* ── ANSWER ── */
.tr-sf-answer {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 64px) clamp(20px, 4vw, 48px);
}

.tr-sf-answer-body {
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.9;
    color: #444444;
}

.tr-sf-answer-body p { margin-bottom: 24px; }
.tr-sf-answer-body p:last-child { margin-bottom: 0; }

.tr-sf-answer-body a {
    color: #0F5E41;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #E8F4EB;
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}

.tr-sf-answer-body a:hover { text-decoration-color: #0F5E41; }

.tr-sf-answer-body strong { font-weight: 700; color: #333333; }

.tr-sf-answer-body em { font-style: italic; }

.tr-sf-answer-body ul,
.tr-sf-answer-body ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.tr-sf-answer-body li { margin-bottom: 10px; }

.tr-sf-answer-body h2,
.tr-sf-answer-body h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #0F5E41;
    margin-top: 40px;
    margin-bottom: 16px;
}

.tr-sf-answer-body h2 { font-size: clamp(22px, 3vw, 28px); }
.tr-sf-answer-body h3 { font-size: clamp(18px, 2.5vw, 22px); }

/* ── HELPFUL ── */
.tr-sf-helpful {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px) clamp(40px, 6vw, 64px);
}

.tr-sf-helpful-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 28px;
    border: 1.5px solid #BBE0C6;
    border-radius: 16px;
    flex-wrap: wrap;
}

.tr-sf-helpful-label {
    font-weight: 700;
    color: #0F5E41;
    font-size: 15px;
}

.tr-sf-helpful-btns {
    display: flex;
    gap: 10px;
}

.tr-sf-helpful-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.tr-sf-helpful-btn svg { width: 16px; height: 16px; }

.tr-sf-helpful-btn--yes {
    background: #0F5E41;
    color: #FFFFFF;
}

.tr-sf-helpful-btn--yes:hover { background: #408469; }

.tr-sf-helpful-btn--no {
    background: #BBE0C6;
    color: #333333;
}

.tr-sf-helpful-btn--no:hover { background: #d4cdc3; }

.tr-sf-helpful-thanks {
    font-size: 15px;
    font-weight: 600;
    color: #0F5E41;
    text-align: center;
    width: 100%;
}

/* ── PREV/NEXT ── */
.tr-sf-prevnext {
    border-top: 1px solid #BBE0C6;
    border-bottom: 1px solid #BBE0C6;
}

.tr-sf-prevnext-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tr-sf-prevnext-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: clamp(24px, 4vw, 40px) clamp(20px, 4vw, 48px);
    text-decoration: none;
    transition: background 0.2s;
}

.tr-sf-prevnext-link:hover { background: #E8F4EB; }

.tr-sf-prevnext-link--next {
    text-align: right;
    border-left: 1px solid #BBE0C6;
}

.tr-sf-prevnext-link--placeholder {
    pointer-events: none;
}

.tr-sf-prevnext-dir {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #408469;
}

.tr-sf-prevnext-q {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    color: #0F5E41;
    line-height: 1.3;
}

/* ── RELATED ── */
.tr-sf-related {
    background: #f1f8f3;
    padding: clamp(40px, 6vw, 64px) clamp(20px, 4vw, 48px);
}

.tr-sf-related-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.tr-sf-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tr-sf-related-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #408469;
}

.tr-sf-related-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #0F5E41;
}

.tr-sf-search-inline {
    display: flex;
    gap: 10px;
    align-items: center;
}

input[type="search"].tr-sf-search-input,
.tr-sf-search-input {
    padding: 14px 24px !important;
    border: 1.5px solid #BBE0C6 !important;
    border-radius: 100px !important;
    font-size: 15px !important;
    font-family: inherit;
    width: 300px;
    height: 48px !important;
    background: #FFFFFF !important;
    transition: border-color 0.2s;
    -webkit-appearance: none !important;
    appearance: none !important;
    box-sizing: border-box;
}

input[type="search"].tr-sf-search-input:focus,
.tr-sf-search-input:focus {
    outline: none !important;
    border-color: #408469 !important;
}

input[type="search"].tr-sf-search-input::placeholder,
.tr-sf-search-input::placeholder {
    color: #999999 !important;
}

button.tr-sf-search-btn,
.tr-sf-search-btn {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    background: #0F5E41 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer;
    transition: background 0.2s;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 !important;
}

button.tr-sf-search-btn svg,
.tr-sf-search-btn svg {
    width: 18px !important;
    height: 18px !important;
    display: block;
    color: #FFFFFF;
    stroke: currentColor;
}

button.tr-sf-search-btn:hover,
.tr-sf-search-btn:hover { background: #408469 !important; }

.tr-sf-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tr-sf-related-card {
    background: #FFFFFF;
    border: 1px solid #BBE0C6;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tr-sf-related-card:hover {
    border-color: #0F5E41;
    box-shadow: 0 4px 16px #0F5E4112;
    transform: translateY(-2px);
}

.tr-sf-related-card-q {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 700;
    color: #0F5E41;
    line-height: 1.35;
}

.tr-sf-related-card-cat {
    font-size: 14px;
    font-weight: 600;
    color: #408469;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tr-sf-related-card-cat svg { width: 14px; height: 14px; }

.tr-sf-related-card-arrow {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #408469;
    transition: gap 0.2s;
}

.tr-sf-related-card:hover .tr-sf-related-card-arrow { gap: 10px; }

.tr-sf-related-card-arrow svg { width: 16px; height: 16px; }

/* ── CATEGORIES ── */
.tr-sf-categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 56px) clamp(20px, 4vw, 48px);
}

.tr-sf-categories-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #408469;
    margin-bottom: 4px;
}

.tr-sf-categories-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #0F5E41;
    margin-bottom: 24px;
}

.tr-sf-categories-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tr-sf-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1.5px solid #BBE0C6;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    transition: all 0.2s;
    background: #FFFFFF;
}

.tr-sf-cat-chip:hover {
    border-color: #0F5E41;
    background: #E8F4EB;
    color: #0F5E41;
}

.tr-sf-cat-chip-icon {
    width: 28px;
    height: 28px;
    background: #E8F4EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F5E41;
    transition: all 0.2s;
}

.tr-sf-cat-chip:hover .tr-sf-cat-chip-icon {
    background: #0F5E41;
    color: #FFFFFF;
}

.tr-sf-cat-chip-icon svg { width: 14px; height: 14px; }

/* ── CTA ── */
.tr-sf-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px) clamp(48px, 6vw, 72px);
}

.tr-sf-cta-card {
    background: #0F5E41;
    border-radius: 16px;
    padding: clamp(32px, 5vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tr-sf-cta-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.tr-sf-cta-desc {
    font-size: 15px;
    color: #E8F4EB;
}

.tr-sf-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: #0F5E41;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.tr-sf-cta-btn svg { width: 16px; height: 16px; }
.tr-sf-cta-btn:hover { background: #E8F4EB; }

/* ── EMAIL MODAL ── */
.tr-sf-modal-overlay {
    position: fixed;
    inset: 0;
    background: #00000066;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    transition: opacity 0.2s ease;
}

.tr-sf-modal-content {
    background: #FFFFFF;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px #00000033;
}

.tr-sf-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 0;
}

.tr-sf-modal-header h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 700;
    color: #0F5E41;
    margin: 0;
}

.tr-sf-modal-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8F4EB;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    color: #0F5E41;
    cursor: pointer;
    transition: background 0.2s;
}

.tr-sf-modal-close:hover { background: #d5ebe0; }

.tr-sf-modal-body {
    padding: 20px 28px 28px;
}

.tr-sf-modal-subtitle {
    font-size: 14px;
    color: #666666;
    margin: 0 0 24px;
}

.tr-sf-form-group {
    margin-bottom: 16px;
}

.tr-sf-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 6px;
}

.tr-sf-form-group input,
.tr-sf-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #BBE0C6;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: #333333;
    transition: border-color 0.2s;
}

.tr-sf-form-group input:focus,
.tr-sf-form-group textarea:focus {
    outline: none;
    border-color: #408469;
}

.tr-sf-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 24px;
}

.tr-sf-modal-cancel {
    padding: 10px 24px;
    background: #BBE0C6;
    color: #333333;
    border: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.tr-sf-modal-cancel:hover { background: #d4cdc3; }

.tr-sf-modal-submit {
    padding: 10px 24px;
    background: #0F5E41;
    color: #FFFFFF;
    border: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}

.tr-sf-modal-submit:hover { background: #408469; }

.tr-sf-modal-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ── NOTIFICATION TOAST ── */
.tr-sf-notification {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    z-index: 100000;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    box-shadow: 0 8px 24px #00000033;
}

.tr-sf-notification.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── SINGLE FAQ RESPONSIVE ── */
@media (max-width: 900px) {
    .tr-sf-related-grid {
        grid-template-columns: 1fr;
    }

    .tr-sf-prevnext-inner {
        grid-template-columns: 1fr;
    }

    .tr-sf-prevnext-link--next {
        text-align: left;
        border-left: none;
        border-top: 1px solid #BBE0C6;
    }

    .tr-sf-cta-card {
        flex-direction: column;
        text-align: center;
    }

    .tr-sf-related-header {
        flex-direction: column;
        align-items: flex-start;
    }

    input[type="search"].tr-sf-search-input,
    .tr-sf-search-input { width: 100% !important; }
    .tr-sf-search-inline { width: 100%; }
}

@media (max-width: 600px) {
    .tr-sf-toolbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .tr-sf-toolbar-actions {
        width: 100%;
    }

    .tr-sf-toolbar-actions .tr-sf-action-btn {
        flex: 1;
        justify-content: center;
    }

    .tr-sf-helpful-bar {
        flex-direction: column;
        text-align: center;
    }

    .tr-sf-categories-row {
        flex-direction: column;
    }

    .tr-sf-cat-chip { width: 100%; }
}

/* ── SINGLE FAQ PRINT ── */
@media print {
    .tr-sf-toolbar,
    .tr-sf-helpful,
    .tr-sf-prevnext,
    .tr-sf-related,
    .tr-sf-categories,
    .tr-sf-cta,
    .tr-sf-breadcrumb {
        display: none;
    }
    .tr-sf-hero { background: #FFFFFF; }
    .tr-sf-hero-title { color: #0F5E41; }
    .tr-sf-hero-badge { background: #E8F4EB; color: #0F5E41; }
    .tr-sf-hero-watermark { display: none; }
}

/* ================================================== */
/* SEARCH RESULTS PAGE (V3.0) */
/* ================================================== */

/* ── BREADCRUMB ── */
.tr-sr-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(16px, 3vw, 24px) clamp(20px, 4vw, 48px);
    font-size: 14px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tr-sr-breadcrumb a {
    color: #408469;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.tr-sr-breadcrumb a:hover { color: #0F5E41; }

.tr-sr-breadcrumb svg {
    width: 14px;
    height: 14px;
    color: #999999;
    flex-shrink: 0;
}

.tr-sr-breadcrumb-current {
    color: #333333;
    font-weight: 600;
}

/* ── HERO ── */
.tr-sr-hero {
    background: #0F5E41;
    position: relative;
    overflow: hidden;
}

.tr-sr-hero-watermark {
    position: absolute;
    right: clamp(20px, 5vw, 80px);
    top: 50%;
    transform: translateY(-50%);
    width: clamp(120px, 18vw, 220px);
    height: clamp(120px, 18vw, 220px);
    opacity: 0.08;
    color: #FFFFFF;
    pointer-events: none;
}

.tr-sr-hero-watermark svg { width: 100%; height: 100%; }

.tr-sr-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(40px, 7vw, 72px) clamp(20px, 4vw, 48px);
    position: relative;
    z-index: 1;
    text-align: center;
}

.tr-sr-hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
}

/* ── SEARCH BAR ── */
.tr-sr-search-bar {
    max-width: 680px;
    margin: -28px auto 0;
    padding: 0 clamp(20px, 4vw, 48px);
    position: relative;
    z-index: 2;
}

.tr-sr-search-form {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #FFFFFF;
    border: 1.5px solid #BBE0C6;
    border-radius: 100px;
    padding: 6px 6px 6px 28px;
    box-shadow: 0 4px 20px #0F5E4110;
    transition: border-color 0.2s;
}

.tr-sr-search-form:focus-within {
    border-color: #408469;
}

.tr-sr-search-form > svg {
    width: 20px;
    height: 20px;
    color: #408469;
    flex-shrink: 0;
}

input[type="search"].tr-sr-search-input,
.tr-sr-search-input {
    flex: 1 !important;
    border: none !important;
    background: none !important;
    font-size: 16px !important;
    font-family: inherit;
    color: #333333;
    padding: 12px 0 12px 12px !important;
    outline: none !important;
    min-width: 0;
    height: auto !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

input[type="search"].tr-sr-search-input::placeholder,
.tr-sr-search-input::placeholder {
    color: #999999 !important;
}

button.tr-sr-search-submit,
.tr-sr-search-submit {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px;
    background: #0F5E41 !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 !important;
    transition: background 0.2s;
}

button.tr-sr-search-submit svg,
.tr-sr-search-submit svg {
    width: 18px !important;
    height: 18px !important;
    display: block;
    color: #FFFFFF;
}

button.tr-sr-search-submit:hover,
.tr-sr-search-submit:hover { background: #408469 !important; }

/* ── RESULTS ── */
.tr-sr-results {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 56px) clamp(20px, 4vw, 48px) 0;
}

.tr-sr-results-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tr-sr-results-count {
    font-size: 14px;
    color: #666666;
}

.tr-sr-results-count strong {
    color: #0F5E41;
    font-weight: 700;
}

.tr-sr-results-query {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #0F5E41;
}

/* ── RESULT CARDS ── */
.tr-sr-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tr-sr-card {
    display: block;
    padding: clamp(24px, 3vw, 32px) 0 clamp(24px, 3vw, 32px) 16px;
    border-bottom: 1px solid #BBE0C6;
    text-decoration: none;
    transition: background 0.2s ease;
    border-left: 3px solid transparent;
    margin-left: -16px;
    margin-right: -16px;
    padding-right: 16px;
}

.tr-sr-card:first-child {
    border-top: 1px solid #BBE0C6;
}

.tr-sr-card:hover {
    background: #f8fbf9;
    border-left-color: #0F5E41;
}

.tr-sr-card-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #408469;
    margin-bottom: 8px;
}

.tr-sr-card-category svg { width: 14px; height: 14px; }

.tr-sr-card-question {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    color: #0F5E41;
    line-height: 1.35;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.tr-sr-card:hover .tr-sr-card-question {
    color: #408469;
}

.tr-sr-card-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tr-sr-card-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #408469;
    transition: gap 0.2s;
}

.tr-sr-card:hover .tr-sr-card-footer { gap: 10px; }

.tr-sr-card-footer svg { width: 16px; height: 16px; }

/* ── NO RESULTS ── */
.tr-sr-empty {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(48px, 8vw, 80px) clamp(20px, 4vw, 48px);
}

.tr-sr-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #E8F4EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #408469;
}

.tr-sr-empty-icon svg { width: 36px; height: 36px; }

.tr-sr-empty-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #0F5E41;
    margin-bottom: 8px;
}

.tr-sr-empty-desc {
    font-size: 16px;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.tr-sr-empty-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.tr-sr-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tr-sr-btn svg { width: 16px; height: 16px; }

.tr-sr-btn--primary {
    background: #0F5E41;
    color: #FFFFFF;
}

.tr-sr-btn--primary:hover { background: #408469; }

.tr-sr-btn--secondary {
    background: #E8F4EB;
    color: #0F5E41;
}

.tr-sr-btn--secondary:hover { background: #d5ebe0; }

/* ── CATEGORIES BROWSE ── */
.tr-sr-categories {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(48px, 7vw, 72px) clamp(20px, 4vw, 48px);
}

.tr-sr-categories-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #408469;
    margin-bottom: 4px;
}

.tr-sr-categories-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #0F5E41;
    margin-bottom: 24px;
}

.tr-sr-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.tr-sr-cat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #FFFFFF;
    border: 1.5px solid #BBE0C6;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.tr-sr-cat-card:hover {
    border-color: #0F5E41;
    box-shadow: 0 4px 16px #0F5E4112;
    transform: translateY(-2px);
}

.tr-sr-cat-card-icon {
    width: 44px;
    height: 44px;
    background: #E8F4EB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F5E41;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.tr-sr-cat-card:hover .tr-sr-cat-card-icon {
    background: #0F5E41;
    color: #FFFFFF;
}

.tr-sr-cat-card-icon svg { width: 20px; height: 20px; }

.tr-sr-cat-card-info {
    flex: 1;
    min-width: 0;
}

.tr-sr-cat-card-name {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: #0F5E41;
    line-height: 1.3;
}

.tr-sr-cat-card-count {
    display: block;
    font-size: 14px;
    color: #666666;
}

.tr-sr-cat-card > svg {
    width: 20px;
    height: 20px;
    color: #BBE0C6;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.tr-sr-cat-card:hover > svg {
    color: #0F5E41;
    transform: translateX(4px);
}

/* ── CTA ── */
.tr-sr-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px) clamp(48px, 6vw, 72px);
}

.tr-sr-cta-card {
    background: #0F5E41;
    border-radius: 16px;
    padding: clamp(32px, 5vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tr-sr-cta-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.tr-sr-cta-desc {
    font-size: 15px;
    color: #E8F4EB;
}

.tr-sr-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    color: #0F5E41;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.tr-sr-cta-btn svg { width: 16px; height: 16px; }
.tr-sr-cta-btn:hover { background: #E8F4EB; }

/* ── SEARCH RESULTS RESPONSIVE ── */
@media (max-width: 900px) {
    .tr-sr-categories-grid {
        grid-template-columns: 1fr;
    }
    .tr-sr-cta-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .tr-sr-search-form {
        padding: 4px 4px 4px 20px;
    }
    .tr-sr-search-submit {
        width: 42px;
        height: 42px;
    }
    .tr-sr-empty-actions {
        flex-direction: column;
    }
    .tr-sr-btn { width: 100%; justify-content: center; }
}

/* ================================================== */

@media print {
    .tr-help-hero,
    .tr-help-search,
    .tr-help-quick-actions,
    .tr-help-contact,
    .tr-help-breadcrumb,
    .tr-faq-related {
        display: none;
    }
    
    .tr-faq-answer {
        max-height: none !important;
    }
    
    .tr-help-cat-card,
    .tr-faq-item {
        page-break-inside: avoid;
    }
}


/* ================================================== */
/* SUBMIT TICKET PAGE (V3.0) */
/* ================================================== */

/* ── BREADCRUMB ── */
.tr-st-breadcrumb-wrapper {
    background-color: transparent;
    padding: clamp(16px, 3vw, 24px) clamp(20px, 5vw, 40px);
}
.tr-st-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666666;
}
.tr-st-breadcrumb a {
    color: #0F5E41;
    text-decoration: none;
    font-weight: 500;
}
.tr-st-breadcrumb a:hover { text-decoration: underline; }
.tr-st-breadcrumb-chevron {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}
.tr-st-breadcrumb-current {
    color: #666666;
    font-weight: 500;
}

/* ── HERO ── */
.tr-st-hero {
    background-color: #0F5E41;
    color: #FFFFFF;
    padding: clamp(48px, 8vw, 80px) clamp(20px, 5vw, 40px);
    text-align: center;
}
.tr-st-hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 16px;
}
.tr-st-hero p {
    font-size: clamp(15px, 2vw, 17px);
    color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto;
}

/* ── CONTAINER / GRID ── */
.tr-st-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 40px);
}
.tr-st-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: clamp(32px, 4vw, 48px);
    align-items: start;
}

/* ── FORM SECTIONS ── */
.tr-st-form-section {
    margin-bottom: 40px;
}
.tr-st-form-section:not(:last-child) {
    padding-bottom: 40px;
    border-bottom: 2px solid #E8F4EB;
}
.tr-st-section-title {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: bold;
    color: #0F5E41;
    margin-bottom: 24px;
}

/* ── FORM LAYOUT ── */
.tr-st-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.tr-st-form-row--single {
    grid-template-columns: 1fr;
}
.tr-st-form-group {
    display: flex;
    flex-direction: column;
}

/* ── LABELS ── */
.tr-st-label {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.tr-st-required { color: #AF2D3A; font-size: 16px; }
.tr-st-optional { font-size: 14px; font-weight: 400; color: #666666; margin-left: 4px; }

/* ── INPUTS ── */
.tr-st-form .tr-st-input,
.tr-st-form .tr-st-select,
.tr-st-form .tr-st-textarea {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    padding: 16px;
    border: 2px solid #BBE0C6;
    border-radius: 14px;
    background-color: #FFFFFF;
    color: #333333;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
}
.tr-st-form .tr-st-input:focus,
.tr-st-form .tr-st-select:focus,
.tr-st-form .tr-st-textarea:focus {
    outline: none;
    border-color: #0F5E41;
    box-shadow: 0 0 0 3px #E8F4EB;
}
.tr-st-form .tr-st-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%230F5E41' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}
.tr-st-form .tr-st-textarea {
    min-height: 150px;
    resize: vertical;
}
.tr-st-hint {
    font-size: 14px;
    color: #666666;
    margin-top: 6px;
}

/* ── FILE UPLOAD ── */
.tr-st-file-upload {
    display: block;
    border: 2px dashed #BBE0C6;
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    background-color: #FDFAF6;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}
.tr-st-file-upload:hover {
    border-color: #0F5E41;
    background-color: #E8F4EB;
}
.tr-st-file-upload-icon { width: 48px; height: 48px; margin: 0 auto 16px; }
.tr-st-file-upload-text { font-size: 15px; color: #333333; font-weight: 600; margin-bottom: 4px; }
.tr-st-file-upload-subtext { font-size: 14px; color: #666666; }
.tr-st-file-input { display: none; }
.tr-st-file-name { margin-top: 12px; font-size: 14px; color: #0F5E41; font-weight: 600; }

/* ── HONEYPOT ── */
.tr-st-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── BUTTONS ── */
.tr-st-button-group {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.tr-st-button {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}
.tr-st-button-primary {
    background-color: #0F5E41;
    color: #FFFFFF;
}
.tr-st-button-primary:hover { background-color: #408469; }
.tr-st-button-primary:disabled {
    background-color: #BBE0C6;
    color: #666666;
    cursor: not-allowed;
}
.tr-st-button-secondary {
    background-color: #FFFFFF;
    color: #0F5E41;
    border: 2px solid #0F5E41;
}
.tr-st-button-secondary:hover { background-color: #E8F4EB; }

/* ── SUCCESS STATE ── */
.tr-st-success {
    display: none;
    text-align: center;
    padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 40px);
}
.tr-st-success-icon {
    width: clamp(64px, 10vw, 96px);
    height: clamp(64px, 10vw, 96px);
    margin: 0 auto 32px;
}
.tr-st-success h2 {
    font-family: Georgia, serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: bold;
    color: #0F5E41;
    margin-bottom: 16px;
}
.tr-st-success-message {
    font-size: 16px;
    color: #333333;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.tr-st-ticket-number {
    display: inline-block;
    background-color: #E8F4EB;
    color: #0F5E41;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 100px;
    margin-bottom: 48px;
}
.tr-st-ticket-number strong {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}
.tr-st-success .tr-st-button-group { justify-content: center; }

/* ── SIDEBAR ── */
.tr-st-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.tr-st-card {
    background-color: #FFFFFF;
    border: 1px solid #E8F4EB;
    border-radius: 16px;
    padding: 24px;
}
.tr-st-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.tr-st-card-icon { width: 24px; height: 24px; flex-shrink: 0; }
.tr-st-card h3 {
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: bold;
    color: #0F5E41;
    margin: 0;
}
.tr-st-card p {
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
    margin: 0 0 16px;
}
.tr-st-card p:last-child { margin-bottom: 0; }
.tr-st-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0F5E41;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
}
.tr-st-card-link:hover { text-decoration: underline; }
.tr-st-card-link svg { width: 16px; height: 16px; }

/* ── RESPONSE TIMES ── */
.tr-st-response-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}
.tr-st-response-item:not(:last-of-type) { border-bottom: 1px solid #E8F4EB; }
.tr-st-response-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.tr-st-response-dot--urgent { background-color: #AF2D3A; }
.tr-st-response-dot--high { background-color: #E78825; }
.tr-st-response-dot--normal { background-color: #0F5E41; }
.tr-st-response-label { font-size: 15px; font-weight: 600; color: #333333; flex: 1; }
.tr-st-response-time { font-size: 14px; color: #666666; }
.tr-st-response-note { font-size: 14px; color: #666666; margin-top: 8px; margin-bottom: 0; }

/* ── CONTACT CARD ── */
.tr-st-contact-card {
    background-color: #0F5E41;
    border: none;
}
.tr-st-contact-card h3 { color: #FFFFFF; }
.tr-st-contact-card p { color: #FFFFFF; }
.tr-st-phone-number {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    display: block;
    margin-top: 4px;
}
.tr-st-phone-number:hover { color: #E8F4EB; }
.tr-st-phone-sub {
    font-size: 14px;
    color: #E8F4EB;
    display: block;
    margin-top: 2px;
}

/* ── SUBMIT TICKET RESPONSIVE ── */
@media (max-width: 900px) {
    .tr-st-grid { grid-template-columns: 1fr; }
    .tr-st-sidebar { order: -1; }
}
@media (max-width: 600px) {
    .tr-st-form-row { grid-template-columns: 1fr; }
    .tr-st-button-group { flex-direction: column; }
    .tr-st-button { width: 100%; }
}


/* ================================================== */
/* MY TICKETS PAGE (.tr-mt-*) */
/* ================================================== */

/* ── VIEW 1: EMAIL LOOKUP ── */

.tr-mt-hero {
    background-color: #0F5E41;
    padding: clamp(60px, 10vw, 100px) 24px clamp(80px, 12vw, 120px);
    text-align: center;
    position: relative;
}
.tr-mt-hero-title {
    font-family: Georgia, serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 48px);
    color: #FFFFFF;
    margin-bottom: 12px;
}
.tr-mt-hero-subtitle {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #FFFFFF;
}
.tr-mt-lookup-container {
    max-width: 600px;
    margin: -60px auto 0;
    padding: 0 24px 80px;
    position: relative;
    z-index: 10;
}
.tr-mt-lookup-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: clamp(40px, 6vw, 56px);
    box-shadow: 0 4px 20px rgba(15, 94, 65, 0.08);
}
.tr-mt-lookup-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
    display: block;
}
.tr-mt-lookup-heading {
    font-family: Georgia, serif;
    font-weight: 700;
    font-size: clamp(24px, 4vw, 28px);
    color: #0F5E41;
    text-align: center;
    margin-bottom: 12px;
}
.tr-mt-lookup-description {
    text-align: center;
    color: #666666;
    margin-bottom: 32px;
    font-size: 15px;
}
.tr-mt-input-group {
    position: relative;
    margin-bottom: 24px;
}
.tr-mt-input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #777777;
}
.tr-mt-input-icon.tr-mt-input-icon-right {
    left: auto;
    right: 18px;
}
.tr-mt-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
}
.tr-mt-input.tr-mt-input-icon-right {
    padding: 16px 52px 16px 20px;
    border: 2px solid #BBE0C6;
    border-radius: 14px;
    font-size: 15px;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333333;
    transition: border-color 0.2s;
}
.tr-mt-input:focus {
    outline: none;
    border-color: #0F5E41;
}
.tr-mt-input::placeholder {
    color: #999999;
}
.tr-mt-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background-color 0.2s;
    min-height: 44px;
}
.tr-mt-btn-primary {
    background-color: #0F5E41;
    color: #FFFFFF;
    width: 100%;
}
.tr-mt-btn-primary:hover {
    background-color: #408469;
}
.tr-mt-btn-outline {
    background-color: #FFFFFF;
    color: #0F5E41;
    border: 2px solid #0F5E41;
    width: 100%;
}
.tr-mt-btn-outline:hover {
    background-color: #E8F4EB;
}
.tr-mt-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}
.tr-mt-divider-line {
    flex: 1;
    height: 1px;
    background-color: #BBE0C6;
}
.tr-mt-divider-text {
    color: #777777;
    font-size: 14px;
    text-transform: lowercase;
}
.tr-mt-help-text {
    text-align: center;
    color: #666666;
    font-size: 14px;
    margin-top: 32px;
    line-height: 1.8;
}
.tr-mt-help-text a {
    color: #0F5E41;
    text-decoration: none;
}
.tr-mt-help-text a:hover {
    text-decoration: underline;
}

/* ── VIEW 2: TICKET LIST ── */

.tr-mt-list-view {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(28px,5vw,44px) clamp(16px,4vw,24px) clamp(56px,8vw,80px);
}
.tr-mt-list-header {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: clamp(22px,4vw,32px);
}
.tr-mt-list-header-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tr-mt-list-title {
    color: #0F5E41;
    font-family: Georgia, serif;
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}
.tr-mt-ticket-count {
    align-items: center;
    background: #E8F4EB;
    border-radius: 999px;
    color: #0F5E41;
    display: inline-flex;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    margin-left: 8px;
    min-width: 32px;
    padding: 4px 12px;
}
.tr-mt-email-display {
    align-items: center;
    color: #666666;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 12px;
}
.tr-mt-change-link {
    color: #0F5E41;
    font-weight: 600;
    text-decoration: none;
}
.tr-mt-change-link:hover {
    text-decoration: underline;
}
.tr-mt-list-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(24px,4vw,36px);
}
.tr-mt-filter {
    align-items: center;
    background: #FFFFFF;
    border: 2px solid #E8F4EB;
    border-radius: 100px;
    color: #408469;
    cursor: pointer;
    display: inline-flex;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    gap: 7px;
    line-height: 1.3;
    min-height: 42px;
    padding: 8px 16px;
}
.tr-mt-filter i {
    color: currentColor;
    font-size: 12px;
}
.tr-mt-filter.active,
.tr-mt-filter:hover {
    background: #0F5E41;
    border-color: #0F5E41;
    color: #FFFFFF;
}
.tr-mt-tickets-grid {
    display: grid;
    gap: clamp(16px,3vw,24px);
    grid-template-columns: repeat(auto-fill,minmax(min(100%,320px),1fr));
}
.tr-mt-ticket-card {
    background: #FFFFFF;
    border: 2px solid #E8F4EB;
    border-radius: 16px;
    color: #333333;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.tr-mt-ticket-card[hidden] {
    display: none;
}
.tr-mt-ticket-card:hover {
    border-color: #0F5E41;
    box-shadow: 0 8px 24px #0F5E411A;
    transform: translateY(-3px);
}
.tr-mt-ticket-head {
    align-items: flex-start;
    background: #E8F4EB;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: clamp(16px,2.5vw,20px) clamp(16px,2.5vw,22px);
}
.tr-mt-ticket-title-wrap {
    align-items: flex-start;
    display: flex;
    flex: 1;
    gap: 12px;
    min-width: 0;
}
.tr-mt-ticket-icon {
    align-items: center;
    background: #0F5E41;
    border-radius: 50%;
    color: #FFFFFF;
    display: flex;
    flex: 0 0 40px;
    height: 40px;
    justify-content: center;
    width: 40px;
}
.tr-mt-ticket-icon i {
    color: #FFFFFF;
    font-size: 16px;
}
.tr-mt-ticket-heading {
    flex: 1;
    min-width: 0;
}
.tr-mt-ticket-number {
    color: #0F5E41;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(19px,2.4vw,23px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    overflow-wrap: anywhere;
}
.tr-mt-ticket-body {
    display: grid;
    gap: 0;
    padding: clamp(14px,2.3vw,20px) clamp(16px,2.5vw,22px);
}
.tr-mt-ticket-title {
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 12px;
    overflow-wrap: anywhere;
}
.tr-mt-ticket-row {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 8px 0;
}
.tr-mt-ticket-row:first-of-type {
    padding-top: 0;
}
.tr-mt-ticket-row:last-child {
    padding-bottom: 0;
}
.tr-mt-ticket-row span {
    color: #0F5E41;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 600;
}
.tr-mt-ticket-row strong {
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: right;
}
.tr-mt-ticket-actions {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-top: auto;
    padding: clamp(12px,2vw,16px) clamp(16px,2.5vw,22px) clamp(16px,2.5vw,22px);
}
.tr-mt-ticket-button {
    display: flex;
    align-items: center;
    background: #0F5E41;
    border: 2px solid #0F5E41;
    border-radius: 100px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    gap: 8px;
    justify-content: center;
    line-height: 1.3;
    padding: 10px 16px;
    text-decoration: none;
    transition: background-color 0.2s,border-color 0.2s;
}
.tr-mt-ticket-button:hover {
    background: #0d4e36;
    border-color: #0d4e36;
    color: #FFFFFF;
    text-decoration: none;
}
.tr-mt-ticket-button i {
    color: currentColor;
    font-size: 13px;
}
.tr-mt-empty-state {
    background: #FFFFFF;
    border: 2px solid #E8F4EB;
    border-radius: 16px;
    margin: 0 0 clamp(22px,4vw,32px);
    padding: clamp(44px,7vw,72px) clamp(18px,4vw,32px);
    text-align: center;
}
.tr-mt-empty-icon {
    align-items: center;
    background: #E8F4EB;
    border-radius: 50%;
    color: #0F5E41;
    display: flex;
    height: 64px;
    justify-content: center;
    margin: 0 auto 20px;
    width: 64px;
}
.tr-mt-empty-icon i {
    color: #0F5E41;
    font-size: 24px;
}
.tr-mt-empty-heading {
    color: #0F5E41;
    font-family: Georgia, serif;
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
}
.tr-mt-empty-text {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 auto 24px;
    max-width: 520px;
}

/* VIEW 3: TICKET DETAIL */

.tr-mt-detail-view {
    color: #333333;
    margin: 0 auto;
    max-width: 1160px;
    padding: clamp(28px,5vw,44px) clamp(16px,4vw,24px) clamp(56px,8vw,80px);
}
.tr-mt-detail-top {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: clamp(18px,3vw,24px);
}
.tr-mt-back-link,
.tr-mt-new-ticket {
    align-items: center;
    border-radius: 100px;
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    gap: 8px;
    line-height: 1.4;
    min-height: 44px;
    padding: clamp(8px,1.5vw,10px) clamp(16px,2.5vw,22px);
    text-decoration: none;
}
.tr-mt-back-link {
    background: #FFFFFF;
    border: 2px solid #408469;
    color: #0F5E41;
}
.tr-mt-back-link:hover,
.tr-mt-new-ticket:hover {
    background: #E8F4EB;
    color: #0F5E41;
    text-decoration: none;
}
.tr-mt-back-link svg,
.tr-mt-back-link i,
.tr-mt-new-ticket i {
    color: currentColor;
    font-size: 13px;
    height: auto;
    width: auto;
}
.tr-mt-new-ticket {
    background: #FFFFFF;
    border: 2px solid #0F5E41;
    color: #0F5E41;
}
.tr-mt-detail-hero {
    align-items: flex-start;
    background: #FFFFFF;
    border: 2px solid #E8F4EB;
    border-radius: 16px;
    display: flex;
    gap: clamp(14px,2.5vw,20px);
    justify-content: space-between;
    margin-bottom: clamp(18px,3vw,24px);
    padding: clamp(18px,3vw,26px);
}
.tr-mt-detail-title-wrap {
    align-items: flex-start;
    display: flex;
    gap: 14px;
    min-width: 0;
}
.tr-mt-detail-icon {
    align-items: center;
    background: #0F5E41;
    border-radius: 50%;
    color: #FFFFFF;
    display: flex;
    flex: 0 0 44px;
    height: 44px;
    justify-content: center;
    width: 44px;
}
.tr-mt-detail-icon i {
    color: #FFFFFF;
    font-size: 17px;
}
.tr-mt-detail-kicker {
    color: #408469;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.tr-mt-detail-title {
    color: #0F5E41;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(22px,3.4vw,30px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    overflow-wrap: anywhere;
}
.tr-mt-status-pill {
    border-radius: 999px;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    padding: 5px 12px;
    text-align: center;
}
.tr-mt-status-pill.open,
.tr-mt-status-pill.pending {
    background: #0F5E41;
    color: #FFFFFF;
}
.tr-mt-status-pill.closed {
    background: #FFFFFF;
    border: 2px solid #E8F4EB;
    color: #0F5E41;
}
.tr-mt-detail-grid {
    align-items: start;
    display: grid;
    gap: clamp(16px,3vw,24px);
    grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr);
}
.tr-mt-detail-stack {
    display: grid;
    gap: clamp(16px,3vw,24px);
}
.tr-mt-detail-card {
    background: #FFFFFF;
    border: 2px solid #E8F4EB;
    border-radius: 16px;
    overflow: hidden;
}
.tr-mt-detail-card-head {
    background: #E8F4EB;
    padding: clamp(16px,2.5vw,20px) clamp(18px,3vw,24px);
}
.tr-mt-detail-card-eyebrow {
    color: #408469;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.tr-mt-detail-card-title {
    color: #0F5E41;
    font-family: Georgia,"Times New Roman",serif;
    font-size: clamp(20px,3vw,24px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}
.tr-mt-detail-card-body {
    padding: clamp(18px,3vw,26px);
}
.tr-mt-messages {
    display: grid;
    gap: 14px;
}
.tr-mt-message {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    margin: 0;
}
.tr-mt-avatar,
.tr-mt-reply-avatar {
    align-items: center;
    border-radius: 50%;
    display: flex;
    flex: 0 0 38px;
    font-size: 14px;
    font-weight: 700;
    height: 38px;
    justify-content: center;
    width: 38px;
}
.tr-mt-avatar-customer,
.tr-mt-reply-avatar {
    background: #E8F4EB;
    color: #0F5E41;
}
.tr-mt-avatar-staff {
    background: #0F5E41;
    color: #FFFFFF;
}
.tr-mt-avatar img {
    border-radius: 50%;
    height: 38px;
    object-fit: cover;
    width: 38px;
}
.tr-mt-message-card {
    background: #FFFFFF;
    border: 2px solid #E8F4EB;
    border-radius: 12px;
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
}
.tr-mt-message-card.staff {
    background: #f9faf9;
}
.tr-mt-message-header {
    align-items: baseline;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-bottom: 8px;
}
.tr-mt-message-author {
    color: #0F5E41;
    font-size: 16px;
    font-weight: 600;
}
.tr-mt-message-time {
    color: #408469;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}
.tr-mt-message-body,
.tr-mt-message-body p {
    color: #333333;
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}
.tr-mt-message-body p + p {
    margin-top: 10px;
}
.tr-mt-meta-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2,minmax(0,1fr));
}
.tr-mt-meta-item {
    background: #f9faf9;
    border-radius: 10px;
    display: grid;
    gap: 3px;
    padding: 12px 14px;
}
.tr-mt-meta-item span {
    color: #408469;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.tr-mt-meta-item strong {
    color: #333333;
    font-size: 15px;
    font-weight: 600;
    overflow-wrap: anywhere;
}
.tr-mt-context-line {
    color: #333333;
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}
.tr-mt-context-line strong {
    color: #0F5E41;
    font-weight: 700;
}
.tr-mt-hp-field {
    left: -9999px;
    position: absolute;
}
.tr-mt-reply-section {
    margin-top: 18px;
}
.tr-mt-reply-form {
    display: flex;
    gap: 12px;
}
.tr-mt-reply-input-wrapper {
    flex: 1;
}
.tr-mt-reply-textarea {
    border: 2px solid #E8F4EB;
    border-radius: 10px;
    color: #333333;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    min-height: 112px;
    outline: none;
    padding: 12px 14px;
    resize: vertical;
    width: 100%;
}
.tr-mt-reply-textarea:focus {
    border-color: #0F5E41;
}
.tr-mt-reply-footer {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin-top: 12px;
}
.tr-mt-reply-hint {
    color: #408469;
    font-size: 14px;
}
.tr-mt-btn-send {
    align-items: center;
    background: #0F5E41;
    border: 2px solid #0F5E41;
    border-radius: 100px;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-flex;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    gap: 8px;
    justify-content: center;
    line-height: 1.3;
    min-height: 44px;
    padding: 10px 16px;
    transition: background-color 0.2s,border-color 0.2s;
}
.tr-mt-btn-send:hover {
    background: #0d4e36;
    border-color: #0d4e36;
}
.tr-mt-btn-send i,
.tr-mt-btn-send svg {
    color: currentColor;
    font-size: 13px;
    height: auto;
    width: auto;
}

/* MY TICKETS RESPONSIVE */

@media (max-width: 860px) {
    .tr-mt-detail-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .tr-mt-list-header {
        padding: 20px;
    }
    .tr-mt-tickets-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 540px) {
    .tr-mt-ticket-head {
        flex-direction: column;
    }
    .tr-mt-ticket-row {
        display: grid;
        gap: 2px;
        grid-template-columns: 1fr;
    }
    .tr-mt-ticket-row strong {
        text-align: left;
    }
    .tr-mt-detail-hero {
        flex-direction: column;
    }
    .tr-mt-status-pill {
        align-self: flex-start;
    }
    .tr-mt-meta-grid {
        grid-template-columns: 1fr;
    }
    .tr-mt-message {
        display: block;
    }
    .tr-mt-avatar {
        margin-bottom: 8px;
    }
    .tr-mt-message-header {
        display: grid;
    }
    .tr-mt-message-time {
        text-align: left;
    }
    .tr-mt-reply-form {
        flex-direction: column;
    }
    .tr-mt-reply-avatar {
        display: none;
    }
}


/* ================================================== */
/* CSAT RATING PAGE (.tr-cs-*) */
/* ================================================== */

.tr-cs-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 5vw, 40px);
}
.tr-cs-card {
    width: 100%;
    max-width: 520px;
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 94, 65, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ── HEADER ── */

.tr-cs-header {
    background: #0F5E41;
    padding: clamp(32px, 6vw, 40px) clamp(24px, 5vw, 32px);
    text-align: center;
    position: relative;
}
.tr-cs-header-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 0 auto 16px;
}
.tr-cs-header-stars svg {
    width: 28px;
    height: 28px;
}
.tr-cs-header h1 {
    font-family: Georgia, serif;
    font-size: clamp(22px, 4vw, 26px);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}
.tr-cs-header p {
    font-size: 15px;
    color: #FFFFFF;
}

/* ── BODY ── */

.tr-cs-body {
    padding: clamp(32px, 6vw, 40px) clamp(24px, 5vw, 32px);
}

/* ── TICKET INFO ── */

.tr-cs-ticket-info {
    background: #E8F4EB;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 32px;
}
.tr-cs-ticket-label {
    font-size: 14px;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
.tr-cs-ticket-number {
    font-size: 16px;
    font-weight: 600;
    color: #0F5E41;
    margin-bottom: 12px;
}
.tr-cs-ticket-subject {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

/* ── QUESTION ── */

.tr-cs-question {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin-bottom: 32px;
}

/* ── RATING BUTTONS ── */

.tr-cs-rating-options {
    display: flex;
    justify-content: space-between;
    gap: clamp(8px, 2vw, 12px);
    margin-bottom: 24px;
}
.tr-cs-rating-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border: 2px solid #BBE0C6;
    border-radius: 16px;
    padding: 16px 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 0;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.tr-cs-rating-button:hover {
    border-color: #0F5E41;
    transform: scale(1.05);
}
.tr-cs-rating-button.selected {
    border-color: #0F5E41;
    background: #E8F4EB;
}
.tr-cs-rating-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.tr-cs-rating-icon svg {
    width: 100%;
    height: 100%;
    stroke: #333333;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s ease;
}
.tr-cs-rating-button:hover .tr-cs-rating-icon svg,
.tr-cs-rating-button.selected .tr-cs-rating-icon svg {
    stroke: #0F5E41;
}
.tr-cs-rating-label {
    font-size: 14px;
    font-weight: 600;
    color: #666666;
    transition: color 0.2s ease;
}
.tr-cs-rating-button:hover .tr-cs-rating-label,
.tr-cs-rating-button.selected .tr-cs-rating-label {
    color: #0F5E41;
}

/* ── COMMENT SECTION ── */

.tr-cs-comment-section {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-bottom: 24px;
}
.tr-cs-comment-section.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.tr-cs-comment-label {
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
    display: block;
}
.tr-cs-comment-textarea {
    width: 100%;
    min-height: 100px;
    padding: 14px 16px;
    border: 2px solid #BBE0C6;
    border-radius: 14px;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
    resize: vertical;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}
.tr-cs-comment-textarea:focus {
    outline: none;
    border-color: #0F5E41;
}
.tr-cs-comment-textarea::placeholder {
    color: #999999;
}

/* ── SUBMIT BUTTON ── */

.tr-cs-submit-button {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.tr-cs-submit-button.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.tr-cs-button {
    width: 100%;
    padding: 14px 24px;
    background: #0F5E41;
    color: #FFFFFF;
    border: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 44px;
    box-sizing: border-box;
}
.tr-cs-button:hover {
    background: #408469;
}
.tr-cs-button-outline {
    background: #FFFFFF;
    color: #0F5E41;
    border: 2px solid #0F5E41;
}
.tr-cs-button-outline:hover {
    background: #E8F4EB;
}
.tr-cs-btn-loading {
    font-style: normal;
}

/* ── SUCCESS STATE ── */

.tr-cs-success-content {
    text-align: center;
    padding: 60px 0;
}
.tr-cs-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #E8F4EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tr-cs-success-icon svg {
    width: 40px;
    height: 40px;
}
.tr-cs-success-title {
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}
.tr-cs-success-subtitle {
    font-size: 15px;
    color: #666666;
    margin-bottom: 32px;
}
.tr-cs-star-display {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}
.tr-cs-star-display svg {
    width: 28px;
    height: 28px;
}

/* ── ERROR STATE ── */

.tr-cs-error-content {
    text-align: center;
    padding: 60px 0;
}
.tr-cs-error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #F8E0CF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tr-cs-error-icon svg {
    width: 40px;
    height: 40px;
}
.tr-cs-error-title {
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}
.tr-cs-error-subtitle {
    font-size: 15px;
    color: #666666;
    margin-bottom: 32px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

/* ── CSAT RESPONSIVE ── */

@media (max-width: 600px) {
    .tr-cs-rating-button {
        padding: 12px 6px;
    }
    .tr-cs-rating-icon {
        width: 28px;
        height: 28px;
    }
    .tr-cs-success-content,
    .tr-cs-error-content {
        padding: 48px 0;
    }
}
@media (max-width: 400px) {
    .tr-cs-rating-options {
        gap: 6px;
    }
    .tr-cs-rating-icon {
        width: 24px;
        height: 24px;
    }
}
