* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --calendly-blue: #006BFF;
    --calendly-turquoise: #0AE8F0;
    --calendly-dark-blue: #004796;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #6B7280;
    --bg-light: #F9FAFB;
    --border-light: #E5E7EB;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: #F8F9FB;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Глобальный анимированный фон */
body::before {
    content: '';
    position: fixed;
    width: 700px;
    height: 700px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 107, 255, 0.2) 0%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(15px);
    animation: morph 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(10, 232, 240, 0.18) 0%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(15px);
    animation: morph 15s ease-in-out infinite reverse;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.abstract-shape {
    position: fixed;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(10px);
    opacity: 0.7;
    animation: float 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.shape-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.12) 0%, transparent 70%);
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 230, 207, 0.12) 0%, transparent 70%);
    bottom: 25%;
    left: 10%;
    animation-delay: 10s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.1) 0%, transparent 70%);
    top: 50%;
    right: 5%;
    animation-delay: 20s;
}

/* Навигация */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--calendly-blue);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--calendly-blue);
}

.nav-auth {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-auth a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-auth a:hover {
    color: var(--calendly-blue);
}

.nav-cta {
    padding: 0.75rem 1.75rem;
    background: var(--calendly-blue);
    color: white !important;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 107, 255, 0.25);
}

.nav-cta:hover {
    background: var(--calendly-dark-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 107, 255, 0.35);
}

/* Hero секция */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background: transparent;
    z-index: 1;
}

@keyframes morph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
        transform: rotate(180deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(180deg);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    /* Removed animation for performance */
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -2px;
}

/* Animated rotating word - FIXED LAYOUT */
.rotating-word {
    font-family: 'Marck Script', cursive;
    color: var(--calendly-blue);
    font-weight: 400;
    font-size: 4rem;
    display: inline-block;
    position: relative;
    min-width: 360px;
    height: 4.5rem;
    vertical-align: middle;
}

.rotating-word span {
    position: absolute;
    opacity: 0;
    animation: rotateWord 12s infinite;
    left: 0;
    top: 0;
    white-space: nowrap;
}

.rotating-word span:nth-child(1) {
    animation-delay: 0s;
}

.rotating-word span:nth-child(2) {
    animation-delay: 4s;
}

.rotating-word span:nth-child(3) {
    animation-delay: 8s;
}

@keyframes rotateWord {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    2% {
        opacity: 1;
        transform: translateY(0);
    }
    31% {
        opacity: 1;
        transform: translateY(0);
    }
    33% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--calendly-blue);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 107, 255, 0.25);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 107, 255, 0.35);
    background: var(--calendly-dark-blue);
}

.hero-stats {
    margin-top: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Слайдер */
.product-slider-container {
    position: relative;
    animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-slider {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    cursor: pointer;
    z-index: 1;
}

.product-slide.active {
    opacity: 1;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.product-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: white;
}

.product-slide-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-slide-title {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.product-slide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.product-slide-tag {
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-slide-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--calendly-turquoise);
}

.product-thumbnails {
    position: relative;
    max-width: 900px;
    margin: 1.5rem auto 0;
    overflow: hidden;
}

.product-thumb-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
    padding: 0 1rem;
}

.product-thumb {
    flex-shrink: 0;
    width: 240px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid transparent;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem;
}

.product-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-thumb.active {
    border-color: var(--calendly-blue);
    box-shadow: 0 8px 24px rgba(0, 107, 255, 0.35);
    background: white;
}

.product-thumb img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.product-thumb-info {
    flex: 1;
    min-width: 0;
}

.product-thumb-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-thumb-desc {
    font-size: 0.75rem;
    color: var(--text-gray);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.thumb-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.thumb-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-light);
    color: var(--text-dark);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-nav-btn:hover {
    background: var(--calendly-blue);
    color: white;
    border-color: var(--calendly-blue);
}

/* Секция менторов */
.products-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    letter-spacing: -1.5px;
}

.search-container {
    max-width: 650px;
    margin: 0 auto 2.5rem;
    position: relative;
}

.search-box {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 100px;
    background: white;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.search-box:focus {
    outline: none;
    border-color: var(--calendly-blue);
    box-shadow: 0 4px 16px rgba(0, 107, 255, 0.12);
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 1.1rem;
}

.hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hashtag {
    padding: 0.6rem 1.5rem;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 100px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.hashtag:hover {
    background: var(--calendly-blue);
    color: white;
    border-color: var(--calendly-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 107, 255, 0.25);
}

/* 3 карточки в ряд */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--calendly-turquoise);
}

.product-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-photo {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    letter-spacing: -0.5px;
}

.product-title {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: auto;
    padding-bottom: 1rem;
}

.product-tag {
    padding: 0.25rem 0.65rem;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--text-gray);
    font-weight: 500;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--calendly-blue);
    margin: 0.5rem 0 0.75rem;
}

.product-button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    background: var(--calendly-blue);
    color: white;
    border: none;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.product-button:hover {
    background: var(--calendly-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 107, 255, 0.25);
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

.view-all-link {
    display: inline-block;
    padding: 0.85rem 2rem;
    color: var(--calendly-blue);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--calendly-blue);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background: var(--calendly-blue);
    color: white;
    transform: translateY(-2px);
}

/* Секция преимуществ */
.benefits-section {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    border-radius: 32px;
    margin: 3rem auto;
    max-width: 1160px;
}

.benefits-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit-card {
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--calendly-blue) 0%, var(--calendly-turquoise) 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.05) rotate(-5deg);
}

.benefit-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Секция отзывов - НОВЫЙ СЛАЙДЕР */
.testimonials-section {
    max-width: 100%;
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    border-radius: 32px;
    margin: 3rem auto;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider-wrapper {
    overflow: hidden;
    border-radius: 24px;
}

.testimonials-slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 3rem;
    background: white;
    box-sizing: border-box;
}

.testimonial-text {
    font-size: 1.35rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.author-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-light);
    color: var(--text-dark);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-nav-btn:hover {
    background: var(--calendly-blue);
    color: white;
    border-color: var(--calendly-blue);
    transform: scale(1.08);
}

.testimonial-indicators {
    display: flex;
    gap: 0.6rem;
}

.testimonial-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicator.active {
    background: var(--calendly-blue);
    width: 28px;
    border-radius: 5px;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 2.5rem;
    text-align: center;
}

.footer-cta h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--calendly-blue);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-button:hover {
    background: var(--calendly-turquoise);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 232, 240, 0.3);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--calendly-turquoise);
}

.footer-copyright {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .rotating-word {
        font-size: 3rem;
        min-width: 280px;
    }

    .product-slider {
        height: 420px;
    }

    .product-thumb {
        width: 200px;
    }

    .product-thumb img {
        width: 60px;
        height: 60px;
    }

    .products-section,
    .benefits-section,
    .testimonials-section {
        margin: 2rem 1rem;
        padding: 4rem 1.5rem;
        border-radius: 24px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-auth {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-light);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.15rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .nav-auth {
        gap: 1rem;
    }

    .nav-auth a {
        font-size: 0.85rem;
    }

    .nav-cta {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .rotating-word {
        font-size: 2.25rem;
        min-width: 220px;
        height: 3.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
    }

    .product-slider {
        height: 380px;
        border-radius: 20px;
    }

    .product-slide-name {
        font-size: 1.35rem;
    }

    .product-slide-title {
        font-size: 0.85rem;
    }

    .product-thumbnails {
        max-width: 100%;
        margin-top: 1rem;
    }

    .product-thumb {
        width: 180px;
        padding: 0.65rem;
    }

    .product-thumb img {
        width: 55px;
        height: 55px;
    }

    .product-thumb-name {
        font-size: 0.85rem;
    }

    .product-thumb-desc {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-slide {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1.15rem;
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .rotating-word {
        font-size: 2rem;
        min-width: 200px;
        height: 3rem;
    }

    .product-slider {
        height: 400px;
        border-radius: 16px;
    }

    .search-box {
        padding: 0.85rem 0.85rem 0.85rem 2.75rem;
        font-size: 0.95rem;
    }

    .hashtag {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }

    .testimonial-text {
        font-size: 1.05rem;
    }

    .testimonials-controls {
        gap: 1rem;
    }
}
