/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 30 2026 | 01:16:23 */
/* ========================================
   2TIO Static Pages - WordPress Styles
   Minimal additions - leverages _root_styles.css

   DEPENDENCY: Requires _root_styles.css to be loaded first
   - Uses page-header, feature-item, faq-*, stats-*, value-* components
   - Uses CSS variables from :root
   ======================================== */

/* ========================================
   1. TEAM MEMBER CARDS
   (Unique to static pages - not in root)
   ======================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    padding: var(--space-5xl) 0;
}

.team-member-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl) var(--space-2xl);
    text-align: center;
    transition: all var(--transition-base);
}

.team-member-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.team-member__photo {
    width: 160px;
    height: 160px;
    border-radius: var(--radius-full);
    object-fit: cover;
    margin-bottom: var(--space-xl);
}

.team-member__name {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 0 var(--space-sm) 0;
    color: var(--color-text-dark);
}

.team-member__role-badge {
    display: inline-block;
    background: var(--color-primary-glow);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: var(--font-size-xs);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.team-member__bio {
    font-size: var(--font-size-sm);
    line-height: 1.7;
    color: var(--color-text-muted);
    text-align: left;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        padding: var(--space-3xl) 0;
    }

    .team-member-card {
        padding: var(--space-2xl);
    }

    .team-member__photo {
        width: 120px;
        height: 120px;
    }
}

/* ========================================
   2. LEGAL DISCLOSURE BOX
   (Unique to static pages)
   ======================================== */

.legal-disclosure {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    margin: var(--space-3xl) 0;
}

.legal-disclosure__title {
    font-family: var(--font-display);
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 0 var(--space-md) 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.legal-disclosure__title::before {
    content: 'i';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    color: var(--color-bg-white);
    border-radius: var(--radius-full);
    font-family: Georgia, serif;
    font-style: italic;
    font-size: var(--font-size-sm);
    flex-shrink: 0;
}

.legal-disclosure__text {
    font-size: var(--font-size-sm);
    line-height: 1.8;
    color: var(--color-text-muted);
    margin: 0;
}

.legal-disclosure__text a {
    color: var(--color-primary);
}

@media (max-width: 600px) {
    .legal-disclosure {
        padding: var(--space-xl);
    }
}

/* ========================================
   3. ARTICLE CONTENT STYLING
   (Extends legal-content from root)
   ======================================== */

.article-prose {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

.article-prose h2 {
    color: var(--color-text-dark);
    font-family: var(--font-display);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin: var(--space-4xl) 0 var(--space-lg) 0;
    letter-spacing: -0.02em;
}

.article-prose h2:first-child {
    margin-top: 0;
}

.article-prose h3 {
    color: var(--color-text-dark);
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin: var(--space-2xl) 0 var(--space-md) 0;
}

.article-prose p {
    color: var(--color-text-muted);
    font-size: var(--font-size-md);
    line-height: 1.8;
    margin: 0 0 var(--space-lg) 0;
}

.article-prose ul,
.article-prose ol {
    color: var(--color-text-muted);
    font-size: var(--font-size-md);
    line-height: 1.8;
    margin: 0 0 var(--space-lg) 0;
    padding-left: var(--space-xl);
}

.article-prose li {
    margin-bottom: var(--space-sm);
}

.article-prose strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

/* Data source highlight box */
.data-source-list {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: var(--space-xl) var(--space-2xl);
    margin: var(--space-xl) 0;
}

.data-source-list li {
    margin-bottom: var(--space-md);
}

.data-source-list li:last-child {
    margin-bottom: 0;
}

/* ========================================
   4. INFO CALLOUT
   (Highlighted info box)
   ======================================== */

.info-callout {
    background: linear-gradient(135deg, var(--color-bg-subtle) 0%, var(--color-bg-white) 100%);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    margin: var(--space-3xl) 0;
}

.info-callout__title {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 0 var(--space-sm) 0;
}

.info-callout__text {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
}

/* ========================================
   5. CTA BANNER
   (Simple bottom CTA section)
   ======================================== */

.cta-section {
    background: var(--color-primary);
    padding: var(--space-5xl) 0;
    text-align: center;
}

.cta-section .wr {
    max-width: 700px;
}

.cta-section__title {
    color: var(--color-bg-white);
    font-family: var(--font-display);
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 var(--space-md) 0;
    letter-spacing: -0.02em;
}

.cta-section__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-lg);
    line-height: 1.6;
    margin: 0 0 var(--space-2xl) 0;
}

.cta-section .btn-orange {
    background: var(--color-bg-white);
    color: var(--color-primary);
}

.cta-section .btn-orange:hover {
    background: var(--color-bg-light);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 740px) {
    .cta-section__title {
        font-size: var(--font-size-3xl);
    }
}

/* ========================================
   6. ACCORDION/FAQ ENHANCEMENTS
   (Extends faq-* from root)
   ======================================== */

.faq-item-expandable {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0;
    margin-bottom: 0;
}

.faq-item-expandable:last-child {
    border-bottom: none;
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xl) 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-trigger:hover {
    background: transparent;
}

.faq-trigger .faq-question {
    margin: 0;
    flex: 1;
}

.faq-trigger__icon {
    flex-shrink: 0;
    color: var(--color-primary);
    transition: transform var(--transition-fast);
    margin-left: var(--space-md);
}

.faq-trigger[aria-expanded="true"] .faq-trigger__icon {
    transform: rotate(180deg);
}

.faq-content {
    height: 0;
    overflow: hidden;
    transition: height var(--transition-base);
}

.faq-content__inner {
    padding-bottom: var(--space-xl);
}

.faq-content__inner p {
    margin: 0 0 var(--space-md) 0;
}

.faq-content__inner p:last-child {
    margin-bottom: 0;
}

/* ========================================
   7. ENHANCED TEAM MEMBER CARDS
   (Visual upgrades for team page)
   ======================================== */

.team-member-card--enhanced {
    position: relative;
    overflow: hidden;
}

.team-member-card--enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #ff9a8b 100%);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.team-member-card--enhanced:hover::before {
    transform: scaleX(1);
}

.team-member__photo--ring {
    border: 4px solid var(--color-bg-light);
    box-shadow: 0 0 0 4px var(--color-primary-glow), var(--shadow-md);
    transition: all var(--transition-base);
}

.team-member-card:hover .team-member__photo--ring {
    box-shadow: 0 0 0 6px var(--color-primary-glow), var(--shadow-lg);
    transform: scale(1.02);
}

/* Social links for team members */
.team-member__social {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.team-member__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--color-bg-light);
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.team-member__social-link:hover {
    background: var(--color-primary);
    color: var(--color-bg-white);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ========================================
   8. ENHANCED STATS SECTION
   (Visual upgrades for stats)
   ======================================== */

.stats-section--gradient {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-subtle) 100%);
    position: relative;
}

.stats-section--gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #ff9a8b 100%);
    border-radius: var(--radius-full);
}

.stat-item--card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.stat-item--card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.stat-number--animated {
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff9a8b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   9. ENHANCED VALUE SECTION
   (Visual upgrades for value props)
   ======================================== */

.value-item--card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
}

.value-item--card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-glow);
}

.value-item-icon--circle {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--color-primary-glow) 0%, rgba(255, 154, 139, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.value-item--card:hover .value-item-icon--circle {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--color-primary-glow) 0%, rgba(255, 154, 139, 0.25) 100%);
}

/* ========================================
   10. ENHANCED ARTICLE PROSE
   (Visual upgrades for about page content)
   ======================================== */

.article-prose--enhanced h2 {
    position: relative;
    padding-left: var(--space-lg);
}

.article-prose--enhanced h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary) 0%, #ff9a8b 100%);
    border-radius: var(--radius-full);
}

.article-prose--enhanced h2:first-child::before {
    height: 100%;
}

/* Pull quote styling */
.pull-quote {
    position: relative;
    padding: var(--space-2xl) var(--space-3xl);
    margin: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--color-bg-subtle) 0%, var(--color-bg-white) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

.pull-quote::before {
    content: '"';
    position: absolute;
    top: var(--space-md);
    left: var(--space-xl);
    font-family: Georgia, serif;
    font-size: 60px;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 1;
}

.pull-quote p {
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--color-text-dark);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Highlight box for key content */
.content-highlight {
    background: var(--color-primary-glow);
    border-radius: var(--radius-md);
    padding: var(--space-xl) var(--space-2xl);
    margin: var(--space-2xl) 0;
}

.content-highlight p {
    margin: 0;
    color: var(--color-text-dark);
}

/* ========================================
   11. SECTION DIVIDERS & DECORATIVE
   ======================================== */

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) 0;
}

.section-divider__line {
    flex: 1;
    height: 1px;
    background: var(--color-border);
    max-width: 100px;
}

.section-divider__icon {
    color: var(--color-primary);
    padding: 0 var(--space-lg);
}

/* Decorative dots pattern */
.decorative-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--color-primary-glow) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.5;
    pointer-events: none;
}

/* ========================================
   12. ENHANCED CTA SECTION
   (Visual upgrades for CTA)
   ======================================== */

.cta-section--pattern {
    position: relative;
    overflow: hidden;
}

.cta-section--pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section--pattern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ========================================
   13. TIMELINE COMPONENT
   (For company history/story)
   ======================================== */

.timeline {
    position: relative;
    padding-left: var(--space-3xl);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-border) 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-2xl);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-3xl) + 4px);
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border: 3px solid var(--color-bg-white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0 0 var(--space-sm) 0;
}

.timeline-content p {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
}
