/* ========================================
   TRANSCRIPT SERVICES - COLOR PALETTE
   ======================================== */
:root {
    --ts-primary: #1e3a5f;
    --ts-secondary: #2c5282;
    --ts-accent-teal: #4a9bab;
    --ts-accent-gold: #c9a227;
    --ts-accent-green: #4a7c59;
    --ts-warm-coral: #e67e5a;
    --ts-light-bg: #f8fafb;
    --ts-card-bg: #ffffff;
    --ts-gradient-blue: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #4a9bab 100%);
    --ts-gradient-gold: linear-gradient(135deg, #c9a227 0%, #d4a854 100%);
    --ts-gradient-warm: linear-gradient(135deg, #e67e5a 0%, #f4a574 100%);
}


/* ========================================
   HERO SECTION - MODERN DOCUMENT THEME
   ======================================== */
.ts-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 140px 60px 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 40%, #3d5a80 70%, #4a9bab 100%);
}

.ts-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: ts-pulse 8s ease-in-out infinite;
}

.ts-hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(74, 155, 171, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

@keyframes ts-pulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.25; }
}

.ts-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Floating Document Particles */
.ts-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ts-particle {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.08;
}

.ts-particle svg {
    width: 100%;
    height: 100%;
    stroke: rgba(255, 255, 255, 0.4);
}

.ts-particle-1 {
    top: 15%;
    right: 12%;
    animation: ts-float 8s ease-in-out infinite;
}

.ts-particle-2 {
    top: 60%;
    right: 8%;
    animation: ts-float 10s ease-in-out infinite 2s;
}

.ts-particle-3 {
    top: 35%;
    right: 25%;
    animation: ts-float 12s ease-in-out infinite 1s;
}

.ts-particle-4 {
    top: 75%;
    right: 20%;
    animation: ts-float 9s ease-in-out infinite 3s;
}

@keyframes ts-float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
    50% { transform: translateY(-20px) rotate(5deg); opacity: 0.15; }
}

.ts-hero-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Hero Content - Left Side */
.ts-hero-content {
    color: #ffffff;
}

.ts-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 10px 22px;
    border-radius: 50px;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.ts-hero-badge:hover {
    background: rgba(201, 162, 39, 0.25);
    border-color: rgba(201, 162, 39, 0.5);
}

.ts-badge-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ts-gradient-gold);
    border-radius: 50%;
    padding: 4px;
}

.ts-badge-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--ts-primary);
    stroke-width: 2.5;
}

.ts-hero-badge span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.ts-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 24px;
}

.ts-hero-title .accent {
    background: var(--ts-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ts-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0 0 36px;
    max-width: 560px;
}

.ts-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.ts-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.ts-feature-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.ts-feature-pill svg {
    width: 18px;
    height: 18px;
    stroke: var(--ts-accent-gold);
}

.ts-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.ts-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ts-gradient-gold);
    color: var(--ts-primary);
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.ts-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(201, 162, 39, 0.4);
    color: var(--ts-primary);
}

.ts-btn-primary svg {
    width: 20px;
    height: 20px;
    stroke: var(--ts-primary);
    transition: transform 0.3s ease;
}

.ts-btn-primary:hover svg {
    transform: translateY(2px);
}

.ts-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.ts-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.ts-btn-secondary svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Hero Stats */
.ts-hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ts-stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ts-stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ts-accent-gold);
    line-height: 1;
}

.ts-stat-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ts-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Visual - Right Side (Document Stack) */
.ts-hero-visual {
    position: relative;
    height: 550px;
}

.ts-document-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.ts-document {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.2);
}

.ts-doc-main {
    width: 380px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    padding: 40px 32px;
    animation: ts-docFloat 6s ease-in-out infinite;
}

@keyframes ts-docFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(-1deg); }
    50% { transform: translate(-50%, -52%) rotate(1deg); }
}

.ts-doc-header {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.ts-doc-logo {
    width: 50px;
    height: 50px;
    background: var(--ts-gradient-blue);
    border-radius: 12px;
    margin-bottom: 12px;
}

.ts-doc-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ts-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ts-doc-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ts-doc-line {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
}

.ts-line-header {
    width: 60%;
    height: 12px;
    background: #d1d5db;
    margin-bottom: 8px;
}

.ts-line-short {
    width: 40%;
}

.ts-line-medium {
    width: 65%;
}

.ts-line-long {
    width: 85%;
}

.ts-doc-seal {
    position: absolute;
    bottom: 40px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: var(--ts-gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.ts-doc-seal svg {
    width: 30px;
    height: 30px;
    stroke: var(--ts-primary);
    stroke-width: 2.5;
}

.ts-doc-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(74, 124, 89, 0.1);
    color: var(--ts-accent-green);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(74, 124, 89, 0.3);
}

/* Background Documents */
.ts-doc-bg-1 {
    width: 350px;
    height: 460px;
    top: 55%;
    left: 45%;
    transform: translate(-50%, -50%) rotate(-6deg);
    z-index: 2;
    opacity: 0.7;
}

.ts-doc-bg-2 {
    width: 320px;
    height: 420px;
    top: 60%;
    left: 40%;
    transform: translate(-50%, -50%) rotate(-12deg);
    z-index: 1;
    opacity: 0.4;
}

/* Floating Service Cards */
.ts-service-cards {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ts-service-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    animation: ts-cardFloat 4s ease-in-out infinite;
}

.ts-card-1 {
    top: 8%;
    left: -10%;
    animation-delay: 0s;
}

.ts-card-2 {
    bottom: 12%;
    right: -8%;
    animation-delay: 2s;
}

@keyframes ts-cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ts-card-icon {
    width: 48px;
    height: 48px;
    background: var(--ts-gradient-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ts-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 2;
}

.ts-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ts-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ts-primary);
}

.ts-card-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #6b7280;
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .ts-hero-container {
        gap: 60px;
    }

    .ts-doc-main {
        width: 340px;
        height: 450px;
    }

    .ts-service-card {
        padding: 16px;
    }
}

@media (max-width: 992px) {
    .ts-hero {
        padding: 120px 40px 80px;
        min-height: auto;
    }

    .ts-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ts-hero-content {
        max-width: 100%;
    }

    .ts-hero-subtitle {
        max-width: 100%;
    }

    .ts-hero-visual {
        height: 450px;
        margin: 0 auto;
        max-width: 500px;
    }

    .ts-doc-main {
        width: 320px;
        height: 420px;
    }

    .ts-card-1 {
        left: 0;
        top: 5%;
    }

    .ts-card-2 {
        right: 0;
        bottom: 8%;
    }
}

@media (max-width: 768px) {
    .ts-hero {
        padding: 100px 24px 60px;
    }

    .ts-hero-title {
        font-size: 2rem;
    }

    .ts-hero-subtitle {
        font-size: 1rem;
    }

    .ts-hero-features {
        gap: 8px;
    }

    .ts-feature-pill {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .ts-hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .ts-btn-primary,
    .ts-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .ts-hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .ts-stat-number {
        font-size: 1.5rem;
    }

    .ts-stat-label {
        font-size: 0.75rem;
    }

    .ts-hero-visual {
        height: 380px;
    }

    .ts-doc-main {
        width: 280px;
        height: 360px;
        padding: 28px 24px;
    }

    .ts-service-card {
        padding: 12px;
        gap: 12px;
    }

    .ts-card-icon {
        width: 40px;
        height: 40px;
    }

    .ts-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .ts-card-title {
        font-size: 0.9rem;
    }

    .ts-card-desc {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .ts-hero-badge {
        padding: 8px 16px;
        gap: 8px;
    }

    .ts-badge-icon {
        width: 20px;
        height: 20px;
    }

    .ts-hero-stats {
        gap: 16px;
    }

    .ts-stat-divider {
        display: none;
    }

    .ts-particle {
        width: 40px;
        height: 40px;
    }
}


/* ========================================
   SECTION 1 - HOW TO REQUEST
   ======================================== */
.ts-request-section {
    padding: 100px 60px;
    background: #f8fafb;
}

.ts-request-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header (Reusable) */
.ts-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.ts-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 155, 171, 0.1);
    border: 1px solid rgba(74, 155, 171, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.ts-section-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--ts-accent-teal);
}

.ts-section-badge span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ts-accent-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ts-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--ts-primary);
    margin: 0 0 16px;
    line-height: 1.2;
}

.ts-section-title span {
    background: var(--ts-gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ts-section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Process Timeline */
.ts-process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: nowrap;
}

.ts-step-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.4s ease;
    flex: 1;
    min-width: 0;
}

.ts-step-card:hover {
    border-color: var(--ts-accent-teal);
    box-shadow: 0 12px 40px rgba(74, 155, 171, 0.15);
    transform: translateY(-4px);
}

.ts-step-number {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 36px;
    height: 36px;
    background: var(--ts-gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.ts-step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(74, 155, 171, 0.1) 0%, rgba(201, 162, 39, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ts-step-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--ts-accent-teal);
    stroke-width: 2;
}

.ts-step-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ts-primary);
    margin: 0 0 12px;
}

.ts-step-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px;
}

.ts-step-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ts-accent-teal);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ts-step-link:hover {
    gap: 10px;
    color: var(--ts-secondary);
}

.ts-step-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.ts-step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ts-tag {
    background: rgba(74, 155, 171, 0.1);
    border: 1px solid rgba(74, 155, 171, 0.25);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ts-accent-teal);
}

.ts-step-price {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #6b7280;
}

.ts-step-price strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ts-accent-gold);
    margin-left: 4px;
}

.ts-step-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 124, 89, 0.1);
    border: 1px solid rgba(74, 124, 89, 0.25);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ts-accent-green);
}

.ts-status-dot {
    width: 8px;
    height: 8px;
    background: var(--ts-accent-green);
    border-radius: 50%;
    animation: ts-pulse-dot 2s ease-in-out infinite;
}

@keyframes ts-pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Step Arrows */
.ts-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
}

.ts-step-arrow svg {
    width: 32px;
    height: 32px;
    stroke: var(--ts-accent-teal);
    opacity: 0.4;
}

/* Request Note */
.ts-request-note {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.05) 0%, rgba(74, 155, 171, 0.05) 100%);
    border: 2px solid rgba(201, 162, 39, 0.2);
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.ts-note-icon {
    width: 48px;
    height: 48px;
    background: var(--ts-gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ts-note-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--ts-primary);
    stroke-width: 2.5;
}

.ts-note-content {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
}

.ts-note-content strong {
    color: var(--ts-primary);
    font-weight: 700;
}


/* ========================================
   SECTION 2 - TRANSCRIPT TYPES
   ======================================== */
.ts-types-section {
    padding: 100px 60px;
    background: #ffffff;
}

.ts-types-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ts-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .ts-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .ts-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ts-types-grid {
        grid-template-columns: 1fr;
    }
}

.ts-type-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.ts-type-card:hover {
    border-color: var(--ts-accent-teal);
    box-shadow: 0 16px 48px rgba(74, 155, 171, 0.15);
    transform: translateY(-6px);
}

.ts-type-card.featured {
    border-color: var(--ts-accent-gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.02) 0%, rgba(74, 155, 171, 0.02) 100%);
}

.ts-type-card.featured:hover {
    border-color: var(--ts-accent-gold);
    box-shadow: 0 16px 48px rgba(201, 162, 39, 0.2);
}

.ts-type-badge {
    position: absolute;
    top: -12px;
    right: 28px;
    background: var(--ts-gradient-gold);
    color: var(--ts-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.ts-type-icon {
    width: 72px;
    height: 72px;
    background: var(--ts-gradient-blue);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ts-type-card.featured .ts-type-icon {
    background: var(--ts-gradient-gold);
}

.ts-type-icon svg {
    width: 36px;
    height: 36px;
    stroke: #ffffff;
    stroke-width: 2;
}

.ts-type-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ts-primary);
    margin: 0 0 12px;
}

.ts-type-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 24px;
    flex-grow: 1;
}

/* When to Use Box - replaces long feature lists */
.ts-type-use {
    background: rgba(74, 155, 171, 0.06);
    border-left: 3px solid var(--ts-accent-teal);
    padding: 12px 14px;
    border-radius: 8px;
}

.ts-type-use strong {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ts-accent-teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.ts-type-use span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Old styles kept for backward compatibility but hidden */
.ts-type-features {
    display: none;
}

.ts-type-footer {
    display: none;
}

.ts-btn-outline {
    background: transparent;
    color: var(--ts-accent-teal);
    border: 2px solid var(--ts-accent-teal);
}

.ts-btn-outline:hover {
    background: var(--ts-accent-teal);
    color: #ffffff;
}

.ts-delivery-btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    background: transparent;
    color: var(--ts-accent-teal);
    border: 2px solid var(--ts-accent-teal);
}

.ts-delivery-btn:hover {
    background: var(--ts-accent-teal);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 155, 171, 0.25);
}


/* ========================================
   RESPONSIVE - SECTIONS
   ======================================== */
@media (max-width: 1400px) {
    .ts-process-timeline {
        gap: 12px;
    }
    
    .ts-step-card {
        padding: 28px 20px;
    }
    
    .ts-step-title {
        font-size: 1.05rem;
    }
}

@media (max-width: 1200px) {
    .ts-process-timeline {
        flex-direction: column;
        gap: 24px;
    }

    .ts-step-card {
        width: 100%;
    }

    .ts-step-arrow {
        display: none;
    }

    .ts-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .ts-request-section,
    .ts-types-section {
        padding: 80px 40px;
    }

    .ts-section-header {
        margin-bottom: 48px;
    }
}

@media (max-width: 768px) {
    .ts-request-section,
    .ts-types-section {
        padding: 60px 24px;
    }

    .ts-section-title {
        font-size: 1.75rem;
    }

    .ts-section-subtitle {
        font-size: 1rem;
    }

    .ts-step-card {
        padding: 28px 20px;
    }

    .ts-step-icon {
        width: 52px;
        height: 52px;
    }

    .ts-step-icon svg {
        width: 26px;
        height: 26px;
    }

    .ts-request-note {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .ts-types-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ts-type-card {
        padding: 28px 20px;
    }

    .ts-type-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .ts-type-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ts-step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .ts-hero-stats {
        gap: 16px;
    }

    .ts-stat-divider {
        display: none;
    }

    .ts-particle {
        width: 40px;
        height: 40px;
    }
}


/* ========================================
   SECTION 3 - DELIVERY OPTIONS
   ======================================== */
.ts-delivery-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
}

.ts-delivery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ts-delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.ts-delivery-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.ts-delivery-card:hover {
    border-color: var(--ts-accent-teal);
    box-shadow: 0 16px 48px rgba(74, 155, 171, 0.12);
    transform: translateY(-6px);
}

.ts-delivery-card.recommended {
    border-color: var(--ts-accent-gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.ts-delivery-card.recommended:hover {
    border-color: var(--ts-accent-gold);
    box-shadow: 0 16px 48px rgba(201, 162, 39, 0.2);
}

.ts-delivery-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--ts-gradient-gold);
    color: var(--ts-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.ts-delivery-icon {
    width: 56px;
    height: 56px;
    background: var(--ts-gradient-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.ts-delivery-card.recommended .ts-delivery-icon {
    background: var(--ts-gradient-gold);
}

.ts-delivery-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
    stroke-width: 2;
}

.ts-delivery-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ts-primary);
    margin: 0 0 8px;
}

.ts-delivery-timeline {
    display: inline-block;
    background: rgba(74, 155, 171, 0.12);
    color: var(--ts-primary);
    padding: 5px 12px;
    border-radius: 16px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.ts-delivery-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 20px;
}

.ts-delivery-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.ts-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ts-feature-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--ts-accent-teal);
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

.ts-feature-item > div {
    flex: 1;
}

.ts-feature-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ts-primary);
    margin-bottom: 2px;
}

.ts-feature-item span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #6b7280;
}

.ts-delivery-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.ts-delivery-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.ts-delivery-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #4b5563;
    margin-bottom: 8px;
}

.ts-delivery-benefits li:last-child {
    margin-bottom: 0;
}

.ts-delivery-benefits svg,
.ts-delivery-benefits li svg {
    width: 16px;
    height: 16px;
    stroke: var(--ts-accent-green);
    stroke-width: 2.5;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Delivery buttons removed - pricing in section 4 only */

.ts-delivery-note {
    background: rgba(74, 155, 171, 0.08);
    border-left: 4px solid var(--ts-accent-teal);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ts-delivery-note svg {
    width: 24px;
    height: 24px;
    stroke: var(--ts-accent-teal);
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

.ts-delivery-note p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}


/* ========================================
   RESPONSIVE - DELIVERY OPTIONS
   ======================================== */
@media (max-width: 1200px) {
    .ts-delivery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .ts-delivery-section {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .ts-delivery-section {
        padding: 60px 24px;
    }

    .ts-delivery-grid {
        grid-template-columns: 1fr;
    }

    .ts-delivery-card {
        padding: 28px 20px;
    }

    .ts-delivery-note {
        flex-direction: column;
    }
}


/* ========================================
   SECTION 4 - THIRD PARTY SERVICES
   ======================================== */
.ts-thirdparty-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #f0f9fa 0%, #ffffff 100%);
}

.ts-thirdparty-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ts-thirdparty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.ts-thirdparty-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.3s ease;
}

.ts-thirdparty-card:hover {
    border-color: var(--ts-accent-teal);
    box-shadow: 0 20px 60px rgba(74, 155, 171, 0.15);
    transform: translateY(-8px);
}

.ts-thirdparty-card.featured {
    border-color: var(--ts-accent-gold);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.03) 0%, #ffffff 100%);
}

.ts-thirdparty-card.featured:hover {
    border-color: var(--ts-accent-gold);
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.2);
}

.ts-thirdparty-badge {
    position: absolute;
    top: -12px;
    right: 28px;
    background: var(--ts-gradient-gold);
    color: var(--ts-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.ts-thirdparty-icon {
    width: 64px;
    height: 64px;
    background: var(--ts-gradient-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ts-thirdparty-card.featured .ts-thirdparty-icon {
    background: var(--ts-gradient-gold);
}

.ts-thirdparty-icon svg {
    width: 32px;
    height: 32px;
    stroke: #ffffff;
    stroke-width: 2;
}

.ts-thirdparty-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ts-primary);
    margin: 0 0 12px;
}

.ts-thirdparty-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px;
}

.ts-thirdparty-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.ts-thirdparty-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ts-thirdparty-feature svg {
    width: 18px;
    height: 18px;
    stroke: var(--ts-accent-green);
    stroke-width: 2.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.ts-thirdparty-feature span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
}

.ts-thirdparty-note {
    background: rgba(74, 155, 171, 0.08);
    border-left: 4px solid var(--ts-accent-teal);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 20px;
}

.ts-thirdparty-note strong {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ts-primary);
    display: block;
    margin-bottom: 4px;
}

.ts-thirdparty-note {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.5;
}

.ts-thirdparty-notice {
    background: linear-gradient(135deg, rgba(74, 155, 171, 0.08) 0%, rgba(201, 162, 39, 0.06) 100%);
    border: 2px solid var(--ts-accent-teal);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ts-notice-icon {
    width: 48px;
    height: 48px;
    background: var(--ts-gradient-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ts-notice-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 2;
}

.ts-notice-content h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ts-primary);
    margin: 0 0 8px;
}

.ts-notice-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

.ts-thirdparty-cta {
    background: linear-gradient(135deg, var(--ts-primary) 0%, #1a4d5c 100%);
    border-radius: 16px;
    padding: 24px 32px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ts-cta-content {
    flex: 1;
}

.ts-cta-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px;
}

.ts-cta-content p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.ts-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--ts-primary);
    padding: 12px 24px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    flex-shrink: 0;
}

.ts-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    background: var(--ts-accent-gold);
    color: #ffffff;
}

.ts-cta-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.ts-cta-info {
    display: none;
}

@media (max-width: 992px) {
    .ts-thirdparty-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ts-thirdparty-notice {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ts-thirdparty-cta {
        flex-direction: column;
        text-align: center;
        padding: 20px 24px;
    }

    .ts-cta-content h3 {
        font-size: 1.05rem;
    }

    .ts-cta-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .ts-thirdparty-cta {
        padding: 18px 20px;
    }

    .ts-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .ts-thirdparty-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ts-thirdparty-notice {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* ========================================
   SECTION 5 - PRICING & TIMELINE
   ======================================== */
.ts-pricing-section {
    padding: 100px 60px;
    background: #ffffff;
}

.ts-pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ts-pricing-wrapper {
    margin-bottom: 48px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.ts-pricing-table {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
    gap: 0;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    min-width: 800px;
}

.ts-pricing-header {
    display: contents;
}

.ts-pricing-header .ts-pricing-cell {
    background: var(--ts-gradient-blue);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 20px 20px;
}

.ts-pricing-row {
    display: contents;
}

.ts-pricing-row:nth-child(even) .ts-pricing-cell {
    background: #f9fafb;
}

.ts-pricing-cell {
    padding: 20px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #374151;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.ts-pricing-row:last-child .ts-pricing-cell {
    border-bottom: none;
}

.ts-pricing-cell strong {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--ts-primary);
    font-size: 1rem;
}

.ts-cell-badge {
    display: inline-block;
    background: var(--ts-gradient-gold);
    color: var(--ts-primary);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 8px;
}

/* Additional Services */
.ts-pricing-extras {
    background: linear-gradient(135deg, rgba(74, 155, 171, 0.05) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 2px solid rgba(74, 155, 171, 0.15);
    border-radius: 20px;
    padding: 36px 32px;
    margin-bottom: 32px;
}

.ts-extras-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ts-primary);
    margin: 0 0 24px;
}

.ts-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.ts-extra-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ts-extra-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--ts-accent-green);
    stroke-width: 2.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.ts-extra-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ts-extra-item strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ts-primary);
}

.ts-extra-item span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #6b7280;
}

/* Payment Methods */
.ts-payment-methods {
    text-align: center;
    padding-top: 32px;
    border-top: 2px solid #e5e7eb;
}

.ts-payment-methods h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px;
}

.ts-payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ts-payment-icon {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ts-primary);
    transition: all 0.3s ease;
}

.ts-payment-icon:hover {
    border-color: var(--ts-accent-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 155, 171, 0.15);
}


/* ========================================
   RESPONSIVE - PRICING
   ======================================== */
@media (max-width: 992px) {
    .ts-pricing-section {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .ts-pricing-section {
        padding: 60px 24px;
    }

    .ts-pricing-wrapper {
        margin-left: -24px;
        margin-right: -24px;
        padding: 0 24px;
    }

    .ts-pricing-cell {
        padding: 16px 12px;
        font-size: 0.85rem;
    }

    .ts-pricing-header .ts-pricing-cell {
        padding: 16px 12px;
        font-size: 0.8rem;
    }

    .ts-pricing-extras {
        padding: 24px 20px;
    }

    .ts-extras-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ts-payment-icons {
        gap: 12px;
    }

    .ts-payment-icon {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}


/* ========================================
   SECTION 5 - VERIFICATION & SECURITY
   ======================================== */
.ts-verification-section {
    padding: 100px 60px;
    background: #ffffff;
}

.ts-verification-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ts-verification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 56px;
}

.ts-verification-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    padding: 36px 28px;
    transition: all 0.4s ease;
}

.ts-verification-card:hover {
    border-color: var(--ts-accent-teal);
    box-shadow: 0 16px 48px rgba(74, 155, 171, 0.12);
    transform: translateY(-6px);
}

.ts-verification-icon {
    width: 72px;
    height: 72px;
    background: var(--ts-gradient-blue);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ts-verification-icon svg {
    width: 36px;
    height: 36px;
    stroke: #ffffff;
    stroke-width: 2;
}

.ts-verification-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ts-primary);
    margin: 0 0 16px;
}

.ts-verification-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 24px;
}

.ts-verification-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ts-verification-list li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #4b5563;
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
}

.ts-verification-list li:last-child {
    margin-bottom: 0;
}

.ts-verification-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--ts-accent-green);
    border-radius: 50%;
}

/* Security Badges */
.ts-security-badges {
    text-align: center;
    padding: 48px 36px;
    background: linear-gradient(135deg, rgba(74, 155, 171, 0.05) 0%, rgba(44, 82, 130, 0.05) 100%);
    border-radius: 24px;
}

.ts-badges-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 32px;
}

.ts-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.ts-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ts-badge-item svg {
    width: 48px;
    height: 48px;
    stroke: var(--ts-accent-teal);
    stroke-width: 2;
}

.ts-badge-item span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ts-primary);
    text-align: center;
}


/* ========================================
   SECTION 6 - FAQS
   ======================================== */
.ts-faq-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
}

.ts-faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ts-faq-accordion {
    margin-bottom: 56px;
}

.ts-faq-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ts-faq-item:last-child {
    margin-bottom: 0;
}

.ts-faq-item.active {
    border-color: var(--ts-accent-teal);
    box-shadow: 0 8px 24px rgba(74, 155, 171, 0.12);
}

.ts-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    padding: 24px 28px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ts-faq-question:hover {
    background: rgba(74, 155, 171, 0.04);
}

.ts-faq-question span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ts-primary);
    line-height: 1.4;
    padding-right: 20px;
}

.ts-faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--ts-accent-teal);
    stroke-width: 2;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ts-faq-item.active .ts-faq-icon {
    transform: rotate(180deg);
}

.ts-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.ts-faq-item.active .ts-faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.ts-faq-answer p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
}

/* FAQ CTA */
.ts-faq-cta {
    text-align: center;
    padding: 48px 36px;
    background: var(--ts-gradient-blue);
    border-radius: 24px;
}

.ts-faq-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 12px;
}

.ts-faq-cta p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px;
}

.ts-faq-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ts-faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ts-faq-cta-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
}

.ts-faq-cta-btn.primary {
    background: #ffffff;
    color: var(--ts-primary);
    border: 2px solid #ffffff;
}

.ts-faq-cta-btn.primary:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.ts-faq-cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.ts-faq-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}


/* ========================================
   RESPONSIVE - VERIFICATION & FAQS
   ======================================== */
@media (max-width: 1200px) {
    .ts-verification-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .ts-verification-section,
    .ts-faq-section {
        padding: 80px 40px;
    }

    .ts-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ts-verification-section,
    .ts-faq-section {
        padding: 60px 24px;
    }

    .ts-verification-grid {
        grid-template-columns: 1fr;
    }

    .ts-verification-card {
        padding: 28px 24px;
    }

    .ts-security-badges {
        padding: 36px 24px;
    }

    .ts-badges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ts-faq-question {
        padding: 20px 20px;
    }

    .ts-faq-question span {
        font-size: 1rem;
    }

    .ts-faq-item.active .ts-faq-answer {
        padding: 0 20px 20px;
    }

    .ts-faq-cta {
        padding: 36px 24px;
    }

    .ts-faq-cta h3 {
        font-size: 1.6rem;
    }

    .ts-faq-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .ts-faq-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
