/* Home Page Specific Styles */
.tpt-hero { background: var(--tpt-near-black); color: var(--tpt-white); padding: 60px 0 80px; overflow: hidden; }
.tpt-hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.tpt-hero h1 { color: var(--tpt-white); margin-bottom: 20px; }
.tpt-hero__text { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 32px; }
.tpt-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.tpt-hero__trust { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.6); }
.tpt-hero__trust-item { display: flex; align-items: center; gap: 6px; }
.tpt-hero__stars { color: var(--tpt-orange); font-size: 14px; }
.tpt-hero__media { position: relative; }
.tpt-hero__image-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.tpt-hero__image-wrap img { width: 100%; height: auto; }
.tpt-hero__badge { position: absolute; bottom: -20px; right: -20px; width: 140px; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-xl); animation: float 3s ease-in-out infinite; }
.tpt-hero__badge img { width: 100%; }

/* Phase cards */
.tpt-phase { text-align: center; padding: 32px 20px; border-radius: var(--radius-xl); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.tpt-phase__number { font-family: var(--font-display); font-size: 2.5rem; color: var(--tpt-orange); margin-bottom: 12px; }
.tpt-phase h3 { color: var(--tpt-white); font-size: 1.2rem; margin-bottom: 8px; }
.tpt-phase p { font-size: 14px; color: rgba(255,255,255,0.6); }

/* Conditions grid */
.tpt-conditions-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tpt-condition-tag { padding: 10px 20px; background: var(--tpt-white); border: 1px solid var(--tpt-gray-200); border-radius: var(--radius-full); font-size: 14px; font-weight: 500; color: var(--tpt-charcoal); transition: all 0.2s; }
.tpt-condition-tag:hover { background: var(--tpt-orange); color: var(--tpt-white); border-color: var(--tpt-orange); box-shadow: 0 4px 12px rgba(255,130,0,0.25); }
.tpt-condition-tag--more { background: var(--tpt-orange-10); color: var(--tpt-orange); border-color: var(--tpt-orange-20); font-weight: 600; }

/* Location card phone */
.tpt-card__phone { display: block; font-size: 18px; font-weight: 700; color: var(--tpt-orange); margin-top: 12px; }

/* Testimonials */
.tpt-testimonial { background: var(--tpt-white); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--tpt-gray-200); }
.tpt-testimonial__stars { color: var(--tpt-orange); font-size: 18px; margin-bottom: 16px; }
.tpt-testimonial blockquote { font-size: 15px; line-height: 1.7; color: var(--tpt-charcoal); font-style: italic; margin: 0 0 20px; }
.tpt-testimonial__author { display: flex; align-items: center; gap: 12px; }
.tpt-testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--tpt-orange); color: var(--tpt-white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.tpt-testimonial__name { font-weight: 600; font-size: 14px; }
.tpt-testimonial__loc { font-size: 13px; color: var(--tpt-charcoal-light); }

@media (max-width: 1080px) {
    .tpt-hero__grid { grid-template-columns: 1fr; text-align: center; }
    .tpt-hero__actions { justify-content: center; }
    .tpt-hero__trust { justify-content: center; }
    .tpt-hero__badge { bottom: -10px; right: 10px; width: 100px; }
}
@media (max-width: 640px) {
    .tpt-hero { padding: 40px 0 60px; }
    .tpt-hero__actions { flex-direction: column; }
    .tpt-hero__badge { width: 80px; }
}
