.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(194, 161, 104, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgb(179 137 65 / 15%) 0%, transparent 40%),
                linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgb(19 18 18 / 90%) 50%, rgb(13 13 13 / 92%) 100%),
                url(https://t3.ftcdn.net/jpg/03/45/63/88/360_F_345638885_EBRKmI2LVfJcQGWj0Mtmg9R4HQd1RODV.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-line {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.hero-line.left {
    left: 3rem;
    top: 25%;
}

.hero-line.right {
    right: 3rem;
    bottom: 25%;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero h1 .gold {
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--white-muted);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
    stroke: var(--white-faint);
}

.testimonials-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, var(--black), var(--gray-dark));
}
.tc-carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.tc-viewport {
    overflow: hidden;
    border-radius: 16px;
}

.tc-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.tc-slide {
    flex: 0 0 100%;
    min-width: 0;
    padding: 0 0.5rem;
}

.tc-card {
    position: relative;
    background: var(--gray-dark);
    border: 1px solid var(--gray-warm);
    border-radius: 16px;
    padding: 2.5rem 2rem;
}

.tc-card::before {
    content: '\201C';
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.18;
    pointer-events: none;
}

.tc-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.tc-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

.tc-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--white-soft);
    margin-bottom: 1.5rem;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.tc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
}

.tc-name {
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.tc-location {
    font-size: 0.8rem;
    color: var(--white-faint);
}

.tc-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    padding: 0;
}

.tc-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
}

.tc-btn svg {
    width: 22px;
    height: 22px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.tc-btn--prev { left: -56px; }
.tc-btn--next { right: -56px; }

.tc-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255,255,255,0.14);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tc-dot:hover {
    background: rgba(255,255,255,0.3);
}

.tc-dot.active {
    background: var(--gold);
    width: 26px;
    border-radius: 5px;
}

@media (max-width: 960px) {
    .tc-carousel {
        padding: 0 3.5rem;
    }
    .tc-btn--prev { left: 0; }
    .tc-btn--next { right: 0; }
}

@media (max-width: 600px) {
    .testimonials-section { padding: 3.5rem 0.5rem; }
    .tc-carousel { padding: 0 2.75rem; }
    .tc-card { padding: 1.75rem 1.25rem; }
    .tc-text { font-size: 1rem; }
    .tc-btn { width: 36px; height: 36px; }
    .tc-btn svg { width: 18px; height: 18px; }
    .tc-dot { width: 8px; height: 8px; }
    .tc-dot.active { width: 22px; }
}

.tc-track {
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}