/* ═══════════════════════════════════════════════
   PV DETAILING — style.css
   ═══════════════════════════════════════════════ */

:root {
    --blue: #2468cc;
    --blue2: #1a52aa;
    --navy: #0d1f6b;
    --dark: #07101f;
    --dark2: #0b1830;
    --chrome: #8ba3b8;
    --white: #ffffff;
    --gray: #a0b3c6;
    --card-bg: #0e1d35;

    --font-hero: 'Ubuntu Condensed', 'Ubuntu', sans-serif;
    --font-head: 'Ubuntu', sans-serif;
    --font-body: 'Ubuntu', sans-serif;
    --font-cond: 'Ubuntu Condensed', 'Ubuntu', sans-serif;

    /* Gradient presets */
    --grad-blue: linear-gradient(135deg, #e8f4ff 0%, #7ab4ff 25%, #2468cc 55%, #8ba3b8 80%, #dce8f5 100%);
    --grad-chrome: linear-gradient(90deg, #c0d4e8 0%, #8ba3b8 40%, #5a7a95 100%);
    --grad-brand: linear-gradient(135deg, #2468cc 0%, #0d1f6b 60%, #1a52aa 100%);
    --grad-cta: linear-gradient(135deg, #2468cc 0%, #1a52aa 100%);

    --radius: 10px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.btn:hover::before {
    left: 135%;
}
.btn-lg {
    padding: 0.9rem 2rem;
}
.btn-sm {
    padding: 0.5rem 1.4rem;
    font-size: 0.82rem;
}
.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-blue {
    background: linear-gradient(135deg, #3d8ef5 0%, #2468cc 50%, #1245a8 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 22px rgba(36, 104, 204, 0.55);
}
.btn-blue:hover {
    background: linear-gradient(135deg, #5aa0ff 0%, #2f78e0 50%, #1a52aa 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 34px rgba(36, 104, 204, 0.7);
}

.btn-outline {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(139, 163, 184, 0.12) 100%);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
}
.btn-outline:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(139, 163, 184, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-2px);
}

/* ── Section shared ── */
section {
	overflow: hidden;
    padding: 5rem 0;
}
.section-dark {
    background: var(--dark2);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-eyebrow {
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: var(--grad-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.section-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.04em;
}
.section-desc {
    margin-top: 0.75rem;
    color: var(--gray);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition:
        background var(--transition),
        backdrop-filter var(--transition),
        box-shadow var(--transition);
    padding: 0.75rem 0;
}
.site-header.scrolled {
    background: rgba(7, 16, 31, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.logo-img {
    height: 82px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 1.75rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.main-nav a {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
    padding: 0.25rem 0;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 100%;
    height: 2px;
    background: var(--grad-cta);
    border-radius: 2px;
    transition: right var(--transition);
}
.main-nav a:hover {
    color: var(--white);
}
.main-nav a:hover::after {
    right: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: auto;
}
.header-phone {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: var(--chrome);
    transition: color var(--transition);
}
.header-phone:hover {
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center; /* vertical center */
    overflow: hidden;
}

/* Video — full bleed */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
}

/* Cinematic overlay: blue-tinted dark left → transparent right */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
    /* blue atmospheric glow on far left */
        radial-gradient(ellipse 55% 80% at 8% 55%, rgba(14, 40, 100, 0.65) 0%, transparent 70%),
        /* dark panel fade */ linear-gradient(to right, rgba(4, 10, 22, 0.97) 0%, rgba(4, 10, 22, 0.9) 25%, rgba(4, 10, 22, 0.55) 48%, rgba(4, 10, 22, 0.08) 66%, transparent 100%),
        /* bottom fade */ linear-gradient(to top, rgba(4, 10, 22, 0.6) 0%, transparent 22%);
    z-index: 1;
}

/* Ghost watermark */
.hero-ghost {
    position: absolute;
    bottom: 4.5rem;
    right: -1rem;
    z-index: 2;
    font-family: var(--font-hero);
    font-size: clamp(6rem, 17vw, 18rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(139, 163, 184, 0.14);
    user-select: none;
    pointer-events: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    animation: ghostPulse 6s ease-in-out infinite;
}
@keyframes ghostPulse {
    0%,
    100% {
        -webkit-text-stroke-color: rgba(139, 163, 184, 0.14);
    }
    50% {
        -webkit-text-stroke-color: rgba(36, 104, 204, 0.22);
    }
}

/* ── Hero content ── */
.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 2rem 0 6vw;
    opacity: 0;
    pointer-events: none;
}
.hero-content.visible {
    opacity: 1;
    pointer-events: auto;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.2rem;
    opacity: 0;
    transform: translateY(14px);
}
.hero-content.visible .hero-eyebrow {
    animation: fadeUp 0.5s 0.1s ease both;
}

/* H1 — clean, no padding, no ::before */
.hero-headline {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
		    text-transform: uppercase;
}
.hero-headline .line {
    display: block;
    opacity: 0;
    transform: translateX(-60px);
}
.hero-content.visible .line {
    animation: slideRight 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-content.visible .line:nth-child(1) {
    animation-delay: 0.15s;
}
.hero-content.visible .line:nth-child(2) {
    animation-delay: 0.32s;
}

.line-thin {
    font-family: var(--font-hero);
    font-size: clamp(0.9rem, 1.8vw, 1.8rem);
    letter-spacing: 0.3em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    line-height: 1.4;
    margin-bottom: 0.1rem;
}

/* Hero headline lines — sized for full sentences */
.line-word {
    font-family: var(--font-hero);
    font-size: clamp(2.6rem, 4.2vw, 4.8rem);
    letter-spacing: 0.03em;
    line-height: 1;
    white-space: normal;
}

.line-mobile {
    background: linear-gradient(100deg, #5aaeff 0%, #2d82f0 35%, #2468cc 65%, #4a96e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(36, 104, 204, 0.5));
}
.line-auto {
    background: linear-gradient(100deg, #ffffff 0%, #ddeeff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.line-care {
    background: linear-gradient(100deg, #8ba3b8 0%, #c0d4e8 40%, #8ba3b8 70%, #a8c2d5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    max-width: 400px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(16px);
}
.hero-content.visible .hero-sub {
    animation: fadeUp 0.55s 0.6s ease both;
}

.hero-ctas {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(16px);
}
.hero-content.visible .hero-ctas {
    animation: fadeUp 0.6s 0.8s ease both;
}

/* ── Stats strip ── */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    background: rgba(4, 10, 22, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139, 163, 184, 0.14);
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s 1s ease,
        transform 0.65s 1s ease;
}
.hero-stats.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat {
    padding: 1rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    flex: 1;
    min-width: 110px;
}
.stat:last-child {
    border-right: none;
}

.stat-num {
    display: block;
    font-family: var(--font-hero);
    font-size: 2rem;
    line-height: 1;
    background: linear-gradient(135deg, #7ab4ff 0%, #2468cc 50%, #8ba3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-plus {
    font-family: var(--font-hero);
    font-size: 1.6rem;
    background: linear-gradient(135deg, #7ab4ff 0%, #2468cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    display: block;
    font-family: var(--font-cond);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--chrome);
    margin-top: 0.3rem;
}

/* Mobile call button */
@keyframes call-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(36, 104, 204, 0.7);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(36, 104, 204, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(36, 104, 204, 0);
    }
}

.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 1.75rem;
    right: 1.25rem;
    z-index: 999;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(36, 104, 204, 0.55);
    animation: call-pulse 2s ease-out infinite;
}

/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
/* ── Services Swiper ── */
.services-swiper {
    padding: 0 0 3.5rem !important;
    overflow: visible;
    margin: 0 -1rem;
    padding-left: max(5vw, 1rem) !important;
    padding-right: max(5vw, 1rem) !important;
}

.service-slide {
    background: var(--card-bg);
    border: 1px solid rgba(139, 163, 184, 0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
    height: auto;
}
.service-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(36, 104, 204, 0.3);
}

.service-slide-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
}
.service-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-slide:hover .service-slide-img img {
    transform: scale(1.05);
}

.service-slide-body {
    padding: 1.4rem 1.35rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-slide h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.service-line {
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), #6ab4ff);
    border-radius: 2px;
    margin-bottom: 0.8rem;
    flex-shrink: 0;
}

.service-slide p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.55;
    margin: 0;
}

/* Swiper custom nav */
.services-prev,
.services-next {
    width: 44px !important;
    height: 44px !important;
    background: rgba(36, 104, 204, 0.2) !important;
    border: 1px solid rgba(36, 104, 204, 0.35) !important;
    border-radius: 50% !important;
    color: var(--white) !important;
    top: 35% !important;
    transition: background var(--transition) !important;
}
.services-prev:hover,
.services-next:hover {
    background: var(--blue) !important;
}
.services-prev {
    left: max(5vw, 1rem) !important;
}
.services-next {
    right: max(5vw, 1rem) !important;
}
.services-prev::after,
.services-next::after {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
}

.services-pagination {
    bottom: 0 !important;
}
.services-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
    width: 8px !important;
    height: 8px !important;
}
.services-pagination .swiper-pagination-bullet-active {
    background: var(--blue) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* ═══════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════ */
.pricing {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.pricing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80%;
    background: radial-gradient(ellipse 70% 55% at 50% 55%, rgba(36, 104, 204, 0.055) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.pricing-card {
    padding: 2.75rem 2rem 2.25rem;
    position: relative;
    background: transparent;
    border: 1px solid rgba(139, 163, 184, 0.15);
    border-radius: 14px;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}
.pricing-card:hover {
    border-color: rgba(36, 104, 204, 0.5);
    transform: translateY(-6px);
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(36, 104, 204, 0.15);
}

.pricing-card--featured {
    background: rgba(14, 29, 53, 0.55);
    border: 1px solid rgba(36, 104, 204, 0.2);
    border-top: none;
    border-radius: 14px;
    padding: 3.25rem 2rem 2.25rem;
    box-shadow:
        0 40px 90px rgba(36, 104, 204, 0.12),
        0 0 0 1px rgba(36, 104, 204, 0.12);
    backdrop-filter: blur(4px);
}
.pricing-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #2468cc 30%, #5aaeff 50%, #2468cc 70%, transparent 100%);
    border-radius: 1px;
}
.pricing-card--featured:hover {
    box-shadow:
        0 50px 100px rgba(36, 104, 204, 0.2),
        0 0 0 1px rgba(36, 104, 204, 0.3);
    border-color: rgba(36, 104, 204, 0.35);
}

.pricing-badge {
    position: absolute;
    top: 1.25rem;
    left: 2rem;
    background: rgba(36, 104, 204, 0.18);
    color: #5aaeff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.22rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(36, 104, 204, 0.35);
    white-space: nowrap;
}

.pricing-tier {
    font-family: var(--font-cond);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--chrome);
    margin-bottom: 1.25rem;
}

.pricing-price {
    line-height: 0.95;
    margin-bottom: 0;
    white-space: nowrap;
}

.price-from {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(160, 179, 198, 0.55);
    margin-bottom: 0.4rem;
}

.pricing-price strong {
    font-family: var(--font-hero);
    font-size: clamp(2.6rem, 3.4vw, 3.8rem);
    font-weight: 400;
    line-height: 0.95;
    color: var(--white);
    display: inline-block;
}
.pricing-card--featured .pricing-price strong {
    background: linear-gradient(135deg, #e8f4ff 0%, #7ab4ff 30%, #2f78e0 60%, #8ba3b8 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-range-sep {
    font-family: var(--font-hero);
    font-size: clamp(1rem, 1.6vw, 1.6rem);
    color: rgba(139, 163, 184, 0.35);
    vertical-align: middle;
    margin: 0 0.1rem;
}

.pricing-divider {
    height: 1px;
    background: rgba(139, 163, 184, 0.1);
    margin: 2rem 0;
}

.pricing-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.pricing-list li {
    font-size: 0.85rem;
    color: rgba(160, 179, 198, 0.75);
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}
.pricing-list li::before {
    content: '';
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    margin-top: 0.5em;
    background: var(--blue);
    border-radius: 50%;
}

.pricing-note {
    text-align: center;
    color: rgba(139, 163, 184, 0.4);
    font-size: 0.78rem;
    margin-top: 2.5rem;
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text p {
    color: var(--gray);
    margin-top: 1rem;
    line-height: 1.7;
}
.about-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.about-img-wrap::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    z-index: -1;
}
.about-img-wrap img {
    width: 100%;
    border-radius: 12px;
		height:fit-content;
}

/* ═══════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════ */
.why {
    background: var(--dark);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.why-item {
    background: var(--card-bg);
    border: 1px solid rgba(139, 163, 184, 0.1);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
}
.why-item:hover {
    border-color: rgba(36, 104, 204, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}
.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 1.1rem;
    border-radius: 14px;
    background: rgba(36, 104, 204, 0.12);
    border: 1px solid rgba(36, 104, 204, 0.22);
    flex-shrink: 0;
    transition:
        background var(--transition),
        border-color var(--transition);
}
.why-icon svg {
    width: 24px;
    height: 24px;
    stroke: #5aaeff;
    flex-shrink: 0;
    transition:
        stroke var(--transition),
        transform var(--transition);
}
.why-item:hover .why-icon {
    background: rgba(36, 104, 204, 0.22);
    border-color: rgba(36, 104, 204, 0.5);
}
.why-item:hover .why-icon svg {
    stroke: #7ac4ff;
    transform: rotate(8deg) scale(1.15);
}
.why-item h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}
.why-item p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   GALLERY GRID (desktop)
   ═══════════════════════════════════════════════ */
.gallery-swiper-wrap {
    display: none;
}

.gallery-grid-static {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.gallery-grid-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-grid-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(36, 104, 204, 0.35), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-grid-item:hover::after {
    opacity: 1;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-grid-item:hover img {
    transform: scale(1.06);
}

/* ═══════════════════════════════════════════════
   GALLERY SWIPER
   ═══════════════════════════════════════════════ */
.gallery-swiper {
    padding: 0 0 3.5rem !important;
    padding-left: max(5vw, 1rem) !important;
    padding-right: max(5vw, 1rem) !important;
    overflow: visible;
}

.gallery-slide {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-slide:hover img {
    transform: scale(1.04);
}

.gallery-prev,
.gallery-next {
    width: 44px !important;
    height: 44px !important;
    background: rgba(36, 104, 204, 0.2) !important;
    border: 1px solid rgba(36, 104, 204, 0.35) !important;
    border-radius: 50% !important;
    color: var(--white) !important;
    top: 40% !important;
    transition: background var(--transition) !important;
}
.gallery-prev:hover,
.gallery-next:hover {
    background: var(--blue) !important;
}
.gallery-prev {
    left: max(5vw, 1rem) !important;
}
.gallery-next {
    right: max(5vw, 1rem) !important;
}
.gallery-prev::after,
.gallery-next::after {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
}

.gallery-pagination {
    bottom: 0 !important;
}
.gallery-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
    width: 8px !important;
    height: 8px !important;
}
.gallery-pagination .swiper-pagination-bullet-active {
    background: var(--blue) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* ═══════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════ */
.reviews {
    background: var(--dark);
}
.reviews-swiper {
    overflow: visible;
    padding-bottom: 2.75rem!important;
}
.reviews-swiper .swiper-slide {
    height: auto;
}
.reviews-swiper .review-card {
    height: 100%;
}
.review-card {
    background: var(--card-bg);
    border: 1px solid rgba(139, 163, 184, 0.1);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all var(--transition);
}
.review-card:hover {
    border-color: rgba(36, 104, 204, 0.45);
    transform: translateY(-7px);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(36, 104, 204, 0.18);
}
.review-stars {
    color: #f5b800;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}
.review-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
    font-style: italic;
}
.review-author {
    margin-top: 1rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--chrome);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.reviews-pagination {
    bottom: 0 !important;
}
.reviews-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
    width: 8px !important;
    height: 8px !important;
}
.reviews-pagination .swiper-pagination-bullet-active {
    background: var(--blue) !important;
    width: 24px !important;
    border-radius: 4px !important;
}
.reviews-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.75rem;
}

/* ═══════════════════════════════════════════════
   SERVICE AREA
   ═══════════════════════════════════════════════ */
.area-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.area-text .section-title {
    text-align: left;
    margin-bottom: 1rem;
}
.area-text .section-eyebrow {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.area-desc {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 440px;
}

.area-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}
.area-tags span {
    color: var(--gray);
    font-size: .95rem;
    padding-left: 1rem;
    position: relative;
}
.area-tags span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1.5px;
    background: var(--blue);
    border-radius: 1px;
}

.area-cta {
    margin-top: 2rem;
}

.area-visual {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(36, 104, 204, 0.15);
}
.area-visual img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact {
    background: var(--dark);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.contact-title {
    text-align: left;
    margin-bottom: 1rem;
}
.contact-left .section-eyebrow {
    margin-bottom: .5rem;
}
.contact-intro {
    color: var(--gray);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 420px;
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid rgba(139, 163, 184, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group label {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--chrome);
}
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 163, 184, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color var(--transition);
    min-height: 48px;
		width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    background: rgba(36, 104, 204, 0.05);
}
.form-group select {
    appearance: none;
    cursor: pointer;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}
.form-group input.error,
.form-group select.error {
    border-color: #e25;
}
.form-error {
    color: #e66;
    font-size: 0.85rem;
    min-height: 1.2em;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding-top: .25rem;
    text-align: left;
}

.cinfo-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}

.cinfo-item-text {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.cinfo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(36, 104, 204, 0.1);
    border: 1px solid rgba(36, 104, 204, 0.2);
    margin-bottom: .2rem;
    flex-shrink: 0;
}
.cinfo-icon svg {
    width: 18px;
    height: 18px;
    color: #5aaeff;
    stroke: #5aaeff;
}

.cinfo-label {
    font-family: var(--font-cond);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--chrome);
}

.cinfo-value {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.45;
    transition: color var(--transition);
}
a.cinfo-value:hover { color: var(--white); }

.cinfo-socials {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(139, 163, 184, 0.1);
    flex-wrap: wrap;
    width: 100%;
}

.cinfo-social {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--chrome);
    transition: color var(--transition);
}
.cinfo-social svg { flex-shrink: 0; }
.cinfo-social:hover { color: var(--white); }
/* ═══════════════════════════════════════════════
   CTA BLOCK
   ═══════════════════════════════════════════════ */
.cta-block {
    padding: 6rem 0;
    background: linear-gradient(135deg, #040e22 0%, #071530 40%, #0a1845 100%);
    position: relative;
    overflow: hidden;
}
.cta-block::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70%; height: 70%;
    background: radial-gradient(ellipse, rgba(36,104,204,.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-ghost {
    position: absolute;
    right: -2rem; top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-hero);
    font-size: clamp(8rem, 20vw, 22rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(36,104,204,.08);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}


.cta-headline {
    font-family: var(--font-hero);
    font-size: clamp(2.2rem, 4.5vw, 5rem);
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1.0;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #e8f4ff 0%, #7ab4ff 25%, #2468cc 55%, #8ba3b8 80%, #dce8f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-sub {
    color: var(--gray);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 380px;
}

.cta-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .6rem;
    text-align: right;
}

.cta-phone-label {
    font-family: var(--font-cond);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--chrome);
}

.cta-phone-number {
    font-family: var(--font-hero);
    font-size: clamp(2rem, 4vw, 4rem);
    letter-spacing: .02em;
    line-height: 1;
    color: var(--white);
    transition: color var(--transition);
}
.cta-phone-number:hover {
    color: #5aaeff;
    text-shadow: 0 0 40px rgba(90, 174, 255, 0.45);
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-head);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--chrome);
    transition: color var(--transition);
    margin-top: .25rem;
}
.cta-whatsapp:hover { color: var(--white); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.site-footer {
    background: #040c17;
    padding: 4rem 0 0;
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-logo {
    height: 104px;
    width: fit-content;
    object-fit: contain;
}
.footer-tagline {
    font-size: .85rem;
    color: var(--chrome);
    line-height: 1.6;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}
.footer-col-title {
    font-family: var(--font-cond);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: .3rem;
}
.footer-col a,
.footer-col span {
    font-size: .88rem;
    color: var(--chrome);
    transition:
        color var(--transition),
        transform var(--transition);
    line-height: 1.5;
    display: inline-block;
}
.footer-col a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: .78rem;
    color: rgba(139,163,184,.45);
    letter-spacing: .03em;
}

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-36px);
    transition:
        opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-left.in-view {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(36px);
    transition:
        opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.93);
    transition:
        opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.scale-in.in-view {
    opacity: 1;
    transform: scale(1);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-headline .line,
    .hero-eyebrow,
    .hero-sub,
    .hero-ctas {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .hero-ghost {
        animation: none;
    }
    .fade-up,
    .fade-left,
    .fade-right,
    .scale-in {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

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

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

    .container {
        padding: 0 1rem;
    }

    /* Gallery: hide grid, show swiper */
    .gallery-grid-wrap {
        display: none;
    }

    .gallery-swiper-wrap {
        display: block;
    }

    /* Header */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(7, 16, 31, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform var(--transition);
        z-index: 998;
    }
    .main-nav.open {
        transform: translateX(0);
    }
    .main-nav a {
        font-size: 1.5rem;
        letter-spacing: 0.2em;
    }
    .header-right {
        display: none;
    }
    .hamburger {
        display: flex;
        z-index: 999;
    }

    /* Hero */
    .hero {
        align-items: flex-end;
    }
    .hero-content {
        max-width: 100%;
        width: 100%;
        padding: 0 1.5rem 5rem;
    }
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(4, 10, 22, 0.35) 0%, rgba(4, 10, 22, 0.9) 60%, rgba(4, 10, 22, 0.97) 100%), linear-gradient(to right, rgba(4, 10, 22, 0.7) 0%, transparent 70%);
    }
    .hero-ghost {
        display: none;
    }
    .line-word {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    .line-thin {
        font-size: clamp(0.75rem, 3.5vw, 1.4rem);
    }
    .hero-ctas {
        flex-wrap: wrap;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* About */
    .about-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-visual {
        order: -1;
    }

    /* Area */
    .area-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .area-visual {
        order: 1;
    }

    /* Why */
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Reviews */
    .reviews-cta-wrap .btn {
        width: 100%;
        justify-content: center;
    }

    /* Contact */
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-info {
        padding-top: 0;
    }

    /* Mobile call btn */
    .mobile-call-btn {
        display: flex;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .cta-phone {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .hero-ctas {
        flex-direction: column;
    }
    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }
    .cta-btns .btn {
        width: 100%;
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════════
   TESTIMONIALS (Site Reviews shortcodes)
   ═══════════════════════════════════════════════ */
.testimonials-box {
    padding: 5rem 0;
    background: var(--dark);
}

.testimonials-top {
    margin-bottom: 2.5rem;
}

.testimonials-top .testimonials-left h1 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.5rem, 3.2vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.testimonials-top .container {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.testimonials-summary .glsr,
.testimonials-form .glsr {
    background: var(--card-bg);
    border: 1px solid rgba(139, 163, 184, 0.16);
    border-radius: 14px;
    padding: 1.2rem 1.2rem 1.35rem;
}

.testimonials-summary .glsr-summary {
    --glsr-bar-bg: var(--blue);
    --glsr-bar-color: rgba(255, 255, 255, 0.25);
    --glsr-star-empty: rgba(255, 255, 255, 0.2);
    --glsr-text-md: 0.9rem;
}

.testimonials-form .glsr-form-wrap {
    margin: 0;
}

.testimonials-form .glsr-field {
    margin-bottom: 0.9rem;
}

.testimonials-form :is(input, textarea, select, .glsr-input, .glsr-textarea, .glsr-select) {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 163, 184, 0.28);
    color: var(--white);
    border-radius: 10px;
    min-height: 44px;
    padding: 0.7rem 0.9rem;
    outline: none;
    box-shadow: none;
}

.testimonials-form textarea,
.testimonials-form .glsr-textarea {
    min-height: 120px;
    resize: vertical;
}

.testimonials-form :is(input, textarea, select, .glsr-input, .glsr-textarea, .glsr-select):focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(36, 104, 204, 0.2);
}

.testimonials-form :is(input, textarea)::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.testimonials-form .glsr-button {
    border: 0;
    border-radius: 999px;
    padding: 0.82rem 1.5rem;
    background: linear-gradient(135deg, #3d8ef5 0%, #2468cc 55%, #1245a8 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform var(--transition), box-shadow var(--transition);
}

.testimonials-form .glsr-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(36, 104, 204, 0.45);
}

.testimonials-reviews .glsr {
    background: transparent;
}

.testimonials-reviews .glsr-review {
    background: var(--card-bg);
    border: 1px solid rgba(139, 163, 184, 0.14);
    border-radius: 14px;
    padding: 1.15rem 1.2rem;
}

.testimonials-reviews .glsr-review + .glsr-review {
    margin-top: 1rem;
}

.testimonials-reviews .glsr-review-title,
.testimonials-reviews .glsr-review h3,
.testimonials-reviews .glsr-review h4 {
    color: var(--white);
}

.testimonials-reviews .glsr-review-content {
    color: rgba(255, 255, 255, 0.76);
}

.testimonials-reviews .glsr-review-date,
.testimonials-reviews .glsr-review-author {
    color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1024px) {
    .testimonials-top .container {
        grid-template-columns: 1fr;
    }
}
