/* ================= HERO DESKTOP ================= */
.hero-main {
    width: 100%;
    position: relative;
    background: url('../bg.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* overlay gelap */
.hero-overlay {
    width: 100%;
    padding: 120px 40px; /* desktop spacing */
    background: linear-gradient(
        90deg,
        rgba(11, 28, 45, 0.96) 0%,
        rgba(11, 28, 45, 0.85) 40%,
        rgba(11, 28, 45, 0.45) 65%,
        rgba(11, 28, 45, 0.15) 80%,
        rgba(11, 28, 45, 0) 100%
    );
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hero-main {
        min-height: 65vh;
        display: block;
        background-position: center 20%;
        background-size: cover;
    }

    .hero-overlay {
        padding: 50px 20px;
    }
}

/* konten */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 0 80px;
    color: #ffffff;
    margin-top: 40px;
}

/* badge kecil */
.hero-badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    background: var(--yellow);
    border-radius: 30px;
}

/* judul utama */
.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 26px;
}

.hero-content h1 span {
    color: var(--yellow);
}

/* deskripsi */
.hero-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #e5e7eb;
    margin-bottom: 40px;
}

/* tombol */
.hero-actions {
    display: flex;
    gap: 22px;
}

.btn-primary {
    padding: 16px 42px;
    background: var(--yellow);
    color: #000;
    font-weight: 800;
    border-radius: 10px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.btn-outline {
    padding: 16px 42px;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-weight: 800;
    border-radius: 10px;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: var(--yellow);
    color: #000;
    transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .hero-content {
        padding: 0 32px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================= SECTION ================= */
.section {
    padding: 110px 80px; /* tambah ruang atas agar icon tidak terpotong section */

    padding: 90px 80px;
}

.section h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 100px; /* tambah jarak agar tidak tabrakan icon */
    color: var(--dark);
}

/* ================= FEATURES ================= */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: start;
}

/* ================= TESTIMONIAL QUOTE ================= */
.testimonial-quote {
    background: linear-gradient(180deg, #0b1c2d 0%, #10263f 100%);
    color: #ffffff;
}

.testimonial-inner {
    max-width: 1000px;
    margin: 0 auto;
}
/* ================= TESTIMONIAL WOW CARD ================= */
.testimonial-card.wow {
    position: relative;
    flex: 0 0 calc(33.333% - 22px);
    padding: 56px 38px 42px;
    border-radius: 34px;

    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);

    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);

    transition: 0.45s ease;
    overflow: hidden;
}

.testimonial-card.wow::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--yellow), transparent 70%);
    opacity: 0.25;
}
.quote-mark {
    position: absolute;
    top: 24px;
    left: 28px;
    font-size: 90px;
    font-weight: 900;
    color: rgba(244, 196, 48, 0.25);
    line-height: 1;
    pointer-events: none;
}
.testimonial-card.wow p {
    font-size: 16px;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 36px;
}

.testimonial-card.wow .author {
    border-top: 1px solid rgba(11, 28, 45, 0.08);
    padding-top: 18px;
}

.testimonial-card.wow .author strong {
    display: block;
    font-size: 15px;
    font-weight: 900;
    color: var(--dark);
}

.testimonial-card.wow .author span {
    font-size: 13px;
    color: #6b7280;
}
.testimonial-card.wow:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.2);
}

/* ================= TESTIMONIAL HEADER ================= */
.testimonial-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 90px;
}

/* label unik */
.testimonial-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 16px;
}

.testimonial-label span {
    width: 26px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

/* title lebih hidup */
.testimonial-header h3 {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 16px;
}

.testimonial-header h3 span {
    color: var(--yellow);
    position: relative;
}

.testimonial-header h3 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
}

/* subtitle */
.testimonial-header p {
    font-size: 15px;
    line-height: 1.8;
    color: #475569;
}

/* Slider */
.quote-slider {
    overflow: hidden;
}

.quote-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Quote item */
.quote-item {
    min-width: 100%;
    padding: 0 80px;
    text-align: center;
    opacity: 0.6;
    transition: 0.35s ease;
}

.quote-item p {
    font-size: 22px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 28px;
}

.quote-item strong {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--yellow);
}

/* Hover highlight */
.quote-item:hover {
    opacity: 1;
    transform: scale(1.02);
}

/* Nav */
.quote-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.quote-nav button {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.quote-nav button:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

/* Responsive */
@media (max-width: 700px) {
    .quote-item {
        padding: 0 20px;
    }

    .quote-item p {
        font-size: 18px;
    }
}

/* ================= PRODUCT ================= */
.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product h4 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.product p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product ul {
    margin-bottom: 30px;
}

.product ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.product a {
    padding: 14px 34px;
    background: var(--dark);
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

/* ================= CTA ================= */
.cta {
    background: var(--yellow);
    padding: 80px 20px;
    text-align: center;
}

.cta h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.cta p {
    margin-bottom: 35px;
    font-size: 15px;
}

.cta a {
    padding: 16px 46px;
    background: var(--dark);
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

/* ================= ABOUT FINAL ================= */

.about-creative {
    position: relative;
    padding: 120px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
    overflow: hidden;
}

.about-bg-shape {
    position: absolute;
    top: -140px;
    right: -140px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--yellow), transparent 70%);
    opacity: 0.3;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 90px;
    position: relative;
    z-index: 2;
}

/* ================= LEFT ================= */

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 26px;
    border-radius: 40px;
    background: linear-gradient(135deg, #0b1c2d, #10263f);
    margin-bottom: 26px;
}

.badge-muted {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.badge-brand {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--yellow);
}

.about-actions {
    margin-top: 40px;
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--yellow), #f59e0b);
    color: #000;
    font-weight: 800;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(245, 158, 11, 0.35);
    transition: 0.35s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(245, 158, 11, 0.45);
}

/* ================= RIGHT ================= */

.about-right {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.about-feature {
    position: relative;
    display: flex;
    gap: 26px;
    padding: 32px 34px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-feature:hover {
    transform: translateY(-8px);
}

/* ICON */
.feature-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

/* CONTENT */
.feature-body h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-body p {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}

/* VARIANTS */
.feature-dark .feature-icon {
    background: linear-gradient(135deg, #0b1c2d, #10263f);
    color: #ffffff;
}

.feature-accent .feature-icon {
    background: linear-gradient(135deg, var(--yellow), #f59e0b);
    color: #000;
}

.feature-neutral .feature-icon {
    background: linear-gradient(135deg, #1f2933, #374151);
    color: #ffffff;
}

/* ACCENT LINE */
.about-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 26px;
    bottom: 26px;
    width: 4px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.08);
}

.feature-accent::before {
    background: rgba(244, 196, 48, 0.9);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 70px;
    }
}

/* ================= TEXT STYLING EYECATCH ================= */
.about-title {
    text-align: left;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 26px;
}

.title-dark {
    color: var(--dark);
}

.title-accent {
    color: var(--yellow);
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
}

.title-gradient {
    background: linear-gradient(90deg, var(--yellow), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-lead {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.text-highlight {
    background: var(--yellow);
    color: #000;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 800;
}

.text-dark {
    color: var(--dark);
    font-weight: 700;
}

.text-accent {
    color: #ca8a04;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(90deg, #0b1c2d, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 600px) {
    .about-title {
        font-size: 30px;
    }
}
.about-badge.fancy-2 {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-badge.fancy-2 .text-dark {
    color: var(--dark);
}

.about-badge.fancy-2 .text-accent {
    color: var(--yellow);
    position: relative;
}

.about-badge.fancy-2 .text-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}
/* ================= SERVICES SCREEN – CLEAN & RAPAT ================= */

.services-screen {
    position: relative;
    min-height: 199%;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #0f172a, #0b1c2d);
    overflow: hidden;
}

/* ===== CONTAINER ===== */

.services-wrap {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;

    /* ⬅️ INI KUNCI: TIPIS */
    padding: 56px 24px;
}

/* ================= HEADER ================= */

.services-head {
    text-align: center;

    /* ⬅️ DIPERKECIL */
    margin-bottom: 36px;
}

.services-title {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    color: #ffffff;
}

.services-title span {
    color: var(--yellow);
}

.services-divider {
    width: 72px;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), #f59e0b);

    /* ⬅️ TIPIS */
    margin: 12px auto 14px;
    border-radius: 4px;
}

/* COPY MAHAL */
.services-copy {
    font-size: 15px;
    line-height: 1.75;
    color: #e5e7eb;
    max-width: 720px;

    /* ⬅️ JARAK AMAN, TIDAK MELEBAR */
    margin: 0 auto 6px;
}

.services-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 520px;
    margin: 0 auto;
}

/* ================= GRID ================= */

.services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* ================= CARD ================= */

.service-card {
    background: #ffffff;
    padding: 34px 28px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.7) inset;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
/* ================= ICON HOVER (FIXED) ================= */

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--yellow), #f59e0b);
    color: #000;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 72px rgba(0, 0, 0, 0.45);
}

/* ================= ICON ================= */

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #f3f4f6;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;

    /* ⬅️ SEDIKIT DIPERKECIL */
    margin-bottom: 18px;
}

.service-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #4b5563;
}

/* ================= ACTION ================= */

.services-action {
    text-align: center;

    /* ⬅️ INI YANG SERING TERLALU JAUH */
    margin-top: 32px;
}

.btn-services {
    display: inline-block;
    padding: 14px 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--yellow), #f59e0b);
    color: #000;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(245, 158, 11, 0.45);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
    .services-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .services-wrap {
        padding: 48px 20px;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }

    .services-title {
        font-size: 36px;
    }
}

/* ================= WHY US ================= */

.why-us {
    background: #f8fafc;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ================= HEADER ================= */

.why-header {
    max-width: 650px;
    margin: 0 auto 80px;
    text-align: center;
}

.why-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 14px;
}

.why-header h3 {
    font-size: 34px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 18px;
}

.why-header p {
    font-size: 15px;
    line-height: 1.8;
    color: #6b7280;
}

/* ================= GRID ================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

/* ================= CARD BASE ================= */

.why-card {
    position: relative;
    background: #ffffff;
    padding: 56px 38px 42px;
    border-radius: 32px;
    overflow: hidden;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

/* strip kiri */
.why-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    width: 5px;
    height: 40px;
    background: var(--yellow);
    border-radius: 3px;
    opacity: 0.9;
}

/* hover card */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.16),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

/* ================= TEXT ================= */

.why-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.why-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
}

/* ================= VARIASI WARNA SELANG-SELING ================= */

/* card ORANGE (selang-seling) */
.why-card:nth-child(even) {
    background: var(--yellow);
}

/* strip kiri di card orange */
.why-card:nth-child(even)::before {
    background: #000;
}

/* teks di card orange */
.why-card:nth-child(even) h4 {
    color: #000;
}

.why-card:nth-child(even) p {
    color: #1f2937;
}

/* ================= ICON ================= */

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    color: var(--yellow);
    margin-bottom: 18px;

    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}

/* icon default di card orange */
.why-card:nth-child(even) .why-icon {
    color: #000;
}

/* hover icon (mahal, halus) */
.why-card:hover .why-icon {
    background: #000;
    color: var(--yellow);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= CTA FINAL ================= */
.cta-final {
    position: relative;
    background: linear-gradient(
        135deg,
        #1f2937,
        #111827
    ); /* beda tone dengan footer */
    color: #ffffff;
    text-align: center;
    padding: 100px 40px;
    overflow: hidden;
}

/* subtle divider sebelum footer */
.cta-final::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(
        to bottom,
        rgba(17, 24, 39, 0),
        rgba(2, 6, 23, 0.9)
    );
}

.cta-container {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-final h3 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 18px;
    color: var(--yellow);
    letter-spacing: -0.5px;
}

/* highlight dihapus → tidak tabrakan */
.cta-final h3::after {
    display: none;
}

.cta-final p {
    font-size: 16px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 44px;
}

/* Actions */
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.cta-primary {
    padding: 16px 52px;
    background: linear-gradient(135deg, var(--yellow), #ffd95a);
    color: #000;
    font-weight: 800;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(244, 196, 48, 0.25);
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(244, 196, 48, 0.35);
}

.cta-info {
    font-size: 14px;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 600px) {
    .cta-final {
        padding: 80px 24px;
    }

    .cta-final h3 {
        font-size: 30px;
    }
}

/* ================= TESTIMONIAL LUXURY – DENSE ================= */

.testimonial-luxury {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 100px 24px;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== HEADER ===== */

.testimonial-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.testimonial-title {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.4px;
    color: var(--dark);
    margin-bottom: 12px;
}

.testimonial-title span {
    color: var(--yellow);
}

.testimonial-subtitle {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

/* ===== GRID ===== */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* ===== CARD ===== */

.testimonial-card {
    position: relative;
    background: #ffffff;
    padding: 30px 32px 28px;
    border-radius: 26px;

    border: 1px solid rgba(11, 28, 45, 0.08);

    box-shadow:
        0 14px 38px rgba(0, 0, 0, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.6) inset;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16);
}

/* ===== QUOTE ===== */

.quote-deco {
    position: absolute;
    top: 14px;
    right: 24px;
    font-size: 78px;
    font-weight: 900;
    line-height: 1;
    color: rgba(244, 196, 48, 0.14);
    pointer-events: none;
}

/* ===== STARS ===== */

.testimonial-stars {
    font-size: 13px;
    letter-spacing: 2px;
    color: #f59e0b;
    margin-bottom: 8px;
}

/* ===== TEXT ===== */

.testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: #1f2933;
    margin-bottom: 14px;
}

.testimonial-text::after {
    content: '';
    display: block;
    width: 42px;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), transparent);
    margin-top: 12px;
    border-radius: 2px;
}

/* ===== PHOTO ===== */

.testimonial-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 12px 0 10px;
    border: 2px solid #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* ===== AUTHOR ===== */

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author strong {
    font-size: 14.5px;
    font-weight: 900;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 13px;
    color: #64748b;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-title {
        font-size: 34px;
    }
}
