.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(255, 130, 16, 0.42) 0%, transparent 45%),
        radial-gradient(ellipse at 88% 75%, rgba(3, 152, 158, 0.38) 0%, transparent 50%),
        radial-gradient(circle at 70% 12%, rgba(248, 62, 12, 0.22) 0%, transparent 35%),
        linear-gradient(135deg, var(--navy) 0%, #142235 100%);
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 4;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 80' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0,40 Q180,10 360,40 T720,40 T1080,40 T1440,40 L1440,80 L0,80 Z' fill='%23fff8ed'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-carousel__track {
    position: absolute;
    inset: 0;
}
.hero-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
    overflow: hidden;
}
.hero-carousel__slide--active {
    opacity: 0.65;
}
.hero-carousel__blur {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(18px);
    transform: scale(1.08);
    opacity: 0.9;
}
.hero-carousel__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.reviews-section {
    background: var(--cream);
    padding: clamp(48px, 6vw, 80px) 0;
    position: relative;
    overflow: hidden;
}
.reviews-section::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: var(--orange);
    border-radius: 50% 60% 40% 55%;
    opacity: 0.05;
    pointer-events: none;
}
.reviews-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 40px;
}
.reviews-aggregate {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.reviews-aggregate__stars {
    display: flex;
    gap: 3px;
}
.reviews-aggregate__stars svg {
    color: #F59E0B;
    flex-shrink: 0;
}
.reviews-aggregate__score {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.03em;
}
.reviews-aggregate__meta {
    font-size: 0.82rem;
    color: var(--pub-text-muted);
    font-weight: 500;
}
.reviews-aggregate__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast);
}
.reviews-aggregate__link:hover {
    border-color: var(--teal);
}
.reviews-aggregate__link svg {
    flex-shrink: 0;
}
.reviews-carousel-wrap {
    position: relative;
}
.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    background: #ffffff;
    border: 2px solid rgba(27, 41, 60, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    cursor: default;
}
.review-card:hover {
    border-color: var(--teal);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--teal);
}
.review-card__stars {
    display: flex;
    gap: 3px;
}
.review-card__stars svg {
    color: #F59E0B;
}
.review-card__text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--pub-text-secondary);
    flex: 1;
    font-style: italic;
}
.review-card__text::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange);
    line-height: 0;
    vertical-align: -0.5rem;
    margin-right: 2px;
}
.review-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(27, 41, 60, 0.08);
}
.review-card__author {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
}
.review-card__source {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--pub-text-muted);
    font-weight: 500;
}
.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.reviews-nav__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    background: #ffffff;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
    flex-shrink: 0;
}
.reviews-nav__btn:hover {
    background: var(--navy);
    color: #ffffff;
    transform: scale(1.08);
}
.reviews-nav__btn:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}
.reviews-nav__dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.reviews-nav__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(27, 41, 60, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}
.reviews-nav__dot--active {
    background: var(--navy);
    transform: scale(1.3);
}
@media (max-width: 860px) {
    .reviews-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .reviews-carousel {
        grid-template-columns: 1fr;
    }
    .review-card {
        padding: 22px 18px;
    }
}

@media (max-width: 699px) {
    .hero-carousel__img {
        object-fit: contain;
        object-position: center 200px;
    }
    .hero-carousel__slide--portrait .hero-carousel__img {
        object-position: center 200px;
    }
}
@media (min-width: 700px) {
    .hero-carousel__slide--portrait .hero-carousel__img {
        object-fit: contain;
        object-position: right center;
        mask-image: linear-gradient(
            to right,
            transparent 0%,
            black 30%,
            black 100%
        );
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0%,
            black 30%,
            black 100%
        );
    }
}
.hero-carousel__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(27, 41, 60, 0.42) 0%, rgba(27, 41, 60, 0.08) 60%, rgba(27, 41, 60, 0.18) 100%);
}
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}
.hero .wrapper {
    position: relative;
    z-index: 3;
}
.hero-content {
    display: flex;
    flex-direction: column;
    max-width: 720px;
    padding-block: 100px 80px;
    position: relative;
}
.hero-content::before {
    content: '';
    position: absolute;
    top: 70px;
    left: -50px;
    width: 72px;
    height: 72px;
    background: var(--teal);
    border-radius: 50% 50% 50% 0;
    opacity: 0.85;
    z-index: 1;
    animation: blobFloat 5s ease-in-out infinite;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 24px;
    padding: 8px 18px;
    background: var(--orange);
    border: 2px solid var(--navy);
    border-radius: var(--radius-pill);
    align-self: flex-start;
    box-shadow: 4px 4px 0 var(--red-orange);
    opacity: 0;
    position: relative;
    z-index: 2;
    animation: heroPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
}
.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--navy);
    flex-shrink: 0;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.02;
    letter-spacing: -0.025em;
    opacity: 0;
    animation: heroPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
    text-shadow: 2px 2px 0 var(--red-orange);
}
.hero-headline em {
    color: var(--orange);
    font-style: italic;
    font-weight: 900;
    display: inline-block;
    position: relative;
    text-shadow: 2px 2px 0 var(--teal);
}
.hero-headline em::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--red-orange);
    z-index: -1;
    transform: skewX(-12deg);
    border-radius: var(--radius-pill);
}
.hero-text {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.6;
    color: #ffffff;
    max-width: 580px;
    margin-top: 32px;
    margin-bottom: 0;
    font-weight: 500;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55), 0 2px 24px rgba(0, 0, 0, 0.35);
    opacity: 0;
    animation: heroPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}
.hero-text strong {
    color: #ffffff;
    font-weight: 700;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    opacity: 0;
    animation: heroPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.65s forwards;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 36px);
    padding: 24px 28px;
    background: rgba(10, 18, 30, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    opacity: 0;
    animation: heroPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-trust-value {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}
.hero-trust-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}
.hero-trust-sep {
    width: 2px;
    height: 38px;
    background: var(--teal);
    flex-shrink: 0;
    border-radius: var(--radius-pill);
}
.hero-carousel__dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2px;
    z-index: 5;
}
.hero-carousel__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
}
.hero-carousel__dot::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid #ffffff;
    transition: background var(--transition-fast), transform var(--transition-fast);
}
.hero-carousel__dot--active::after {
    background: var(--orange);
    transform: scale(1.3);
}
.hero-tamsart-logo {
    display: block;
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-top: 28px;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: brightness(0) invert(1);
}
.hero-tamsart-logo.tamsart-logo--loaded {
    opacity: 1;
}
.hero .btn-ghost-light {
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}
.hero .btn-ghost-light:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--red-orange);
}

@keyframes heroPop {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes blobFloat {
    0%, 100% {
        transform: rotate(-15deg) translateY(0);
    }
    50% {
        transform: rotate(-15deg) translateY(-12px);
    }
}

.section-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--navy);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: #FFD9B8;
    border: 2px solid var(--navy);
    border-radius: var(--radius-pill);
    box-shadow: 3px 3px 0 var(--red-orange);
}
.section-label--light {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.2);
}
.section {
    padding: clamp(48px, 6vw, 80px) 0;
}
.section--white {
    background: var(--paper);
}
.section--ink {
    background: var(--navy);
}

.experience-section {
    background: var(--paper);
    position: relative;
    overflow: hidden;
}
.experience-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: var(--teal);
    border-radius: 50% 60% 40% 50%;
    opacity: 0.12;
    z-index: 0;
}
.experience-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -80px;
    width: 240px;
    height: 240px;
    background: var(--orange);
    border-radius: 60% 40% 60% 50%;
    opacity: 0.1;
    z-index: 0;
}
.experience-section .wrapper {
    position: relative;
    z-index: 1;
}
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.experience-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.experience-text h2 {
    font-size: clamp(1.85rem, 3.6vw, 2.9rem);
    color: var(--navy);
    line-height: 1.1;
}
.experience-text p {
    color: var(--pub-text-secondary);
    line-height: 1.85;
    font-size: 1.08rem;
}
.experience-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 8px;
}
.experience-text .btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.experience-text .btn-outline:hover {
    background: var(--navy);
    color: #ffffff;
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--teal);
}
.experience-quote-block {
    background: var(--navy);
    border: 3px solid var(--navy);
    border-radius: var(--radius-xl);
    padding: clamp(32px, 5vw, 56px);
    position: relative;
    overflow: hidden;
    box-shadow: 8px 8px 0 var(--orange);
    transform: rotate(0.5deg);
}
.experience-quote-block::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: var(--gradient-warm);
    border-radius: 50% 60% 40% 50%;
    opacity: 0.45;
    z-index: 0;
}
.experience-quote-block::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 140px;
    height: 140px;
    background: var(--teal);
    border-radius: 60% 40% 60% 50%;
    opacity: 0.35;
    z-index: 0;
}
.experience-quote {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 4px solid var(--orange);
    font-style: italic;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.experience-attribution {
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 28px;
    padding-left: 20px;
    position: relative;
    z-index: 1;
}
.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    position: relative;
    z-index: 1;
    padding-left: 20px;
}
.experience-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--orange);
    border-radius: var(--radius-pill);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all var(--transition-fast);
}
.experience-tag:hover {
    background: var(--red-orange);
    border-color: var(--red-orange);
    color: #ffffff;
    transform: translateY(-3px) rotate(-2deg);
    box-shadow: 3px 3px 0 var(--teal);
}
.experience-tag:nth-child(2n):hover {
    border-color: var(--teal);
    background: var(--teal);
    transform: translateY(-3px) rotate(2deg);
    box-shadow: 3px 3px 0 var(--orange);
}

.gallery-preview-section {
    background: var(--cream);
}
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 44px;
}
.gallery-thumb {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--pub-border-light);
    position: relative;
    cursor: pointer;
    border: 2px solid var(--navy);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.gallery-thumb:hover {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0 var(--teal);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}
.gallery-thumb:hover img {
    transform: scale(1.05);
}
.gallery-thumb--large {
    grid-row: span 2;
    aspect-ratio: unset;
}
.gallery-empty-state {
    grid-column: 1 / -1;
    padding: 48px 24px;
    text-align: center;
    background: var(--paper);
    border-radius: var(--radius-md);
    border: 2px dashed var(--pub-border-light);
}
.gallery-empty-state p {
    font-size: 0.9rem;
    color: var(--pub-text-muted);
}
.gallery-thumb-skeleton {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    background: linear-gradient(90deg, rgba(27, 41, 60, 0.06) 25%, rgba(27, 41, 60, 0.12) 50%, rgba(27, 41, 60, 0.06) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s ease infinite;
}
.gallery-thumb-skeleton--large {
    grid-row: span 2;
    aspect-ratio: unset;
}
.gallery-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 2px solid var(--pub-border-light);
}
.gallery-cta-note {
    font-size: 0.88rem;
    color: var(--pub-text-secondary);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.credibility-strip {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    padding: clamp(48px, 6vw, 80px) 0;
    border-top: 1px solid var(--teal);
}
.credibility-strip::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 130, 16, 0.08) 0%, transparent 68%);
    pointer-events: none;
}
.credibility-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.credibility-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
.credibility-text h2 {
    color: #ffffff;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.2;
    margin: 0;
}
.credibility-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 580px;
    margin: 0;
}
.credibility-founders {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 10px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
}
.credibility-founder {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    padding-left: 14px;
}
.credibility-founder::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--teal);
}
.credibility-founder:nth-child(2)::before {
    background: var(--orange);
}
.credibility-founder__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.01em;
}
.credibility-founder__role {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
}
.credibility-strip .btn-ghost-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}
.credibility-strip .btn-ghost-light:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--red-orange);
}
.credibility-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    flex-shrink: 0;
    width: 100%;
}
.credibility-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.credibility-stat:hover {
    border-color: var(--teal);
    transform: translate(-2px, -2px);
}
.credibility-stat__num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    letter-spacing: -0.04em;
}
.credibility-stat:last-child .credibility-stat__num {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.credibility-stat__label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.35;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.faq-section {
    background: var(--paper);
    padding: clamp(48px, 6vw, 80px) 0;
    position: relative;
    overflow: hidden;
}
.faq-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -120px;
    width: 360px;
    height: 360px;
    background: var(--teal);
    border-radius: 50% 60% 40% 55%;
    opacity: 0.05;
    pointer-events: none;
}
.faq-header {
    max-width: 600px;
    margin-bottom: 48px;
}
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
    border: 2px solid var(--navy);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 6px 6px 0 var(--teal);
}
.faq-questions {
    list-style: none;
    padding: 0;
    margin: 0;
    border-right: 2px solid var(--navy);
    background: rgba(27, 41, 60, 0.03);
}
.faq-q-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
    cursor: pointer;
    border-bottom: 1px solid rgba(27, 41, 60, 0.1);
    transition: background var(--transition-fast), border-left-color var(--transition-fast);
    border-left: 4px solid transparent;
}
.faq-q-item:last-child {
    border-bottom: none;
}
.faq-q-item:nth-child(3n+1) {
    --stroke-color: var(--teal);
}
.faq-q-item:nth-child(3n+2) {
    --stroke-color: var(--orange);
}
.faq-q-item:nth-child(3n+3) {
    --stroke-color: var(--red-orange);
}
.faq-q-stroke {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--stroke-color);
    opacity: 0.5;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.faq-q-item:hover .faq-q-stroke {
    opacity: 1;
    transform: rotate(-6deg) scale(1.15);
}
.faq-q-item--active .faq-q-stroke {
    opacity: 1;
    transform: rotate(-6deg) scale(1.15);
}
.faq-q-item:hover {
    background: rgba(3, 152, 158, 0.05);
    border-left-color: var(--stroke-color);
}
.faq-q-item--active {
    background: rgba(255, 130, 16, 0.06);
    border-left-color: var(--stroke-color);
}
.faq-q-item--active:hover {
    background: rgba(255, 130, 16, 0.08);
}
.faq-q-text {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.45;
}
.faq-q-item--active .faq-q-text {
    font-weight: 700;
}
.faq-panel {
    background: var(--cream);
    min-height: 340px;
    position: sticky;
    top: 80px;
}
.faq-panel__inner {
    padding: 36px 32px;
    animation: faqFade 0.3s ease;
}
.faq-panel__q {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(27, 41, 60, 0.08);
}
.faq-panel__a {
    font-size: 0.97rem;
    color: var(--pub-text-secondary);
    line-height: 1.75;
    margin: 16px 0 28px;
    font-weight: 400;
}
.faq-panel__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 22px;
    background: var(--gradient-warm);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    text-decoration: none;
    border: 2px solid var(--navy);
    box-shadow: 3px 3px 0 var(--navy);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    letter-spacing: 0.01em;
}
.faq-panel__cta:hover {
    background: var(--gradient-cool);
    border-color: var(--teal-deep);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--navy);
}

@keyframes faqFade {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-band {
    background: var(--cream);
    padding: clamp(32px, 4vw, 56px) 0;
    position: relative;
    width: 100%;
}
.cta-band__inner {
    background: var(--gradient-pop);
    border: 4px solid var(--navy);
    border-radius: var(--radius-xl);
    padding: clamp(36px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: 10px 10px 0 var(--red-orange);
    position: relative;
    overflow: hidden;
}
.cta-band__inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: var(--red-orange);
    border-radius: 50% 60% 40% 55%;
    opacity: 0.4;
    pointer-events: none;
}
.cta-band__inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 60% 40% 50% 60%;
    pointer-events: none;
}
.cta-band__content {
    flex: 1;
    z-index: 1;
    position: relative;
}
.cta-band__content h2 {
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 3rem);
    margin: 0 0 14px 0;
    line-height: 1.05;
    text-shadow: 4px 4px 0 var(--navy);
    font-weight: 900;
}
.cta-sub {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
    font-weight: 500;
}
.cta-coverage {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 500;
    display: block;
}
.cta-band__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
}
.cta-phone-line {
    width: 100%;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin: 0;
}
.cta-phone-line__link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-underline-offset: 3px;
    white-space: nowrap;
}
.cta-phone-line__link:hover {
    text-decoration-color: #ffffff;
}
.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 36px;
}
.hero-caption {
    flex-shrink: 0;
    align-self: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(10, 18, 30, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-pill);
    padding: 7px 18px;
    opacity: 0;
    transition: opacity 0.6s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
    margin: 0;
}
.hero-caption--visible {
    opacity: 1;
}


@media (min-width: 800px) {
    .cta-band__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
@media (min-width: 992px) {
    .credibility-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }
    .credibility-stats {
        width: 440px;
    }
}
@media (min-width: 480px) {
    .cta-band__actions {
        flex-direction: row;
    }
}
@media (max-width: 760px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    .hero-content {
        padding-block: 110px 120px;
    }
    .hero-content::before {
        top: 140px;
        left: -18px;
    }
    .hero-eyebrow {
        margin-top: 32px;
    }
    .hero-carousel__dots {
        bottom: 104px;
    }
    .hero-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 36px;
    }
    .hero-caption {
        align-self: flex-start;
        max-width: calc(100vw - 48px);
        font-size: 0.7rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }
    .hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
        width: 100%;
        margin-bottom: 52px;
        background: rgba(255, 255, 255, 0.08);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-lg);
        overflow: hidden;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .hero-trust-item {
        padding: 16px 14px;
        gap: 5px;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    .hero-trust-item:nth-child(2) {
        border-right: none;
    }
    .hero-trust-item:last-child {
        grid-column: 1 / -1;
        border-bottom: none;
        border-right: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
    }
    .hero-trust-item:last-child .hero-trust-value {
        font-size: 2rem;
        line-height: 1;
    }
    .hero-trust-value {
        font-size: 1.6rem;
    }
    .hero-trust-sep {
        display: none;
    }
    .faq-q-item {
        padding: 14px 16px;
    }
    .faq-q-text {
        font-size: 0.84rem;
    }
    .faq-panel__inner {
        padding: 24px 18px;
    }
    .faq-panel__q {
        font-size: 1rem;
    }
    .faq-panel__a {
        font-size: 0.88rem;
        line-height: 1.65;
        margin: 12px 0 20px;
    }
    .faq-panel__cta {
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery-thumb--large,
    .gallery-thumb-skeleton--large {
        grid-row: span 1;
        aspect-ratio: 1;
    }
    .cta-band__inner {
        padding: 28px 20px;
    }
    .cta-band__actions {
        width: 100%;
    }
    .btn {
        width: 100%;
    }
    .credibility-founders {
        gap: 24px;
    }
    .hero-headline {
        font-size: clamp(2.4rem, 11vw, 3.6rem);
        text-shadow: 1.5px 1.5px 0 var(--red-orange);
    }
    .hero-headline em {
        text-shadow: 1.5px 1.5px 0 var(--teal);
    }
}
@media (max-width: 480px) {
    .credibility-stats {
        grid-template-columns: 1fr;
    }
}
