/* Therapy Landing Pro - Additional Core Utilities & Modules */

/* Layout & Spacing */
.tlp-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
}
.tlp-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.06) 0%, transparent 70%);
    filter: blur(50px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.tlp-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.04) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.tlp-section > * {
    position: relative;
    z-index: 1;
}
.tlp-max-w-4xl { max-width: 75rem; margin-left: auto; margin-right: auto; }
.tlp-max-w-3xl { max-width: 60rem; margin-left: auto; margin-right: auto; }
.tlp-max-w-md { max-width: 32rem; margin-left: auto; margin-right: auto; }
.tlp-mx-auto { margin-left: auto; margin-right: auto; }
.tlp-w-full { width: 100%; }
.tlp-container.tlp-faq-modern-shell { max-width: 65rem; }

/* Typography */
.tlp-section-title {
    font-family: var(--tlp-font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--tlp-text-main);
    margin-bottom: 1.5rem;
    margin-top: 0;
    padding-top: 10px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}
.tlp-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--tlp-primary), var(--tlp-accent));
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.tlp-section:hover .tlp-section-title::after { width: 5rem; }
.tlp-text-center .tlp-section-title::after,
.tlp-section-title.tlp-text-center::after {
    left: 50%;
    transform: translateX(-50%);
}
.tlp-section:hover .tlp-text-center .tlp-section-title::after,
.tlp-section:hover .tlp-section-title.tlp-text-center::after { width: 6.5rem; }
@media (max-width: 767.98px) {
    .tlp-section-title { font-size: 1.72rem; }
}
@media (min-width: 768px) {
    .tlp-section-title { font-size: 2.25rem; }
}
.tlp-section-desc { color: var(--tlp-text-muted); margin-top: 0; max-width: 48rem; margin-left: auto; margin-right: auto; font-size: 1.15rem; line-height: 1.8; }
.tlp-text-main { color: var(--tlp-text-main); }
.tlp-text-muted { color: var(--tlp-text-muted); }
.tlp-font-bold { font-weight: 700; }
.tlp-text-3xl { font-size: 2rem; line-height: 2.5rem; font-weight: 800; }
.tlp-text-2xl { font-size: 1.5rem; line-height: 2rem; font-weight: 700; }
.tlp-text-xl { font-size: 1.25rem; line-height: 1.75rem; font-weight: 600; }
.tlp-text-xs { font-size: 0.75rem; line-height: 1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.tlp-text-center { text-align: center; }

/* Backgrounds & Colors */
.tlp-bg-white { background-color: var(--tlp-bg-white); }
.tlp-bg-emerald-light { background-color: #ecfdf5; }
.tlp-bg-gray-50 { background-color: var(--tlp-bg-light); }
.tlp-hero-gradient { background: linear-gradient(135deg, var(--tlp-primary-dark) 0%, var(--tlp-primary) 40%, var(--tlp-primary-light) 100%); }

/* Badges */
.tlp-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.25rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 700; font-family: inherit; letter-spacing: 0.05em; text-transform: uppercase; }
.tlp-badge-red { background-color: #fee2e2; color: #b91c1c; }
.tlp-badge-emerald { background-color: #d1fae5; color: #047857; }
.tlp-badge-gray { background-color: #f1f5f9; color: #475569; }

/* Grid System */
.tlp-grid { display: grid; gap: 2rem; }
.tlp-grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.tlp-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px) {
    .tlp-sm-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
    .tlp-md-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tlp-md-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .tlp-lg-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .tlp-lg-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Utilities */
.tlp-shadow-2xl { box-shadow: var(--tlp-shadow-xl); }
.tlp-border { border: 1px solid var(--tlp-border); }

/* Premium Cards (Signs/Features) */
.tlp-card {
    background-color: var(--tlp-bg-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 1.5rem;
    padding: 10px 20px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px -1px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Keep testimonial body text left-aligned even when .tlp-card centers generic content. */
.tlp-testimonials-section .tlp-testimonial-card .tlp-testimonial-content {
    align-self: stretch;
    text-align: left !important;
}
.tlp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--tlp-primary), var(--tlp-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}
.tlp-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(52, 211, 153, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}
.tlp-card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -15px rgba(0,0,0,0.1);
    border-color: rgba(52, 211, 153, 0.2);
}
.tlp-card-hover:hover::before { transform: scaleX(1); }
.tlp-card-hover:hover::after { opacity: 1; }
.tlp-card-icon-wrap {
    width: 4rem;
    height: 4rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: #fef2f2;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.tlp-card-hover:hover .tlp-card-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px -5px rgba(220, 38, 38, 0.2);
    background-color: #ffffff;
}
.tlp-text-red { color: #dc2626; }
.tlp-card-title { font-family: inherit; font-weight: 700; color: var(--tlp-text-main); margin-bottom: 0.75rem; margin-top: 0; font-size: 1.25rem; letter-spacing: -0.01em; transition: color 0.3s ease; }
.tlp-card-hover:hover .tlp-card-title { color: var(--tlp-primary-dark); }
.tlp-card-desc { color: #374151; font-size: 1rem; font-weight: normal; margin: 0; line-height: 1.7em; }

/* Legacy Process Grid (compat) */
.tlp-process-grid { position: relative; display: grid; gap: 2.5rem; margin-top: 3rem; }
@media (min-width: 768px) {
    .tlp-process-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
}
.tlp-process-line { display: none; }
@media (min-width: 768px) {
    .tlp-process-line { display: block; position: absolute; top: 2.5rem; left: 0; width: 100%; height: 2px; background: rgba(16, 185, 129, 0.2); z-index: 0; }
}
.tlp-process-step { position: relative; z-index: 10; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.tlp-process-number { width: 4rem; height: 4rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 900; font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif; letter-spacing: -0.02em; background-color: var(--tlp-bg-white); color: var(--tlp-primary); border: 3px solid rgba(5, 150, 105, 0.2); box-shadow: 0 4px 10px -2px rgba(0,0,0,0.05); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); margin: 0 auto; }
@media (min-width: 768px) {
    .tlp-process-number { width: 5rem; height: 5rem; font-size: 1.75rem; border-width: 4px; }
}
.tlp-process-number-active { background: linear-gradient(135deg, var(--tlp-primary), var(--tlp-primary-dark)); color: var(--tlp-bg-white); border-color: var(--tlp-primary); box-shadow: 0 0 0 6px rgba(5, 150, 105, 0.1), 0 10px 25px -5px rgba(5, 150, 105, 0.35); }
.tlp-process-step:hover .tlp-process-number:not(.tlp-process-number-active) { border-color: var(--tlp-primary); transform: scale(1.1); box-shadow: 0 10px 20px -5px rgba(5, 150, 105, 0.2); }
.tlp-process-content { display: flex; flex-direction: column; gap: 0.5rem; }
.tlp-process-title { font-size: 1.25rem; font-weight: 700; font-family: inherit; color: var(--tlp-text-main); margin: 0; line-height: 1.4; min-height: 3.5rem; display: flex; align-items: flex-start; justify-content: center; }
.tlp-process-desc { font-size: 0.95rem; color: var(--tlp-text-muted); line-height: 1.6; margin: 0; }

/* Process Layout System (tlp-proc-*) */
.tlp-proc-header { margin-bottom: 2.2rem; }
.tlp-proc-desc { max-width: 760px; }
.tlp-proc-lucide,
.tlp-proc-emoji {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tlp-primary-dark);
}
.tlp-proc-step-sub,
.tlp-proc-card-sub,
.tlp-proc-bignum-sub,
.tlp-proc-vnum,
.tlp-proc-acc-sub {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tlp-primary);
    font-weight: 700;
}
.tlp-proc-step-title,
.tlp-proc-card-title,
.tlp-proc-vtitle,
.tlp-proc-bignum-title,
.tlp-proc-acc-title {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.45;
    color: var(--tlp-text-main);
}
.tlp-proc-step-desc,
.tlp-proc-card-desc,
.tlp-proc-vdesc,
.tlp-proc-bignum-desc,
.tlp-proc-acc-content p {
    margin: 0.5rem 0 0;
    color: var(--tlp-text-muted);
    line-height: 1.7;
}

/* Layout 1: Horizontal Stepper */
.tlp-proc-stepper {
    display: grid;
    gap: 1.25rem;
    position: relative;
}
.tlp-proc-stepper-line { display: none; }
.tlp-proc-step-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    gap: 0.875rem;
}
.tlp-proc-step-circle {
    width: 2.5rem;
    height: 2.5rem;
    flex: 0 0 2.5rem;
    border-radius: 999px;
    background: #fff;
    border: 2px solid var(--tlp-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--tlp-primary-dark);
}

/* Layout 2: Card Grid - Modern */
.tlp-proc-card-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.tlp-proc-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.75);
    padding: 1.35rem 1.2rem 1.25rem;
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.07);
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.tlp-proc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(255,255,255,0.85));
    z-index: 0;
}
.tlp-proc-card::after {
    content: '';
    position: absolute;
    top: -35%;
    right: -10%;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, color-mix(in srgb, var(--tlp-primary) 20%, transparent), transparent 70%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}
.tlp-proc-card > * { position: relative; z-index: 1; }
.tlp-proc-card:hover {
    transform: translateY(-8px);
    border-color: color-mix(in srgb, var(--tlp-primary) 18%, #ffffff);
    box-shadow: 0 24px 46px rgba(2, 6, 23, 0.12);
}
.tlp-proc-card-num {
    position: absolute;
    top: 0.9rem;
    right: 0.95rem;
    color: rgba(2, 6, 23, 0.34);
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.28rem 0.58rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.08);
}
.tlp-proc-card-icon,
.tlp-proc-bignum-icon {
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 14px;
    border: 1px solid color-mix(in srgb, var(--tlp-primary) 28%, transparent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    background: color-mix(in srgb, var(--tlp-primary-subtle) 45%, #ffffff);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}
.tlp-proc-card-sub { margin-bottom: 0.42rem; }
.tlp-proc-card-title { font-size: 1.18rem; line-height: 1.4; }

/* Layout 3: Vertical Timeline - Modern */
.tlp-proc-vtimeline {
    display: grid;
    gap: 0.9rem;
    position: relative;
}
.tlp-proc-vitem {
    position: relative;
    padding: 0 0 0 3.55rem;
}
.tlp-proc-vdot {
    position: absolute;
    left: 0;
    top: 0.92rem;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 999px;
    border: 2px solid color-mix(in srgb, var(--tlp-primary) 42%, #ffffff);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.1);
}
.tlp-proc-vline {
    position: absolute;
    left: 1.24rem;
    top: 3.35rem;
    bottom: -1rem;
    width: 2px;
    background: linear-gradient(to bottom, color-mix(in srgb, var(--tlp-primary) 20%, transparent), rgba(148, 163, 184, 0.2));
}
.tlp-proc-vbody {
    border-radius: 18px;
    border: 1px solid rgba(2, 6, 23, 0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.88));
    box-shadow: 0 14px 32px rgba(2, 6, 23, 0.08);
    padding: 1rem 1rem 1.05rem;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.tlp-proc-vitem:hover .tlp-proc-vbody {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px rgba(2, 6, 23, 0.14);
}
.tlp-proc-vtitle { font-size: 1.15rem; }

/* Layout 4: Big Number */
.tlp-proc-bignum-grid {
    display: grid;
    gap: 1rem;
}
.tlp-proc-bignum-item {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 1.25rem;
    overflow: hidden;
}
.tlp-proc-bignum-bg {
    position: absolute;
    top: -0.7rem;
    right: 0.25rem;
    font-size: 4.2rem;
    line-height: 1;
    color: rgba(2, 6, 23, 0.06);
    font-weight: 800;
    pointer-events: none;
}

/* Layout 5: Accordion - Modern */
.tlp-proc-accordion {
    display: grid;
    gap: 0.9rem;
}
.tlp-proc-acc-item {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(2, 6, 23, 0.09);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.tlp-proc-acc-item[open] {
    border-color: color-mix(in srgb, var(--tlp-primary) 35%, transparent);
    box-shadow: 0 18px 42px rgba(2, 6, 23, 0.12);
}
.tlp-proc-acc-summary {
    list-style: none;
    display: grid;
    grid-template-columns: 2.55rem 1fr auto auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.95rem 1rem;
    cursor: pointer;
}
.tlp-proc-acc-summary::-webkit-details-marker { display: none; }
.tlp-proc-acc-summary::after {
    content: '+';
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(2, 6, 23, 0.14);
    color: rgba(2, 6, 23, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.tlp-proc-acc-item[open] .tlp-proc-acc-summary::after {
    transform: rotate(45deg);
    background: var(--tlp-primary);
    color: #fff;
    border-color: var(--tlp-primary);
}
.tlp-proc-acc-num {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 999px;
    border: 2px solid color-mix(in srgb, var(--tlp-primary) 35%, #ffffff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--tlp-primary-dark);
    background: color-mix(in srgb, var(--tlp-primary-subtle) 50%, #ffffff);
}
.tlp-proc-acc-title-wrap { min-width: 0; }
.tlp-proc-acc-icon {
    width: 1.95rem;
    height: 1.95rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 6, 23, 0.03);
}
.tlp-proc-acc-content {
    padding: 0 1rem 1rem 4.35rem;
}
.tlp-proc-acc-content p {
    margin-top: 0;
    padding-top: 0.25rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.35);
}

@media (min-width: 768px) {
    .tlp-proc-stepper {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
    }
    .tlp-proc-stepper-line {
        position: absolute;
        left: 0;
        right: 0;
        top: 2.5rem;
        height: 2px;
        display: block;
        background: var(--tlp-primary-subtle);
        z-index: 0;
    }
    .tlp-proc-step-item {
        position: relative;
        z-index: 1;
        flex-direction: column;
        text-align: center;
        align-items: center;
        min-height: 100%;
    }
    .tlp-proc-step-body {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .tlp-proc-card-grid {
        gap: 1.15rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .tlp-proc-vitem {
        padding-left: 3.8rem;
    }
    .tlp-proc-vbody {
        padding: 1.2rem 1.25rem;
    }
    .tlp-proc-acc-summary {
        padding: 1.1rem 1.2rem;
    }
    .tlp-proc-acc-content {
        padding: 0 1.2rem 1.2rem 4.6rem;
    }
    .tlp-proc-bignum-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .tlp-proc-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .tlp-proc-vtimeline {
        gap: 1.2rem;
    }
    .tlp-proc-vtimeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        transform: translateX(-50%);
        background: linear-gradient(to bottom, rgba(148, 163, 184, 0.22), color-mix(in srgb, var(--tlp-primary) 35%, transparent), rgba(148, 163, 184, 0.22));
    }
    .tlp-proc-vitem {
        width: calc(50% - 2rem);
        padding-left: 0;
    }
    .tlp-proc-vline {
        display: none;
    }
    .tlp-proc-vitem:nth-child(odd) {
        margin-right: auto;
    }
    .tlp-proc-vitem:nth-child(even) {
        margin-left: auto;
    }
    .tlp-proc-vitem:nth-child(odd) .tlp-proc-vdot {
        left: auto;
        right: -3.3rem;
    }
    .tlp-proc-vitem:nth-child(even) .tlp-proc-vdot {
        left: -3.3rem;
    }
    .tlp-proc-vitem:nth-child(odd) .tlp-proc-vbody {
        text-align: right;
    }
    .tlp-proc-accordion {
        max-width: 920px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1320px) {
    .tlp-proc-card-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .tlp-proc-bignum-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* FAQ - Modern Accordion */
.tlp-faq-container { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.tlp-faq-item { background: #fff; border: 1px solid var(--tlp-border); border-radius: 1rem; overflow: hidden; transition: all 0.3s ease; box-shadow: var(--tlp-shadow-sm); }
.tlp-faq-item:hover { box-shadow: var(--tlp-shadow-md); border-color: rgba(5, 150, 105, 0.2); }
.tlp-faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; text-align: left; background: none; border: none; cursor: pointer; transition: background 0.3s; font-family: inherit; }
.tlp-faq-answer { padding: 0 1.5rem 1.5rem; font-size: 1rem; line-height: 1.7; color: var(--tlp-text-muted); }
.tlp-hidden { display: none !important; }
.tlp-transition-transform { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* Form - Floating UI & Neumorphism */
.tlp-form-card { padding: 3rem; border-radius: 2rem; background: #fff; border: 1px solid rgba(255,255,255,0.5); }
@media (min-width: 768px) { .tlp-form-card { padding: 4rem; } }
.tlp-form-wrapper { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.tlp-form-group { display: flex; flex-direction: column; gap: 0.5rem; position: relative; }
.tlp-form-label { font-size: 0.875rem; font-weight: 600; color: var(--tlp-text-main); display: block; font-family: inherit; text-transform: uppercase; letter-spacing: 0.05em; }
.tlp-form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #f1f5f9;
    border-radius: 1rem;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: var(--tlp-text-main);
}
.tlp-form-input:focus { border-color: var(--tlp-primary-light); background: #fff; box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.1); }
.tlp-resize-none { resize: none; }

/* Scroll Reveal */
.tlp-scroll-reveal { opacity: 0; transform: translateY(60px) scale(0.95); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.tlp-scroll-reveal.tlp-visible { opacity: 1; transform: translateY(0) scale(1); }
