:root {
    --primary-neon: #22c55e; /* Corporate Green 30% */
    --secondary-blue: #2563eb; /* Corporate Blue 10% */
    --accent-orange: #f97316;  /* Accent Orange */
    --dark-bg: #0f172a;        /* Background 60% */
    --text-main: #0f172a;
    --text-muted: #475569;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --transition-premium: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --radius-lg: 24px;
    --radius-pill: 60px;
    --soft-box-border: rgba(15, 23, 42, 0.08);
    --soft-box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
    --soft-box-shadow-hover: 0 24px 48px rgba(15, 23, 42, 0.14);
    --soft-box-shadow-dark: 0 22px 44px rgba(2, 6, 23, 0.28);
    --soft-box-shadow-dark-hover: 0 28px 54px rgba(2, 6, 23, 0.34);
    --soft-box-transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.34s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: #0f172a;
    line-height: 1.5;
    overflow-x: hidden;
}

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

/* Global Glass Effect */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

/* Header */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px 3%;
    transition: padding 0.3s ease, transform 0.3s ease;
}

.pill-header {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
    transition: padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: visible;
}

.pill-header::before {
    content: none;
}

/* Scrolled/Transparent Sticky State */
.header-wrapper.scrolled {
    padding: 4px 3%;
}

.header-wrapper.scrolled .pill-header {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.14);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.2);
}

.header-wrapper.scrolled .nav-item {
    color: #0f172a;
}

.header-wrapper.scrolled .nav-item:hover {
    color: #0f172a;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.14), rgba(37, 99, 235, 0.12));
}

.logo-image { 
    height: 110px; 
    width: auto; 
    object-fit: contain;
    display: block;
    transition: var(--transition-premium);
    margin: -6px 0;
}

.header-wrapper.scrolled .logo-image {
    height: 100px;
    margin: -4px 0;
}

.desktop-nav { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-bg);
    padding: 8px 12px;
    border-radius: 14px;
    transition: var(--transition-premium);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-item:hover {
    color: #0f172a;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.14), rgba(37, 99, 235, 0.12));
}

.nav-trigger {
    background: transparent;
    border: none;
    cursor: pointer;
    appearance: none;
}

/* Premium Dropdown Styles */
.has-dropdown { position: relative; }
.has-dropdown::after {
    content: "";
    position: absolute;
    left: -14px;
    right: -14px;
    top: 100%;
    height: 22px;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 14px;
    width: min(860px, 92vw);
    min-width: 0;
    max-height: 60vh;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.18);
    z-index: 1001;
    pointer-events: none;
}

.dropdown-menu.open,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Masaüstünde hover ile alt menüyü anında aç */
@media (hover: hover) and (pointer: fine) {
    .desktop-nav .has-dropdown:hover > .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }
}

.mega-menu {
    color: #0f172a;
}

.mega-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
}

.mega-col {
    display: grid;
    gap: 8px;
    align-content: start;
}

.mega-title {
    font-size: 0.7rem;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    font-weight: 800;
    color: #0f172a;
    opacity: 0.6;
    margin-bottom: 2px;
}

.mega-link {
    display: grid;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    min-height: 74px;
    align-content: center;
}

.mega-link span {
    font-weight: 700;
    font-size: 0.95rem;
}

.mega-link small {
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.4;
}

.mega-link:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 197, 94, 0.35);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(37, 99, 235, 0.12));
}

.mega-link-primary {
    border-color: rgba(34, 197, 94, 0.35);
    background: rgba(34, 197, 94, 0.08);
}

.mega-link-primary span {
    color: #0f172a;
}

.mega-link-primary:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(37, 99, 235, 0.12));
}

.mega-card {
    border-radius: 16px;
    padding: 14px;
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.18), rgba(37, 99, 235, 0.18));
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
    display: grid;
    gap: 8px;
}

.mega-card-title {
    font-weight: 800;
    color: #0f172a;
}

.mega-card-sub {
    color: #64748b;
    font-size: 0.85rem;
}

.mega-card-phone {
    font-size: 1.4rem;
    font-weight: 800;
    color: #16a34a;
}

.mega-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 12px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 800;
}

@media (max-width: 1200px) {
    .dropdown-menu {
        width: min(720px, 92vw);
    }
    .mega-columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .mega-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .dropdown-menu {
        width: min(420px, 94vw);
    }
    .mega-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mega-columns {
        grid-template-columns: 1fr;
    }
}

.btn-green-totaş {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 12px 26px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-premium);
    border-radius: 14px;
    text-transform: uppercase;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: linear-gradient(135deg, #22c55e, #2563eb);
    border: none;
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (max-width: 1250px) {
    .desktop-nav, .header-actions { display: none; }
    .mobile-toggle { display: flex; }
}

/* Mobile Nav Styles */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(1200px 600px at 10% 0%, rgba(34, 197, 94, 0.18), transparent 60%),
        radial-gradient(900px 500px at 90% 0%, rgba(37, 99, 235, 0.2), transparent 60%),
        #0b1220;
    z-index: 2000;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mobile-nav.active {
    transform: translateX(0);
}
.mobile-nav-item {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-brand {
    display: grid;
    gap: 8px;
    margin-bottom: 10px;
}

.mobile-brand img {
    width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.mobile-brand span {
    color: #cbd5f5;
    font-size: 0.95rem;
}

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: transparent;
    border: none;
    width: 100%;
}

.mobile-subnav {
    display: grid;
    gap: 10px;
    padding: 10px 0 16px 10px;
}

.mobile-subnav-item {
    font-size: 0.95rem;
    color: #e2e8f0;
    padding: 10px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(37, 99, 235, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-close {
    align-self: flex-end;
    background: #ffffff;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 30px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.25);
}

@media (max-width: 640px) {
    .pill-header {
        padding: 8px 14px;
        border-radius: 20px;
    }
    .logo-image {
        height: 80px;
    }
}

/* Hero Slider Section */
.hero-slider-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 780px;
    overflow: hidden;
    color: #ffffff;
    background: #0b1220;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slide-content {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    scroll-snap-align: start;
    overflow: hidden;
}

.slide-content.fallback-active,
.hero-slider-live .slide-content.fallback-active:not(.active) {
    opacity: 1;
    visibility: visible;
    transform: none;
    filter: none;
}

.slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.06);
    transition: transform 1.2s ease, filter 0.9s ease;
}

.slide-content.active .slide-media {
    transform: scale(1);
}

.slide-content.is-monochrome .slide-media {
    filter: grayscale(1) saturate(0.45);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 10, 18, 0.26) 0%, rgba(6, 10, 18, 0.62) 60%, rgba(6, 10, 18, 0.86) 100%),
        linear-gradient(105deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.18) 48%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.hero-header-overlay {
    position: absolute;
    top: 30vh;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 24px;
    z-index: 6;
    pointer-events: none;
}

.hero-header-content {
    width: min(680px, 100%);
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.66) 0%, rgba(7, 11, 20, 0.86) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.32), inset 0 1px 0 rgba(148, 163, 184, 0.18);
    border-radius: 20px;
    padding: 22px 26px;
    pointer-events: auto;
    transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-header-content.is-changing {
    opacity: 0.88;
    transform: translateY(5px);
}

.hero-header-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
    border-radius: 999px;
    border: 1px solid rgba(34, 197, 94, 0.45);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(37, 99, 235, 0.12));
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e2e8f0;
    margin-bottom: 0.7rem;
}

.hero-header-kicker {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #bfdbfe;
    margin-bottom: 0.6rem;
}

.hero-dynamic-title {
    font-size: clamp(1.62rem, 3.2vw, 2.55rem);
    font-weight: 800;
    line-height: 1.14;
    color: #ffffff;
    margin: 0;
    min-height: 2.4em;
    text-wrap: balance;
}

.hero-subtitle {
    color: #d4deee;
    font-weight: 400;
    font-size: 0.92rem;
    line-height: 1.62;
    margin: 10px auto 0;
    max-width: 560px;
    min-height: 2.8em;
}

.hero-detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    color: #dbeafe;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(191, 219, 254, 0.45);
    padding-bottom: 2px;
}

.hero-detail-link.is-hidden {
    display: none;
}

.hero-action-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.hero-btn {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 158px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary-neon), var(--secondary-blue));
    color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.24), 0 8px 18px rgba(37, 99, 235, 0.2);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #16a34a, #1d4ed8);
    border-color: rgba(191, 219, 254, 0.42);
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(22, 163, 74, 0.28), 0 12px 22px rgba(30, 64, 175, 0.24);
}

.hero-btn-secondary {
    background: rgba(15, 23, 42, 0.34);
    color: #e2e8f0;
    border: 1px solid rgba(37, 99, 235, 0.35);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.24);
}

.hero-btn-secondary:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(37, 99, 235, 0.24));
    border-color: rgba(134, 239, 172, 0.38);
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(2, 6, 23, 0.28);
}

.slide-info {
    position: absolute;
    left: 4.2vw;
    bottom: 4rem;
    z-index: 4;
    max-width: 380px;
    background: rgba(8, 12, 20, 0.52);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    opacity: 0.72;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.45s ease;
}

.slide-content.active .slide-info {
    opacity: 1;
    transform: translateY(0);
    border-color: rgba(255, 255, 255, 0.22);
}

.slide-info-copy {
    display: grid;
    gap: 8px;
}

.slide-info-index {
    display: inline-flex;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.34);
    color: #bfdbfe;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.slide-info h3 {
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
}

.slide-info p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.55;
}

.slide-info a {
    width: fit-content;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 1.24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    transition: background 0.28s ease, transform 0.28s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 6;
}

.dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.dot.active {
    background: var(--primary-neon);
    transform: scale(1.3);
    box-shadow: 0 0 14px rgba(34, 197, 94, 0.68);
}

@media (max-width: 1024px) {
    .hero-header-overlay {
        top: 27vh;
    }

    .hero-header-content {
        width: min(620px, 100%);
        padding: 20px 20px 18px;
    }

    .hero-dynamic-title {
        min-height: 0;
    }

    .slide-info {
        left: 24px;
        bottom: 88px;
        max-width: 320px;
    }

    .nav-btn {
        width: 48px;
        height: 48px;
    }

    .prev-btn {
        left: 1rem;
    }

    .next-btn {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-slider-wrap {
        min-height: 700px;
    }

    .hero-header-overlay {
        top: 24vh;
        padding: 0 18px;
    }

    .hero-header-content {
        padding: 18px 16px 16px;
        border-radius: 18px;
    }

    .hero-dynamic-title {
        font-size: clamp(1.32rem, 4.8vw, 1.95rem);
    }

    .hero-subtitle {
        min-height: 0;
        font-size: 0.88rem;
    }

    .hero-btn {
        min-width: 0;
    }

    .nav-btn {
        display: none;
    }

    .slide-info {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-slider-wrap {
        min-height: 640px;
        height: 100svh;
    }

    .hero-header-overlay {
        top: 20vh;
        padding: 0 14px;
    }

    .hero-header-content {
        border-radius: 16px;
        padding: 16px 14px 14px;
    }

    .hero-header-badge {
        font-size: 0.64rem;
        letter-spacing: 0.12em;
    }

    .hero-header-kicker {
        font-size: 0.74rem;
    }

    .hero-dynamic-title {
        font-size: clamp(1.18rem, 6.2vw, 1.6rem);
        min-height: 0;
    }

    .hero-subtitle {
        font-size: 0.84rem;
        line-height: 1.5;
    }

    .hero-action-row {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
    }

    .indicators {
        bottom: 1.35rem;
        gap: 12px;
    }
}

/* About Section */
.about-showcase {
    position: relative;
    padding: 70px 5vw 50px;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.about-card {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.25) 0%, rgba(34, 197, 94, 0) 70%);
    top: -80px;
    left: -80px;
    z-index: 0;
}

.about-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, rgba(37, 99, 235, 0) 70%);
    bottom: -120px;
    right: -120px;
    z-index: 0;
}

.about-content,
.about-media {
    position: relative;
    z-index: 1;
}

.about-kicker {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary-neon);
    margin-bottom: 14px;
}

.about-logo {
    width: 260px;
    max-width: 70%;
    margin: 6px 0 18px;
}

.about-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.about-lead {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0 20px;
}

.about-pill {
    position: relative;
    padding: 16px 18px 18px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.pill-value {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-neon);
}

.pill-label {
    color: #475569;
    margin-top: 6px;
    font-weight: 600;
}

.about-callout {
    position: relative;
    padding: 16px 18px 16px 22px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.about-callout::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 6px;
    background: var(--accent-orange);
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}

.about-media {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 28px 56px rgba(15, 23, 42, 0.16);
    min-height: 420px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    background: #f8fafc;
    padding: 14px;
    display: grid;
    gap: 12px;
}

.about-media::before {
    content: none;
}

.about-video-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
}

.about-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: #000000;
}

.about-video-open {
    position: absolute;
    right: 12px;
    bottom: 12px;
    border: 0;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 9px 14px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.22);
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.about-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}

.about-badge {
    position: absolute;
    top: 28px;
    left: 28px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    padding: 10px 14px;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
    z-index: 3;
}

.about-badge span {
    font-size: 1.2rem;
    color: #16a34a;
    display: block;
}

.about-badge small {
    font-size: 0.8rem;
    color: #475569;
}

@media (max-width: 1100px) {
    .about-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }
    .about-media {
        min-height: 360px;
    }
    .about-logo {
        width: 220px;
        max-width: 80%;
    }
    .about-pills {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 640px) {
    .about-card {
        padding: 22px;
        border-radius: 24px;
    }
    .about-lead {
        font-size: 1rem;
    }
    .pill-value {
        font-size: 1.8rem;
    }
    .about-media {
        min-height: 280px;
        border-radius: 22px;
        padding: 10px;
    }
    .about-gallery {
        grid-template-columns: 1fr;
    }
    .about-video-open {
        position: static;
        width: 100%;
        border-radius: 10px;
        margin-top: 8px;
    }
    .about-badge {
        top: 18px;
        left: 18px;
    }
}

.video-popup {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: grid;
    place-items: center;
    padding: 20px;
}

.video-popup[hidden] {
    display: none !important;
}

.video-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.74);
    backdrop-filter: blur(2px);
}

.video-popup-dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 96vw);
    border-radius: 18px;
    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 24px 50px rgba(2, 6, 23, 0.5);
    padding: 18px 18px 16px;
}

.video-popup-dialog h3 {
    color: #ffffff;
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 700;
}

.video-popup-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    background: #000000;
}

.video-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff;
    cursor: pointer;
}

body.video-popup-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .video-popup {
        padding: 12px;
    }
    .video-popup-dialog {
        padding: 14px 12px 12px;
    }
    .video-popup-dialog h3 {
        font-size: 0.94rem;
        margin-right: 30px;
    }
}

/* General Content Sections */
.services {
    padding: 100px 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 3rem; font-weight: 800; color: #fff; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.services .service-card {
    padding: 50px;
    text-align: center;
}
.services .service-card h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--primary-neon); }
.services .service-card p { color: var(--text-muted); line-height: 1.6; }

/* About Page */
.about-page {
    padding: 160px 0 110px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    overflow-x: clip;
}

.about-intro,
.about-mission {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: center;
}

.about-intro-grid > * {
    min-width: 0;
}

.about-intro-media {
    position: relative;
    display: grid;
    gap: 18px;
}

.about-hero-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 50px rgba(15, 23, 42, 0.14);
}

.about-hero-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.about-hero-overlay {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(6px);
    max-width: calc(100% - 40px);
}

.about-hero-overlay img {
    width: 70px;
    height: auto;
}

.about-hero-overlay strong {
    display: block;
    font-weight: 800;
    color: #0f172a;
}

.about-hero-overlay span {
    display: block;
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 2px;
}

.about-hero-card {
    border-radius: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.about-hero-card strong {
    color: var(--secondary-blue);
    display: block;
    margin-bottom: 6px;
}

.about-hero-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    background: #000000;
    display: block;
}

.about-hero-card p {
    color: #475569;
    line-height: 1.7;
}

.about-intro-copy h1 {
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
    font-weight: 600;
    color: #1e293b;
    line-height: 1.45;
    margin-bottom: 10px;
}

.about-intro-kicker {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--secondary-blue);
    margin-bottom: 12px;
}

.about-intro-copy p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-reason {
    margin-top: 18px;
}

.about-reason h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.about-reason-list {
    display: grid;
    gap: 10px;
}

.about-reason-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    font-weight: 700;
    color: #0f172a;
    transition: var(--transition-premium);
}

.about-reason-item::before {
    content: "›";
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(37, 99, 235, 0.12);
    color: var(--secondary-blue);
    font-weight: 900;
}

.about-reason-item:hover,
.about-reason-item:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.35);
}

.about-reason-item:hover::before {
    background: rgba(34, 197, 94, 0.18);
    color: var(--primary-neon);
}

.about-why {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 36px 28px;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #f8fafc;
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.about-why::before,
.about-why::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.18), transparent 70%);
    top: -120px;
    right: -120px;
    pointer-events: none;
}

.about-why::after {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.16), transparent 70%);
    bottom: -120px;
    left: -80px;
}

.about-why-head h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    color: #0f172a;
    margin: 10px 0 8px;
}

.about-why-head p {
    color: #64748b;
    line-height: 1.7;
    max-width: 720px;
}

.about-why-kicker {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary-neon);
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
    counter-reset: why;
}

.about-why-card {
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
    font-weight: 700;
    color: #0f172a;
    transition: var(--transition-premium);
    position: relative;
    padding-left: 48px;
    padding-right: 62px;
}

.about-why-card::before {
    content: "›";
    position: absolute;
    left: 16px;
    top: 16px;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(37, 99, 235, 0.12);
    color: var(--secondary-blue);
    font-weight: 900;
}

.about-why-card::after {
    counter-increment: why;
    content: "0" counter(why);
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 0.8rem;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.4);
    background: rgba(15, 23, 42, 0.04);
    border-radius: 999px;
    padding: 4px 10px;
}

.about-why-card:hover,
.about-why-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}

.about-why-card:hover::before {
    background: rgba(34, 197, 94, 0.18);
    color: var(--primary-neon);
}

.about-why-card:hover::after {
    background: rgba(34, 197, 94, 0.14);
    color: var(--primary-neon);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.about-stat {
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 14px 16px;
    background: #ffffff;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.about-stat span {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-neon);
    display: block;
}

.about-stat small {
    color: #64748b;
    font-weight: 600;
    margin-top: 4px;
    display: block;
}

.about-mission {
    margin-top: 20px;
}

.about-divider {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0.8;
}

.about-divider span {
    flex: 1;
    height: 1px;
    background: rgba(15, 23, 42, 0.12);
}

.about-divider img {
    width: 70px;
    height: auto;
}

.partners.partners-dense::before {
    content: none;
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.mission-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    transition: var(--transition-premium);
}

.mission-card h3 {
    color: #0f172a;
    margin-bottom: 6px;
}

.mission-card p {
    color: #64748b;
    line-height: 1.6;
}

.mission-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    color: var(--primary-neon);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    font-weight: 800;
}

.mission-icon.accent {
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent-orange);
}

.about-values {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.about-value-card {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    text-align: center;
    transition: var(--transition-premium);
}

.about-value-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    background: rgba(37, 99, 235, 0.12);
    color: var(--secondary-blue);
    font-weight: 800;
    font-size: 1.2rem;
}

.about-value-icon svg {
    width: 28px;
    height: 28px;
}

.about-value-card:hover,
.about-value-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}

.about-value-card:hover .about-value-icon {
    background: rgba(34, 197, 94, 0.18);
    color: var(--primary-neon);
}

.mission-card:hover,
.mission-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}

.about-value-card h4 {
    color: #0f172a;
    font-size: 0.95rem;
}

.about-target {
    margin-top: 40px;
}

.about-target-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px 22px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
    transition: var(--transition-premium);
}

.about-target-card:hover,
.about-target-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}

.about-target-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(37, 99, 235, 0.12);
    color: var(--secondary-blue);
    font-weight: 900;
}

.about-target h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 6px;
}

.about-target p {
    color: #64748b;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    .about-mission-grid {
        grid-template-columns: 1fr;
    }
    .about-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .about-page {
        padding: 130px 0 90px;
    }
    .about-intro,
    .about-mission {
        padding: 0 16px;
    }
    .about-intro-copy h1 {
        font-size: 1.35rem;
        line-height: 1.4;
    }
    .about-divider {
        margin: 36px auto;
        padding: 0 16px;
    }
    .about-divider img {
        width: 58px;
    }
    .about-hero-image img {
        height: 240px;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
    .about-why-grid {
        grid-template-columns: 1fr;
    }
    .about-why {
        padding: 28px 20px;
    }
    .about-why-card {
        padding-right: 48px;
    }
    .about-values {
        grid-template-columns: 1fr;
    }
    .about-hero-overlay {
        position: static;
        margin: 12px;
        max-width: 100%;
    }
    .about-target-card {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* Experience Page */
.experience-page {
    padding: 160px 5vw 110px;
    background: #ffffff;
}

.certificates-page .experience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.certificates-page .experience-item img {
    height: 220px;
}

@media (max-width: 1200px) {
    .certificates-page .experience-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.experience-hero {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}

.experience-kicker {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--secondary-blue);
}

.experience-hero-copy h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #0f172a;
    margin: 12px 0 10px;
}

.experience-hero-copy p {
    color: #475569;
    line-height: 1.7;
}

.experience-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.experience-meta div {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.experience-meta strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-neon);
    font-weight: 800;
}

.experience-meta span {
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
}

.experience-hero-card {
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    display: grid;
    gap: 12px;
}

.experience-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    color: #0f172a;
}

.experience-card-head span {
    font-size: 0.85rem;
    color: var(--accent-orange);
    letter-spacing: 1px;
}

.experience-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.experience-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
    transition: var(--transition-premium);
}

.experience-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    filter: grayscale(0.1);
}

.experience-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px;
    background: rgba(15, 23, 42, 0.6);
    color: #ffffff;
    display: grid;
    gap: 4px;
}

.experience-overlay strong {
    font-size: 1rem;
}

.experience-overlay span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.experience-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.16);
    border-color: rgba(34, 197, 94, 0.35);
}

.experience-item:hover img {
    filter: grayscale(0);
    transform: scale(1.02);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: grid;
    place-items: center;
    padding: 30px;
}

.lightbox[hidden] {
    display: none !important;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
}

.lightbox-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 16px;
    max-width: min(900px, 92vw);
    max-height: 90vh;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.35);
    z-index: 1;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 78vh;
    object-fit: contain;
    display: block;
    border-radius: 14px;
}

.lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
    cursor: pointer;
    font-size: 1rem;
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .lightbox {
        padding: 16px;
    }
    .lightbox-content {
        padding: 10px;
    }
}

@media (max-width: 1024px) {
    .experience-hero {
        grid-template-columns: 1fr;
    }
    .experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .experience-page {
        padding: 130px 6vw 90px;
    }
    .experience-meta {
        grid-template-columns: 1fr;
    }
    .experience-grid {
        grid-template-columns: 1fr;
    }
    .experience-item img {
        height: 200px;
    }
}

/* Services Page */
.services-page {
    padding: 152px 5vw 110px;
    background: linear-gradient(180deg, #f7fafc 0%, #eef3f9 100%);
}

.services-hero {
    max-width: 1320px;
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    border-radius: 28px;
    overflow: hidden;
    background: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.14);
    box-shadow: 0 26px 44px rgba(15, 23, 42, 0.16);
}

.services-hero-copy {
    padding: 46px 46px 42px;
}

.services-hero-copy .services-kicker {
    color: rgba(255, 255, 255, 0.88);
}

.services-hero-copy h1 {
    font-size: clamp(2rem, 3.1vw, 2.9rem);
    color: #ffffff;
    margin: 12px 0 12px;
    line-height: 1.2;
}

.services-hero-copy p {
    color: #c8d2e4;
    line-height: 1.7;
    font-size: 1.03rem;
    max-width: 60ch;
}

.services-hero-media {
    display: grid;
    align-content: center;
    gap: 16px;
    padding: 24px;
    background: #0b1220;
}

.services-hero-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 30px rgba(2, 6, 23, 0.38);
    min-height: 280px;
}

.services-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.services-hero-card {
    padding: 16px 18px 18px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 14px 24px rgba(2, 6, 23, 0.28);
}

.services-hero-card strong {
    color: #0f172a;
    display: block;
    margin-bottom: 7px;
    font-size: 1.04rem;
}

.services-hero-card p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.services-grid-page {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-tile {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    transition: var(--transition-premium);
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.service-tile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
}

.service-tile-head img {
    width: 84px;
    height: auto;
}

.service-tile-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.04em;
}

.service-tile-body {
    display: grid;
    gap: 9px;
    padding: 16px 16px 18px;
}

.service-tile h3 {
    color: #0f172a;
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.34;
}

.service-tile p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0 0 8px;
}

.service-tile-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    background: rgba(37, 99, 235, 0.12);
    color: var(--secondary-blue);
}

.service-tile-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: #0f172a;
    font-size: 0.92rem;
}

.service-tile-cta::after {
    content: "→";
    font-weight: 900;
    color: #16a34a;
}

.service-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 23, 42, 0.18);
    box-shadow: 0 20px 34px rgba(15, 23, 42, 0.14);
}

.service-tile.accent-green {
    border-top: 4px solid #22c55e;
}

.service-tile.accent-blue {
    border-top: 4px solid #1d4ed8;
}

.service-tile.accent-orange {
    border-top: 4px solid #22c55e;
}

.service-tile.accent-green .service-tile-icon {
    background: rgba(34, 197, 94, 0.14);
    color: var(--primary-neon);
}

.service-tile.accent-orange .service-tile-icon {
    background: rgba(249, 115, 22, 0.16);
    color: var(--accent-orange);
}

@media (max-width: 1024px) {
    .services-hero {
        grid-template-columns: 1fr;
    }
    .services-grid-page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .services-grid-page {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .services-page {
        padding: 130px 6vw 90px;
    }
    .services-hero-copy {
        padding: 30px 24px 22px;
    }
    .services-hero-media {
        padding: 12px;
    }
    .service-tile-head {
        padding: 12px;
    }
    .service-tile-head img {
        width: 74px;
    }
    .service-tile-body {
        padding: 14px 12px 16px;
    }
}

/* Service Detail Page */
.service-detail-page {
    padding: 160px 5vw 110px;
    background: #ffffff;
}

.service-detail-page > section {
    margin-top: 56px;
    padding-top: 12px;
    position: relative;
}

.service-detail-page > section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.14), transparent);
}

.service-hero {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.service-hero-copy h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #0f172a;
    margin: 12px 0 12px;
}

.service-hero-copy p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 10px;
}

.service-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.service-hero-media {
    display: grid;
    gap: 14px;
}

.service-hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.service-hero-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.service-hero-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
}

.service-hero-badge img {
    height: 28px;
    width: auto;
}

.service-hero-badge strong {
    display: block;
    color: #0f172a;
    font-weight: 800;
}

.service-hero-badge span {
    color: #64748b;
    font-size: 0.85rem;
}

.service-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.service-hero-stats div {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    text-align: center;
    transition: var(--transition-premium);
}

.service-hero-stats strong {
    display: block;
    font-size: 1.4rem;
    color: var(--primary-neon);
    font-weight: 800;
}

.service-hero-stats span {
    color: #64748b;
    font-weight: 600;
    font-size: 0.85rem;
}

.service-hero-stats div:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
}

.service-features,
.service-gallery,
.service-faq,
.service-contact {
    max-width: 1200px;
    margin: 40px auto 0;
}

.service-section-head h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    color: #0f172a;
    margin-bottom: 8px;
}

.service-section-head p {
    color: #64748b;
    line-height: 1.7;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.service-feature-card {
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
    transition: var(--transition-premium);
}

.service-feature-card h3 {
    margin: 10px 0 6px;
    color: #0f172a;
}

.service-feature-card p {
    color: #64748b;
    line-height: 1.6;
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--secondary-blue);
    display: grid;
    place-items: center;
    font-weight: 800;
}

.service-gallery-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
    transition: var(--transition-premium);
}

.service-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-gallery-item.tall img {
    height: 460px;
}

.service-contact-card {
    padding: 24px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.service-contact-card h3 {
    font-size: 1.5rem;
    margin: 10px 0 8px;
    color: #0f172a;
}

.service-contact-card p {
    color: #64748b;
    line-height: 1.7;
}

.service-contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.service-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: center;
}

.service-contact-info {
    display: grid;
    gap: 10px;
}

.service-contact-pill {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
    transition: var(--transition-premium);
}

.service-contact-pill span {
    color: #64748b;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 4px;
}

.service-contact-pill strong {
    color: #0f172a;
    font-weight: 800;
}

.service-feature-card:hover,
.service-feature-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.14);
}

.service-gallery-item:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.14);
}

.service-gallery-item:hover img {
    transform: scale(1.03);
    transition: transform 0.5s ease;
}

.service-contact-pill:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.service-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.service-panel-card {
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
    line-height: 1.6;
    color: #475569;
    transition: var(--transition-premium);
}

.service-panel-media {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
    margin-bottom: 12px;
}

.service-panel-media img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.service-panel-media span {
    position: absolute;
    left: 12px;
    bottom: 10px;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.service-panel-card h3 {
    color: #0f172a;
    margin-bottom: 8px;
}

.service-panel-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.14);
}

.service-specials {
    max-width: 1200px;
    margin: 40px auto 0;
}

.service-special {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    margin-top: 18px;
    transition: var(--transition-premium);
}

.service-special.reverse {
    grid-template-columns: 1.05fr 0.95fr;
}

.service-special-section {
    max-width: 1200px;
    margin: 40px auto 0;
}

.service-special-wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    transition: var(--transition-premium);
}

.service-special-wrap.reverse {
    grid-template-columns: 1.05fr 0.95fr;
}

.service-special-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-special-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0 6px;
}

.service-special-box {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
    display: grid;
    gap: 4px;
}

.service-special-box strong {
    color: #0f172a;
    font-size: 0.95rem;
}

.service-special-box span {
    color: #64748b;
    font-size: 0.85rem;
}

.service-special-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.1);
}

.service-special-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.service-special-logo {
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    padding: 6px 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.service-special-logo img {
    height: 22px;
    width: auto;
}

.service-special-kicker {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--secondary-blue);
    display: inline-block;
    margin-bottom: 8px;
}

.service-special-content h3 {
    color: #0f172a;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.service-special-content p {
    color: #475569;
    line-height: 1.7;
}

.service-special-list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: #475569;
}

.service-special-list li {
    position: relative;
    padding-left: 18px;
    line-height: 1.6;
}

.service-special-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-neon);
    position: absolute;
    left: 0;
    top: 0.6em;
}

.climate-hub {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    gap: 28px;
}

.climate-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
}

.climate-stack {
    display: grid;
    gap: 16px;
}

.climate-app {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 18px 20px;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
    display: grid;
    gap: 14px;
    transition: var(--transition-premium);
}

.climate-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.climate-app:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.16);
}

.climate-app-top {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.climate-app-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(34, 197, 94, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-neon);
    flex-shrink: 0;
}

.climate-app-icon svg {
    width: 26px;
    height: 26px;
}

.climate-app h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #0f172a;
}

.climate-app p {
    color: #475569;
    line-height: 1.6;
}

.climate-app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.climate-app-tags span {
    font-size: 0.78rem;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    font-weight: 600;
}

.climate-panel {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 55%, #eff6ff 100%);
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 18px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    display: grid;
    gap: 18px;
}

.climate-panel-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.climate-panel-hero img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.climate-panel-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(15, 23, 42, 0.75);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.climate-panel-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #0f172a;
}

.climate-panel-content p {
    color: #475569;
    line-height: 1.7;
}

.climate-panel-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.climate-metric {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 12px;
    display: grid;
    gap: 4px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.climate-metric strong {
    color: #0f172a;
    font-size: 1rem;
}

.climate-metric span {
    color: #64748b;
    font-size: 0.8rem;
}

.climate-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.climate-mini-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 14px 16px;
    display: grid;
    gap: 10px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
    transition: var(--transition-premium);
}

.climate-mini-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 22px 38px rgba(15, 23, 42, 0.14);
}

.climate-mini-top span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: var(--secondary-blue);
    font-weight: 700;
}

.climate-mini-top strong {
    display: block;
    margin-top: 4px;
    color: #0f172a;
    font-size: 0.95rem;
}

.climate-mini-card p {
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.55;
}

@media (max-width: 1100px) {
    .climate-grid {
        grid-template-columns: 1fr;
    }
    .climate-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .climate-app-top {
        flex-direction: column;
    }
    .climate-panel-hero img {
        height: 200px;
    }
    .climate-mini-grid {
        grid-template-columns: 1fr;
    }
}

.nextgen-hub {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    gap: 26px;
}

.nextgen-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.nextgen-app {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    transition: var(--transition-premium);
}

.nextgen-app.wide {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.nextgen-app:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.16);
}

.nextgen-app-media {
    position: relative;
    min-height: 220px;
}

.nextgen-app-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nextgen-chip {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    font-size: 0.78rem;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.nextgen-app-content {
    padding: 20px 22px 22px;
    display: grid;
    gap: 12px;
}

.nextgen-app-content h3 {
    font-size: 1.2rem;
    color: #0f172a;
}

.nextgen-app-content p {
    color: #475569;
    line-height: 1.7;
}

.nextgen-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nextgen-tags span {
    font-size: 0.78rem;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    font-weight: 600;
}

.nextgen-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: #475569;
}

.nextgen-list li {
    position: relative;
    padding-left: 18px;
}

.nextgen-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-neon);
    position: absolute;
    left: 0;
    top: 0.6em;
}

.nextgen-advantages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.nextgen-advantages div {
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    font-size: 0.86rem;
}

.nextgen-note {
    font-size: 0.88rem;
    color: #64748b;
}

.nextgen-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.nextgen-metric-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 14px;
    display: grid;
    gap: 6px;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
}

.nextgen-metric-card strong {
    color: #0f172a;
    font-size: 1rem;
}

.nextgen-metric-card span {
    color: #64748b;
    font-size: 0.82rem;
}

@media (max-width: 1024px) {
    .nextgen-grid {
        grid-template-columns: 1fr;
    }
    .nextgen-app.wide {
        grid-template-columns: 1fr;
    }
    .nextgen-advantages {
        grid-template-columns: 1fr;
    }
    .nextgen-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nextgen-metric-grid {
        grid-template-columns: 1fr;
    }
}

.renewable-hub {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    gap: 26px;
}

.renewable-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.renewable-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    transition: var(--transition-premium);
}

.renewable-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.16);
}

.renewable-media {
    position: relative;
    min-height: 200px;
}

.renewable-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.renewable-chip {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    font-size: 0.78rem;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.renewable-content {
    padding: 18px 20px 22px;
    display: grid;
    gap: 12px;
}

.renewable-content h3 {
    font-size: 1.15rem;
    color: #0f172a;
}

.renewable-content p {
    color: #475569;
    line-height: 1.7;
}

.renewable-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.renewable-tags span {
    font-size: 0.78rem;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    font-weight: 600;
}

.renewable-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    color: #475569;
}

.renewable-list li {
    position: relative;
    padding-left: 18px;
}

.renewable-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-blue);
    position: absolute;
    left: 0;
    top: 0.6em;
}

.renewable-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.renewable-mini-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 14px;
    display: grid;
    gap: 6px;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
}

.renewable-mini-card strong {
    color: #0f172a;
    font-size: 0.95rem;
}

.renewable-mini-card p {
    color: #64748b;
    font-size: 0.82rem;
}

@media (max-width: 1024px) {
    .renewable-grid {
        grid-template-columns: 1fr;
    }
    .renewable-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .renewable-mini-grid {
        grid-template-columns: 1fr;
    }
}

.underfloor-calc {
    max-width: 1200px;
    margin: 36px auto 0;
    display: grid;
    gap: 18px;
}

.calc-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 18px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.calc-form {
    display: grid;
    gap: 14px;
}

.calc-form label {
    display: grid;
    gap: 8px;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.95rem;
}

.calc-form input,
.calc-form select {
    height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #f8fafc;
    color: #0f172a;
    font-size: 0.95rem;
}

.calc-form button {
    width: fit-content;
    margin-top: 6px;
}

.calc-result {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(37, 99, 235, 0.08));
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.calc-result span {
    color: #64748b;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.calc-result strong {
    color: #0f172a;
    font-size: 1.4rem;
    display: block;
    margin-top: 4px;
}

.calc-result p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.calc-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2000;
}

.calc-modal.open {
    display: flex;
}

.calc-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
}

.calc-modal-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 22px;
    max-width: 640px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
    z-index: 1;
}

.calc-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 999px;
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    cursor: pointer;
}

.calc-modal-head h3 {
    margin-top: 8px;
    font-size: 1.3rem;
    color: #0f172a;
}

.calc-modal-head p {
    color: #64748b;
    margin-top: 6px;
}

.calc-modal-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.calc-modal-item {
    background: #f8fafc;
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.calc-modal-item span {
    display: block;
    color: #64748b;
    font-size: 0.78rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.calc-modal-item strong {
    display: block;
    color: #0f172a;
    font-size: 1.1rem;
    margin-top: 6px;
}

.calc-modal-item p {
    margin: 0;
    color: #64748b;
    font-size: 0.82rem;
}

.calc-modal-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

@media (max-width: 640px) {
    .calc-modal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .calc-card {
        grid-template-columns: 1fr;
    }
}

.service-special:hover,
.service-special-wrap:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.16);
}

@media (max-width: 1024px) {
    .service-special,
    .service-special.reverse {
        grid-template-columns: 1fr;
    }
    .service-special-media img {
        height: 220px;
    }
    .service-special-wrap,
    .service-special-wrap.reverse {
        grid-template-columns: 1fr;
    }
    .service-special-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
    }
    .service-hero-image img {
        height: 260px;
    }
    .service-hero-stats {
        grid-template-columns: 1fr;
    }
    .service-feature-grid {
        grid-template-columns: 1fr;
    }
    .service-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-panel-grid {
        grid-template-columns: 1fr;
    }
    .service-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .service-detail-page {
        padding: 130px 6vw 90px;
    }
    .service-gallery-grid {
        grid-template-columns: 1fr;
    }
    .service-gallery-item img,
    .service-gallery-item.tall img {
        height: 220px;
    }
}

/* Page Containers */
.page-container {
    max-width: 1100px;
    margin: 180px auto 100px;
    padding: 0 20px;
}
.page-title { font-size: 4rem; font-weight: 800; margin-bottom: 40px; color: #fff; }
.page-content {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 60px;
    border-radius: 30px;
    line-height: 1.8;
    color: #475569;
}

/* Blog Page */
.blog-page {
    --blog-gutter: clamp(16px, 3vw, 48px);
}

.blog-page .page-title {
    color: #0f172a;
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 4vw, 4.2rem);
}

.blog-page.page-container {
    max-width: 1400px;
    margin: 170px auto 110px;
    padding: 0 var(--blog-gutter);
}

.blog-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 32px;
}

.blog-kicker {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 12px;
}

.blog-lead {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 620px;
}

.blog-panel {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.blog-panel h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #0f172a;
}

.blog-panel-text {
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.6;
}

.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud-link {
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    padding: 6px 12px;
    background: rgba(37, 99, 235, 0.08);
    color: #1e40af;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.tag-cloud-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.16);
    color: #0f172a;
}

.tag-size-sm { font-size: 0.78rem; }
.tag-size-md { font-size: 0.95rem; }
.tag-size-lg { font-size: 1.1rem; }

.blog-active {
    margin-top: 18px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(34, 197, 94, 0.12);
    color: #065f46;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    font-weight: 700;
    flex-wrap: wrap;
}

.blog-active span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.blog-active strong {
    color: #0f172a;
}

.blog-active a {
    color: #0f172a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-active.missing {
    background: rgba(248, 113, 113, 0.12);
    color: #991b1b;
}

.blog-placeholder h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #0f172a;
}

@media (max-width: 980px) {
    .blog-hero {
        grid-template-columns: 1fr;
    }
}

.blog-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin: 18px 0 28px;
    flex-wrap: wrap;
}

.blog-search {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 1;
    min-width: 260px;
}

.blog-search input {
    flex: 1;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 12px 16px;
    font-weight: 600;
    color: #0f172a;
}

.blog-search button {
    border: none;
    border-radius: 999px;
    padding: 12px 18px;
    background: var(--primary-neon);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.blog-toolbar-meta {
    display: grid;
    gap: 10px;
    min-width: 240px;
}

.blog-categories span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    color: #64748b;
}

.blog-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.blog-category-list a {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #f8fafc;
    font-weight: 700;
    color: #0f172a;
}

.blog-category-list a.active {
    background: rgba(34, 197, 94, 0.16);
    border-color: rgba(34, 197, 94, 0.4);
    color: #166534;
}

.blog-category-list em {
    font-style: normal;
    color: #64748b;
    margin-left: 4px;
}

.blog-count {
    color: #64748b;
    font-weight: 600;
}

.blog-featured {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
    margin-bottom: 28px;
}

.blog-featured-media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    border-radius: 22px;
}

.blog-featured-content h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    color: #0f172a;
    margin: 12px 0 12px;
}

.blog-featured-content p {
    color: #475569;
    line-height: 1.7;
}

.blog-card-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-card-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.blog-card-tags a {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #1e40af;
    font-weight: 700;
    font-size: 0.78rem;
    background: rgba(37, 99, 235, 0.08);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.blog-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0;
}

.blog-card-media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 18px;
    display: grid;
    gap: 10px;
}

.blog-card h3 {
    font-size: 1.1rem;
    color: #0f172a;
}

.blog-card p {
    color: #64748b;
    line-height: 1.6;
}

.blog-empty {
    text-align: center;
}

.blog-pagination {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-page-link {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #ffffff;
    font-weight: 700;
}

.blog-page-link.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.blog-page-numbers {
    display: flex;
    gap: 8px;
}

.blog-page-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(15, 23, 42, 0.12);
    font-weight: 700;
}

.blog-page-number.active {
    background: #0f172a;
    color: #ffffff;
}

/* Blog News Layout Overrides */
.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.blog-hero-wrap {
    position: relative;
    margin: 0 0 28px;
    padding: 28px;
    background: #f8fafc;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.blog-header-stats {
    display: flex;
    gap: 18px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 14px 18px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.blog-header-stats strong {
    display: block;
    font-size: 1.15rem;
    color: #0f172a;
}

.blog-header-stats span {
    font-size: 0.75rem;
    color: #64748b;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.blog-featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    margin-bottom: 30px;
}

.blog-featured-card {
    background: #ffffff;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 0;
}

.blog-featured-card .blog-featured-media img {
    height: 320px;
}

.blog-featured-card .blog-featured-content {
    padding: 18px;
    display: grid;
    gap: 10px;
}

.blog-headlines {
    background: #ffffff;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 20px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 18px;
}

.blog-headlines-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-headlines-head .headline-title {
    display: grid;
    gap: 4px;
}

.headline-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 800;
    color: #94a3b8;
}

.blog-headlines-head h3 {
    font-size: 1.25rem;
    color: #0f172a;
}

.headline-note {
    color: #64748b;
    font-weight: 600;
    font-size: 0.85rem;
}

.blog-headline-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.blog-headline-card {
    background: #f8fafc;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-rows: 140px auto;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-headline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.3);
}

.headline-media {
    position: relative;
}

.headline-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.headline-index {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 10px;
    border-radius: 999px;
}

.headline-content {
    padding: 14px 16px 16px;
    display: grid;
    gap: 6px;
}

.headline-tag {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1d4ed8;
    font-weight: 800;
}

.headline-content h4 {
    font-size: 1rem;
    color: #0f172a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.headline-meta {
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

.blog-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-section-head h2 {
    font-size: 1.4rem;
    color: #0f172a;
}

.blog-section-head span {
    color: #64748b;
    font-weight: 600;
}

.blog-list {
    display: grid;
    gap: 18px;
}

.blog-list-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.blog-list-media img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
}

.blog-list-body {
    padding: 16px 18px;
    display: grid;
    gap: 8px;
}

.blog-sidebar {
    display: grid;
    gap: 16px;
}

.blog-sidebar-block {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 18px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 12px;
}

.blog-sidebar-block h3 {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #64748b;
}

.blog-search {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 18px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 10px;
    flex: initial;
    min-width: 0;
}

.blog-search label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #64748b;
    font-weight: 700;
}

.blog-search-field {
    display: flex;
    gap: 8px;
}

.blog-search-field input {
    flex: 1;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 10px 14px;
    font-weight: 600;
    color: #0f172a;
}

.blog-search-field button {
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.blog-tags {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-tags a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    font-weight: 600;
    color: #0f172a;
}

.blog-tags em {
    font-style: normal;
    color: #64748b;
}

.blog-tags-more {
    margin-top: 10px;
    border-top: 1px dashed rgba(15, 23, 42, 0.12);
    padding-top: 10px;
}

.blog-tags-more summary {
    cursor: pointer;
    font-weight: 700;
    color: #0f172a;
    list-style: none;
}

.blog-tags-more summary::-webkit-details-marker {
    display: none;
}

.blog-tags-more summary::after {
    content: "+";
    float: right;
    color: #64748b;
    font-weight: 700;
}

.blog-tags-more[open] summary::after {
    content: "–";
}

.blog-tags-more .blog-tags {
    margin-top: 12px;
}

.blog-contact p {
    color: #64748b;
    line-height: 1.6;
}

.blog-contact a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--primary-neon);
    color: #ffffff;
    font-weight: 700;
    max-width: 200px;
}

@media (max-width: 1100px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .blog-featured-grid {
        grid-template-columns: 1fr;
    }
    .blog-list-item {
        grid-template-columns: 1fr;
    }
    .blog-headline-grid {
        grid-template-columns: 1fr;
    }
    .blog-headline-card {
        grid-template-rows: 160px auto;
    }
}

@media (max-width: 720px) {
    .blog-header-stats {
        width: 100%;
        justify-content: space-between;
    }
    .blog-search-field {
        flex-direction: column;
    }
    .blog-tags {
        grid-template-columns: 1fr;
    }
}

.blog-article-page {
    max-width: 1100px;
    margin: 170px auto 120px;
    padding: 0 20px;
}

.blog-article-hero {
    display: grid;
    gap: 12px;
}

.blog-back {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 800;
    color: #64748b;
}

.blog-article-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: #0f172a;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #64748b;
    font-weight: 600;
}

.blog-article-cover img {
    width: 100%;
    border-radius: 26px;
    margin: 24px 0;
    object-fit: cover;
    max-height: 420px;
}

.blog-article-body {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 28px;
    align-items: start;
}

.blog-article-body.no-toc {
    grid-template-columns: 1fr;
}

.blog-article-toc {
    position: sticky;
    top: 120px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 18px;
}

.blog-article-toc h3 {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 10px;
}

.blog-article-toc ol {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 8px;
}

.blog-article-toc a {
    color: #0f172a;
    font-weight: 600;
}

.blog-article-content {
    display: grid;
    gap: 18px;
}

.blog-article-excerpt {
    font-size: 1.05rem;
    color: #475569;
}

.blog-article-content h2 {
    font-size: 1.4rem;
    color: #0f172a;
}

.blog-article-content p {
    color: #475569;
    line-height: 1.7;
}

.blog-article-wp h2 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-top: 26px;
}

.blog-article-wp h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-top: 20px;
}

.blog-article-wp ul,
.blog-article-wp ol {
    padding-left: 20px;
    color: #475569;
    line-height: 1.7;
}

.blog-article-wp li {
    margin-bottom: 6px;
}

.blog-article-wp img {
    max-width: 100%;
    border-radius: 16px;
    margin: 14px 0;
}

.blog-article-wp a {
    color: #1d4ed8;
    font-weight: 600;
}

.blog-article-wp hr {
    border: none;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
    margin: 24px 0;
}

.blog-article-wp blockquote {
    margin: 20px 0;
    padding: 16px 18px;
    border-left: 4px solid #1d4ed8;
    background: #f8fafc;
    color: #475569;
    border-radius: 12px;
}

.blog-article-tags {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.blog-article-tags span {
    font-weight: 700;
    color: #0f172a;
}

.blog-article-tags a {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #1e40af;
    font-weight: 700;
    background: rgba(37, 99, 235, 0.08);
}

.blog-article-cta {
    margin: 32px 0;
    padding: 24px;
    border-radius: 24px;
    background: #0f172a;
    color: #ffffff;
    display: grid;
    gap: 10px;
}

.blog-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--primary-neon);
    color: #ffffff;
    font-weight: 700;
    max-width: 200px;
}

.blog-related h3 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 16px;
}

.gallery-page .page-title {
    color: #0f172a;
    margin-bottom: 16px;
}

.gallery-hero {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.gallery-kicker {
    font-size: 0.85rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 10px;
    display: inline-block;
}

.gallery-lead {
    color: #475569;
    line-height: 1.7;
    max-width: 620px;
}

.gallery-summary {
    display: flex;
    gap: 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 16px 20px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.gallery-summary strong {
    font-size: 1.4rem;
    color: #0f172a;
    display: block;
}

.gallery-summary span {
    color: #64748b;
    font-size: 0.85rem;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.gallery-filter {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: #f8fafc;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
}

.gallery-filter.active {
    background: rgba(34, 197, 94, 0.16);
    border-color: rgba(34, 197, 94, 0.4);
    color: #166534;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.gallery-item {
    border: none;
    text-align: left;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    padding: 0;
    display: grid;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 14px 16px 18px;
    display: grid;
    gap: 6px;
}

.gallery-caption span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #94a3b8;
    font-weight: 700;
}

.gallery-caption strong {
    font-size: 1rem;
    color: #0f172a;
}

@media (max-width: 1024px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .blog-article-body {
        grid-template-columns: 1fr;
    }
    .blog-article-toc {
        position: static;
        order: 2;
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-search {
        flex-direction: column;
        align-items: stretch;
    }
    .gallery-summary {
        width: 100%;
        justify-content: space-between;
    }
}
.footer {
    padding: 70px 5vw 34px;
    background: radial-gradient(1200px circle at 10% 0%, rgba(34, 197, 94, 0.15), transparent 55%),
        radial-gradient(1000px circle at 90% 10%, rgba(37, 99, 235, 0.16), transparent 60%),
        #0f172a;
    color: #f8fafc;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.footer-shell {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.75fr 0.75fr 1.3fr;
    gap: 28px;
}

.footer-card {
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45);
    display: grid;
    gap: 14px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 86px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand-text {
    color: #f8fafc;
    line-height: 1.7;
}

.footer-contact {
    display: grid;
    gap: 6px;
    font-weight: 600;
}

.footer-contact a {
    color: #f8fafc;
}

.footer-contact span {
    color: #f8fafc;
    font-weight: 500;
}

.footer-links {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-title {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 6px;
}

.footer-links a {
    color: #f8fafc;
    font-weight: 600;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-neon);
}

.footer-catalog {
    margin-top: 10px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 14px;
    padding: 12px 12px 11px !important;
    background: rgba(15, 23, 42, 0.56);
    display: grid;
    gap: 4px;
}

.footer-catalog:hover {
    border-color: rgba(34, 197, 94, 0.45);
    background: rgba(15, 23, 42, 0.72);
}

.footer-catalog-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    font-weight: 800;
    color: #86efac;
}

.footer-catalog strong {
    color: #f8fafc;
    font-size: 0.9rem;
    line-height: 1.35;
}

.footer-catalog small {
    color: rgba(248, 250, 252, 0.82);
    font-size: 0.78rem;
}

.footer-group {
    gap: 16px;
}

.footer-group-head p {
    color: #f8fafc;
    line-height: 1.6;
}

.group-list {
    display: grid;
    gap: 16px;
}

.group-item {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: rgba(2, 6, 23, 0.35);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.group-item img {
    width: 84px;
    height: 84px;
    object-fit: contain;
    background: #ffffff;
    border-radius: 14px;
    padding: 6px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.3);
}

.group-item strong {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    color: #f8fafc;
    line-height: 1.4;
}

.group-item small {
    display: block;
    color: #f8fafc;
    line-height: 1.4;
    margin-top: 4px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 30px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #f8fafc;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #f8fafc;
    font-weight: 600;
}

.kvkk-modal {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    z-index: 1400;
}

.kvkk-modal.is-open {
    display: grid;
}

.kvkk-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(4px);
}

.kvkk-modal-card {
    position: relative;
    z-index: 1;
    width: min(520px, 90vw);
    background: #0f172a;
    color: #f8fafc;
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 24px 50px rgba(2, 6, 23, 0.45);
    display: grid;
    gap: 10px;
}

.kvkk-modal-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(34, 197, 94, 0.9);
}

.kvkk-modal-card h4 {
    margin: 0;
    font-size: 1.2rem;
}

.kvkk-modal-card p {
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.6;
}

.kvkk-modal-content {
    max-height: 45vh;
    overflow: auto;
    padding-right: 6px;
    display: grid;
    gap: 8px;
}

.kvkk-modal-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--primary-neon);
    color: #0b1220;
    font-weight: 700;
    max-width: 220px;
    border: none;
    cursor: pointer;
}

.kvkk-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: #e2e8f0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .footer-shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-brand,
    .footer-group {
        grid-column: span 2;
    }
}

@media (max-width: 720px) {
    .footer-shell {
        grid-template-columns: 1fr;
    }
    .footer-card {
        padding: 20px;
    }
    .footer-brand,
    .footer-group {
        grid-column: auto;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Lightweight Reveal Effects (Homepage) */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(12px);
    animation: revealUp 0.6s ease forwards;
}

.reveal-stagger > *:nth-child(1) { animation-delay: 0.04s; }
.reveal-stagger > *:nth-child(2) { animation-delay: 0.08s; }
.reveal-stagger > *:nth-child(3) { animation-delay: 0.12s; }
.reveal-stagger > *:nth-child(4) { animation-delay: 0.16s; }
.reveal-stagger > *:nth-child(5) { animation-delay: 0.2s; }
.reveal-stagger > *:nth-child(6) { animation-delay: 0.24s; }
.reveal-stagger > *:nth-child(7) { animation-delay: 0.28s; }
.reveal-stagger > *:nth-child(8) { animation-delay: 0.32s; }
.reveal-stagger > *:nth-child(9) { animation-delay: 0.36s; }
.reveal-stagger > *:nth-child(10) { animation-delay: 0.4s; }
.reveal-stagger > *:nth-child(11) { animation-delay: 0.44s; }
.reveal-stagger > *:nth-child(12) { animation-delay: 0.48s; }
.reveal-stagger > *:nth-child(13) { animation-delay: 0.52s; }
.reveal-stagger > *:nth-child(14) { animation-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
    .reveal-stagger > * {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* Support Widget */
.support-widget {
    --support-accent: #25D366;
    --support-accent-rgb: 37, 211, 102;
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    display: grid;
    gap: 14px;
}

.support-fab {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: none;
    background: var(--support-accent);
    box-shadow: 0 18px 36px rgba(var(--support-accent-rgb), 0.35);
    cursor: pointer;
}

.support-fab-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 6px solid rgba(var(--support-accent-rgb), 0.2);
}

.support-fab-icon {
    font-size: 24px;
    color: #ffffff;
    display: grid;
    place-items: center;
}

.support-fab-icon svg {
    width: 26px;
    height: 26px;
}

.support-fab-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--support-accent);
    font-size: 0.8rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255,255,255,0.8);
}

.support-panel {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 18px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    display: grid;
    gap: 14px;
    width: min(340px, 92vw);
}

.support-panel[hidden],
.support-widget [data-support-view][hidden] {
    display: none !important;
}

.support-panel.chat-active {
    width: min(400px, 94vw);
}

@media (max-width: 640px) {
    .support-widget {
        right: 12px;
        bottom: 12px;
    }

    .support-panel,
    .support-panel.chat-active {
        width: calc(100vw - 24px);
        max-height: 76vh;
        overflow: hidden;
    }

    .support-chat {
        min-height: 220px;
    }

    .support-chat-body {
        max-height: 200px;
    }
}

.support-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
    cursor: pointer;
    color: #0f172a;
}

.support-head {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.support-head-meta {
    display: grid;
    gap: 2px;
}

.support-title {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.5);
}

.support-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
    display: grid;
    place-items: center;
}

.support-avatar img {
    width: 26px;
    height: auto;
}

.support-name {
    font-weight: 800;
    color: #0f172a;
}

.support-whatsapp {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--support-accent);
}

.support-whatsapp svg {
    width: 18px;
    height: 18px;
}

.support-status {
    color: var(--support-accent);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.support-status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--support-accent);
}

.support-message {
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.6;
    background: rgba(15, 23, 42, 0.04);
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.support-form {
    display: grid;
    gap: 10px;
    background: rgba(15, 23, 42, 0.03);
    border-radius: 14px;
    padding: 12px;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.support-form label {
    display: grid;
    gap: 6px;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.7);
    font-size: 0.85rem;
}

.support-form input {
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    padding: 9px 12px;
    font-size: 0.92rem;
    background: #ffffff;
    color: #0f172a;
}

.support-form input:focus {
    outline: none;
    border-color: rgba(var(--support-accent-rgb), 0.7);
    box-shadow: 0 0 0 3px rgba(var(--support-accent-rgb), 0.15);
}

.support-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 16px;
    background: var(--support-accent);
    color: #ffffff;
    font-weight: 800;
    border: none;
    cursor: pointer;
    letter-spacing: 0.06em;
}

.support-actions {
    display: grid;
    gap: 10px;
}

.support-action {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: #ffffff;
    cursor: pointer;
    transition: var(--transition-premium);
}

.support-action strong {
    color: #0f172a;
}

.support-action span {
    color: rgba(15, 23, 42, 0.6);
    font-size: 0.85rem;
}

.support-action i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
    color: var(--support-accent);
    display: grid;
    place-items: center;
    font-style: normal;
}

.support-phone {
    display: grid;
    gap: 12px;
}

.support-phone-card {
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: #ffffff;
    padding: 14px;
    display: grid;
    gap: 6px;
}

.support-phone-card span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.5);
    font-weight: 700;
}

.support-phone-card strong {
    font-size: 1.05rem;
    color: #0f172a;
}

.support-phone-actions {
    display: grid;
    gap: 10px;
}

.support-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: #ffffff;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
}

.support-secondary:hover,
.support-secondary:focus-visible {
    border-color: rgba(var(--support-accent-rgb), 0.5);
    color: var(--support-accent);
}

.support-chat {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    padding: 12px;
    display: grid;
    gap: 12px;
    background: #f8fafc;
    min-height: 260px;
}

.support-chat-body {
    max-height: 220px;
    overflow-y: auto;
    display: grid;
    gap: 8px;
    padding-right: 4px;
}

.support-bubble {
    padding: 9px 12px;
    border-radius: 14px;
    font-size: 0.92rem;
    max-width: 90%;
    line-height: 1.5;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.25);
}

.support-bubble.bot {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #0f172a;
}

.support-bubble.user {
    align-self: flex-end;
    background: rgba(var(--support-accent-rgb), 0.12);
    border: 1px solid rgba(var(--support-accent-rgb), 0.4);
    color: #0f172a;
}

.support-chat-input {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 6px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.support-chat-input input {
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 9px 12px;
    background: #ffffff;
    color: #0f172a;
}

.support-chat-input input:focus {
    outline: none;
    border-color: rgba(var(--support-accent-rgb), 0.6);
    box-shadow: 0 0 0 3px rgba(var(--support-accent-rgb), 0.12);
}

.support-chat-input button {
    border: none;
    border-radius: 12px;
    background: var(--support-accent);
    color: #ffffff;
    font-weight: 800;
    padding: 9px 14px;
    cursor: pointer;
}

.support-chat-input button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 800;
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.support-btn.whatsapp {
    background: var(--support-accent);
    color: #ffffff;
}

.support-btn.live {
    background: var(--support-accent);
    color: #ffffff;
}

.support-btn.phone {
    background: #ffffff;
    color: #0f172a;
}

.support-action:hover,
.support-action:focus-visible {
    border-color: rgba(var(--support-accent-rgb), 0.6);
    box-shadow: 0 10px 26px rgba(var(--support-accent-rgb), 0.15);
    transform: translateY(-1px);
}

.support-primary:hover,
.support-primary:focus-visible {
    box-shadow: 0 10px 22px rgba(var(--support-accent-rgb), 0.25);
}

.support-fab:hover,
.support-fab:focus-visible {
    box-shadow: 0 22px 44px rgba(var(--support-accent-rgb), 0.35);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 110px;
    width: min(760px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    padding: 12px 14px 12px 16px;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 99999;
    pointer-events: auto;
}

@media (max-width: 640px) {
    .support-widget {
        right: 16px;
        bottom: 16px;
    }
    .cookie-banner {
        left: 50%;
        transform: translateX(-50%);
        bottom: 110px;
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
        flex-wrap: wrap;
        align-items: stretch;
    }
}

.cookie-text {
    flex: 1 1 auto;
    color: #0f172a;
    font-size: 0.95rem;
    line-height: 1.45;
}

.cookie-actions {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin: 0;
}

.cookie-accept {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 12px;
    padding: 9px 15px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 800;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

/* Faaliyet Alanlari */
.activities {
    padding: 60px 5vw 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    position: relative;
}

.activities::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.activities-board {
    max-width: 1400px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 32px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.activities-board::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(520px 260px at 0% 0%, rgba(34, 197, 94, 0.08), transparent 60%),
        radial-gradient(520px 260px at 100% 0%, rgba(37, 99, 235, 0.08), transparent 60%);
    pointer-events: none;
}

.activities-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.activities-left {
    display: grid;
    gap: 22px;
}

.activities-visual {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.04);
    height: 280px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.activities-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.activities-kicker {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary-neon);
    margin-bottom: 12px;
}

.activities-title {
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.activities-text {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.activities-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-solid,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-solid {
    background: var(--primary-neon);
    color: #ffffff;
    box-shadow: 0 14px 26px rgba(34, 197, 94, 0.25);
}

.btn-ghost {
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #0f172a;
    background: #ffffff;
}

.btn-solid:hover,
.btn-ghost:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.activities-scroll {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-bottom: 10px;
}

.activities-scroll::-webkit-scrollbar {
    height: 8px;
}

.activities-scroll::-webkit-scrollbar-track {
    background: #eef2f7;
    border-radius: 999px;
}

.activities-scroll::-webkit-scrollbar-thumb {
    background: rgba(34, 197, 94, 0.5);
    border-radius: 999px;
}

.activities-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: activities-marquee 38s linear infinite;
}

.activities-scroll:hover .activities-track {
    animation-play-state: paused;
}

.activities-row {
    display: flex;
    gap: 16px;
    min-width: max-content;
}

.activity-app {
    --accent: #22c55e;
    --accent-soft: rgba(34, 197, 94, 0.12);
    --accent-strong: rgba(34, 197, 94, 0.35);
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    min-width: 260px;
    max-width: 300px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.activity-app summary {
    list-style: none;
    padding: 18px 18px 16px 22px;
    cursor: pointer;
    position: relative;
}

.activity-app summary::-webkit-details-marker {
    display: none;
}

.activity-app::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, var(--accent-soft), transparent 70%);
    opacity: 0.5;
}

.activity-app > * {
    position: relative;
    z-index: 1;
}

.activity-app:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 23, 42, 0.16);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}

.activity-app[open] {
    box-shadow: 0 24px 52px rgba(15, 23, 42, 0.16);
    border-color: var(--accent-strong);
}

.activity-app summary::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 4px;
    border-radius: 6px;
    background: var(--accent);
}

.activity-app summary::after {
    content: "›";
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 1.4rem;
    color: #94a3b8;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

.activity-app[open] summary::after {
    transform: rotate(90deg);
}

.app-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.app-code {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.app-text {
    display: grid;
    gap: 2px;
}

.app-title {
    font-weight: 800;
    color: #0f172a;
    font-size: 1rem;
}

.app-sub {
    font-size: 0.82rem;
    color: #64748b;
}

.app-status {
    font-size: 0.72rem;
    font-weight: 700;
    color: #0f172a;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 6px 10px;
    border-radius: 999px;
}

.app-body {
    padding: 0 16px 16px 22px;
    display: grid;
    gap: 10px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    background: #f8fafc;
}

.app-body p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    margin-top: 12px;
}

.app-link {
    justify-self: start;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    font-weight: 700;
    color: #0f172a;
}

.activity-app.accent-blue {
    --accent: #2563eb;
    --accent-soft: rgba(37, 99, 235, 0.12);
    --accent-strong: rgba(37, 99, 235, 0.35);
}

.activity-app.accent-orange {
    --accent: #f97316;
    --accent-soft: rgba(249, 115, 22, 0.12);
    --accent-strong: rgba(249, 115, 22, 0.35);
}

/* Services Strip */
.services-strip {
    padding: 70px 5vw 90px;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.services-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.services-shell {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 22px;
    position: relative;
    z-index: 1;
}

.services-head {
    display: grid;
    gap: 10px;
}

.services-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.services-brand img {
    width: 110px;
    height: auto;
}

.section-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.section-logo img {
    width: 95px;
    height: auto;
}

.projects-kicker,
.partners-kicker,
.discovery-kicker {
    display: inline-block;
}

.services-kicker {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    color: #0f172a;
}

.services-title {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
}

.services-text {
    color: #475569;
    line-height: 1.7;
}

.services-scroll {
    overflow: visible;
    padding-bottom: 0;
    scroll-behavior: auto;
}

.services-scroll::-webkit-scrollbar {
    height: 0;
}

.services-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.services-scroll::-webkit-scrollbar-thumb {
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.service-card {
    --accent: #22c55e;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-top: 4px solid var(--accent);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    display: block;
    text-align: left;
    position: relative;
    min-height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card-body {
    padding: 18px 18px 16px;
    display: grid;
    gap: 10px;
    min-height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 23, 42, 0.16);
    box-shadow: 0 18px 28px rgba(15, 23, 42, 0.12);
}

.service-card:hover .service-tag {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.98);
    color: #0f172a;
}

.service-card h3 {
    font-size: 1.04rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
}

.service-card p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.58;
    margin: 0 0 6px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    font-weight: 800;
    border: 1px solid rgba(15, 23, 42, 0.14);
    color: #0f172a;
    background: #ffffff;
    width: fit-content;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    font-weight: 800;
    color: #0f172a;
}

.service-link::after {
    content: "→";
    color: #16a34a;
}

.service-card.accent-green {
    --accent: #22c55e;
    --accent-soft: rgba(34, 197, 94, 0.12);
}

.service-card.accent-blue {
    --accent: #2563eb;
    --accent-soft: rgba(37, 99, 235, 0.12);
}

.service-card.accent-orange {
    --accent: #22c55e;
    --accent-soft: rgba(34, 197, 94, 0.12);
}

@media (max-width: 640px) {
    .services-strip {
        padding: 56px 6vw 72px;
    }
    .services-brand img {
        width: 90px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        margin-top: 18px;
        gap: 12px;
    }
    .service-card-body {
        padding: 15px 14px 14px;
    }
}

/* Free Discovery CTA */
.discovery-cta {
    padding: 70px 5vw 90px;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.discovery-shell {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    border-radius: 28px;
    overflow: hidden;
    background: #0b1220;
    color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    position: relative;
}

.discovery-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(420px 220px at 0% 0%, rgba(34, 197, 94, 0.18), transparent 60%),
        radial-gradient(420px 220px at 100% 0%, rgba(37, 99, 235, 0.18), transparent 60%);
    pointer-events: none;
}

.discovery-content {
    padding: 34px 38px;
    position: relative;
    z-index: 1;
}

.discovery-kicker {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-neon);
    margin-bottom: 14px;
}

.discovery-content h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.discovery-content p {
    color: #cbd5f5;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 22px;
}

.discovery-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.discovery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 12px;
    background: var(--primary-neon);
    color: #0f172a;
    font-weight: 800;
    box-shadow: 0 18px 30px rgba(34, 197, 94, 0.3);
}

.discovery-note {
    color: #94a3b8;
    font-weight: 600;
}

.discovery-media {
    position: relative;
    min-height: 240px;
}

.discovery-image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(34, 197, 94, 0.22), rgba(37, 99, 235, 0.22)),
        url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}

.discovery-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.55));
}

@media (max-width: 1100px) {
    .activities-hero {
        grid-template-columns: 1fr;
    }
    .discovery-shell {
        grid-template-columns: 1fr;
    }
    .discovery-media {
        min-height: 220px;
    }
}

@media (max-width: 640px) {
    .activities {
        padding: 90px 6vw;
    }
    .activities-board {
        padding: 22px;
    }
    .activities-visual {
        height: 220px;
    }
    .activities-scroll {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .activities-track {
        animation: none;
    }
    .activities-row[aria-hidden="true"] {
        display: none;
    }
    .activity-app {
        min-width: 85%;
        scroll-snap-align: start;
    }
    .discovery-cta {
        padding: 70px 6vw 90px;
    }
    .discovery-content {
        padding: 28px;
    }
}

/* Projects Section */
.projects {
    padding: 70px 5vw 80px;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.projects-shell {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 36px;
    align-items: center;
}

.projects-left {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    padding: 28px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.projects-kicker {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    color: #0f172a;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 14px;
}

.projects-kicker::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 999px;
}

.projects-title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.projects-text {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.projects-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.projects-right {
    position: relative;
}

.projects-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.project-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
}

.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.project-overlay {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    backdrop-filter: blur(8px);
    display: grid;
    gap: 6px;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(37, 99, 235, 0.9));
    color: #0f172a;
}

.project-title {
    font-weight: 800;
    font-size: 1rem;
    color: #ffffff;
}

.project-sub {
    color: #cbd5f5;
    font-size: 0.85rem;
}

.project-card:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 23, 42, 0.2);
    box-shadow: 0 22px 38px rgba(15, 23, 42, 0.12);
}

.project-card:hover img {
    transform: scale(1.04);
}

@media (max-width: 1100px) {
    .projects-shell {
        grid-template-columns: 1fr;
    }
    .projects-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .project-card img {
        height: 220px;
    }
}

@media (max-width: 640px) {
    .projects {
        padding: 70px 6vw 80px;
    }
    .projects-left {
        padding: 22px;
    }
    .projects-cards {
        grid-template-columns: 1fr;
    }
    .project-card img {
        height: 220px;
    }
    .faq-hours-grid {
        grid-template-columns: 1fr;
    }
}

/* Projects Page */
.projects-page {
    padding: 90px 6vw 110px;
    background: #ffffff;
}

.projects-page-shell {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
}

.projects-page-hero {
    background: linear-gradient(145deg, rgba(26, 163, 111, 0.08), rgba(31, 103, 168, 0.08));
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 34px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.projects-page-title {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 800;
    color: #0f172a;
    margin: 12px 0 10px;
}

.projects-page-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    max-width: 800px;
}

.projects-page-grid {
    display: grid;
    gap: 28px;
}

.projects-subtitle {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin: 4px 0 8px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.project-card--page {
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.project-card--page .project-overlay {
    position: static;
    margin: 0;
    padding: 16px 18px 18px;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
    backdrop-filter: none;
}

.project-card--page img {
    height: 240px;
}

.project-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.project-empty {
    padding: 18px 22px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px dashed rgba(15, 23, 42, 0.12);
    color: #64748b;
}

.project-card--page .project-tag {
    background: linear-gradient(135deg, rgba(26, 163, 111, 0.95), rgba(31, 103, 168, 0.92));
    color: #ffffff;
}

.project-card--page .project-title {
    color: #0f172a;
    font-size: 1.05rem;
}

.project-card--page .project-sub {
    color: #64748b;
    font-size: 0.85rem;
}

.project-card--page:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.12);
    border-color: rgba(26, 163, 111, 0.3);
}

.project-card--page:hover img {
    transform: scale(1.02);
}

@media (max-width: 1100px) {
    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .projects-page {
        padding: 80px 6vw 90px;
    }
    .projects-page-hero {
        padding: 24px;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Solution Partners Section */
.partners {
    padding: 70px 5vw 80px;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: "";
    position: absolute;
    inset: -10% 0 0 0;
    background: url('../assets/images/logo.png') center/60% no-repeat;
    opacity: 0.04;
    pointer-events: none;
}

.partners-shell {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: start;
}

.partners-left {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    padding: 26px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.partners-kicker {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    color: #0f172a;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.partners-kicker::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 54px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 999px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.partner-card {
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    background: #ffffff;
    height: 88px;
    padding: 10px 12px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.partner-card img {
    width: 100%;
    height: 48px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.partner-name-fallback {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    line-height: 1.35;
}

.partner-card-empty {
    grid-column: 1 / -1;
    min-height: 110px;
    display: grid;
    gap: 4px;
    text-align: center;
    padding: 16px;
}

.partner-card-empty strong {
    color: #0f172a;
    font-size: 0.95rem;
}

.partner-card-empty small {
    color: #64748b;
    font-size: 0.82rem;
}

.partner-card::before {
    content: "";
    position: absolute;
    right: -30px;
    top: -30px;
    width: 70px;
    height: 70px;
    background: rgba(34, 197, 94, 0.12);
    transform: rotate(15deg);
}

.partner-card::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 12px;
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.7);
    opacity: 0.6;
}

.partner-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.partner-card:hover img {
    transform: scale(1.03);
}

.partner-card:active {
    transform: translateY(-1px) scale(0.99);
}

.partner-card:focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.5);
    outline-offset: 3px;
}

.partners-right {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    padding: 26px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.partners-right h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.partners-right p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.partners-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.partners-page {
    padding: 160px 5vw 110px;
    background: #ffffff;
}

.partners-page-hero {
    max-width: 1200px;
    margin: 0 auto 36px;
}

.partners-page .partners-shell {
    margin-top: 24px;
    align-items: stretch;
}

.partners-page .partners-left,
.partners-page .partners-right {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 26px 52px rgba(15, 23, 42, 0.1);
}

.partners-page .partners-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.partners-page .partner-card {
    height: 96px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.partners-page .partner-card img {
    height: 46px;
}

.partners-page .partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.14);
}

.partners-right-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 16px 0 14px;
}

.partners-highlight {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    text-align: center;
}

.partners-highlight span {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-neon);
}

.partners-highlight small {
    color: #64748b;
    font-weight: 600;
    font-size: 0.85rem;
}

.partners-right-list {
    display: grid;
    gap: 10px;
    margin: 10px 0 18px;
    padding: 0;
    list-style: none;
    color: #475569;
    line-height: 1.7;
}

.partners-right-list li {
    position: relative;
    padding-left: 18px;
}

.partners-right-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-blue);
    position: absolute;
    left: 0;
    top: 0.6em;
}

@media (max-width: 1024px) {
    .partners-right-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .partners-right-highlights {
        grid-template-columns: 1fr;
    }
}

.partners-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.partners-hero-copy h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #0f172a;
    margin: 12px 0 10px;
}

.partners-hero-copy p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.02rem;
    max-width: 640px;
}

.partners-hero-media {
    display: grid;
    gap: 14px;
}

.partners-hero-video {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
    background: #0b1220;
}

.partners-hero-video video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.partners-hero-image {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.partners-hero-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.partners-hero-card {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.partners-hero-card strong {
    color: var(--secondary-blue);
    display: block;
    margin-bottom: 6px;
}

.partners-hero-card p {
    color: #64748b;
    line-height: 1.6;
}

.viessmann-spotlight {
    margin-top: 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

@media (max-width: 1024px) {
    .partners-hero-grid {
        grid-template-columns: 1fr;
    }
    .partners-hero-video video {
        height: 240px;
    }
    .partners-hero-image img {
        height: 240px;
    }
}

.viessmann-spotlight img {
    height: 36px;
    width: auto;
}

.viessmann-spotlight p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 1200px) {
    .partners-page .partners-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.digital-partner {
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
    display: grid;
    gap: 10px;
}

.digital-partner-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--primary-neon);
    font-weight: 800;
    font-size: 0.8rem;
}

.digital-partner-logo img {
    height: 38px;
    width: auto;
    display: block;
}

.digital-partner p {
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .partners-page {
        padding: 130px 6vw 90px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 70px 5vw 80px;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.faq-shell {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
    align-items: stretch;
}

.faq-kicker {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    color: #0f172a;
}

.faq-title {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
}

.faq-text {
    color: #475569;
    line-height: 1.7;
}

.faq-aside {
    display: grid;
    gap: 16px;
}

.faq-aside-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 360px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
}

.faq-aside-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-aside-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.75));
}

.faq-aside-card {
    background: #0f172a;
    color: #ffffff;
    border-radius: 24px;
    padding: 24px;
    display: grid;
    gap: 14px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.25);
    position: relative;
    overflow: hidden;
}

.faq-aside-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(260px 180px at 0% 0%, rgba(34, 197, 94, 0.22), transparent 60%),
        radial-gradient(260px 180px at 100% 0%, rgba(37, 99, 235, 0.22), transparent 60%);
    pointer-events: none;
}

.faq-aside-card p {
    color: #e2e8f0;
    line-height: 1.6;
    z-index: 1;
}

.faq-aside-card .section-logo span {
    color: #ffffff;
}

.faq-aside-card .faq-kicker {
    color: #ffffff;
}

.faq-phone {
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 800;
}

.faq-hours {
    z-index: 1;
    display: grid;
    gap: 6px;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.faq-hours-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.faq-hour-card {
    border-radius: 14px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(37, 99, 235, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    gap: 4px;
}

.faq-hour-card span {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #cbd5f5;
}

.faq-content {
    display: grid;
    gap: 18px;
}

.faq-head {
    max-width: 760px;
    display: grid;
    gap: 10px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #ffffff;
    padding: 18px 20px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 800;
    color: #0f172a;
    list-style: none;
    position: relative;
    padding-right: 26px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-number {
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.12);
    color: #16a34a;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 900;
    color: var(--secondary-blue);
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    margin-top: 12px;
    color: #64748b;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 70px 5vw 90px;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.contact-shell {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: stretch;
}

.contact-info {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    padding: 28px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 12px;
}

.contact-kicker {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
    color: #0f172a;
}

.contact-title {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
}

.contact-text {
    color: #475569;
    line-height: 1.7;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.contact-card {
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    background: #f8fafc;
    padding: 14px;
    display: grid;
    gap: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.contact-card span {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    color: #64748b;
}

.contact-card strong {
    color: #0f172a;
    font-size: 1rem;
}

.contact-card small {
    color: #94a3b8;
}

.contact-form {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    padding: 28px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    color: #0f172a;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 12px 14px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #f8fafc;
    color: #0f172a;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    background: #ffffff;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-submit {
    border: none;
    border-radius: 14px;
    padding: 14px 18px;
    background: var(--primary-neon);
    color: #0f172a;
    font-weight: 800;
    cursor: pointer;
}

.contact-note {
    color: #64748b;
    font-size: 0.85rem;
}

.contact-page .contact-request .contact-note {
    color: #16a34a;
    font-weight: 600;
}

.contact-page .page-title {
    color: #0f172a;
    margin-bottom: 12px;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
}

.contact-page.page-container {
    max-width: 1400px;
    padding: 0 clamp(16px, 4vw, 48px);
}

.contact-hero {
    display: grid;
    gap: 8px;
    margin-bottom: 28px;
}

.contact-lead {
    color: #475569;
    max-width: 720px;
    line-height: 1.7;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.contact-primary {
    background: #0f172a;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
}

.contact-secondary {
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: #0f172a;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    background: #ffffff;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.contact-locations {
    display: grid;
    gap: 22px;
}

.contact-location-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 14px;
}

.contact-location-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    flex-wrap: wrap;
}

.contact-location-head span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 800;
    color: #94a3b8;
}

.contact-location-head h2 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-top: 6px;
}

.contact-location-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-map-link {
    color: #1d4ed8;
    font-weight: 700;
}

.contact-location-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 16px;
    align-items: start;
}

.contact-location-info {
    display: grid;
    gap: 8px;
    color: #475569;
}

.contact-location-info a {
    color: #0f172a;
    font-weight: 600;
}

.contact-location-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-info-block {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 12px 14px;
    background: #f8fafc;
    display: grid;
    gap: 6px;
    color: #475569;
}

.contact-info-block span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 800;
    color: #94a3b8;
}

.contact-info-block a,
.contact-info-block p {
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.contact-location-map iframe {
    width: 100%;
    min-height: 220px;
    aspect-ratio: 4 / 3;
    border: 0;
    border-radius: 16px;
    background: #e2e8f0;
}

.contact-sidebar {
    display: grid;
    gap: 18px;
}

.contact-sidebar .contact-form {
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.contact-form-head {
    display: grid;
    gap: 6px;
    margin-bottom: 4px;
}

.contact-form-head span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 800;
    color: #94a3b8;
}

.contact-form-head h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin: 0;
}

.contact-form-head p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.contact-form h3,
.contact-social h3 {
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #64748b;
}

.contact-consent {
    display: grid;
    gap: 10px;
    font-size: 0.85rem;
    color: #64748b;
    align-items: start;
}

.contact-consent input {
    margin-top: 4px;
}

.contact-social {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 18px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 12px;
}

.contact-social-links {
    display: grid;
    gap: 8px;
}

.contact-social-links a {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    font-weight: 600;
    color: #0f172a;
}

/* Contact Page - Corporate Layout */
.contact-page .contact-hero {
    margin-bottom: 28px;
    padding: 36px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #111827 60%, #0b1324 100%);
    border: 1px solid rgba(34, 197, 94, 0.22);
    box-shadow: 0 24px 48px rgba(2, 6, 23, 0.35);
}

.contact-page .contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(34, 197, 94, 0.22), transparent 55%),
        radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.22), transparent 55%);
    pointer-events: none;
}

.contact-page .contact-hero-text,
.contact-page .contact-hero-cards {
    position: relative;
    z-index: 1;
}

.contact-page .contact-hero-text {
    max-width: 760px;
}

.contact-page .contact-hero-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.contact-page .contact-hero-cards .cool-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.25);
    box-shadow: 0 16px 32px rgba(2, 6, 23, 0.35);
}

.contact-page .contact-hero-cards .cool-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: #f8fafc;
}

.contact-page .contact-hero-cards .cool-card p {
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-page .contact-hero-cards .cool-card span {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.75);
}

.contact-page .contact-hero .page-title,
.contact-page .contact-hero .contact-lead,
.contact-page .contact-hero .contact-kicker {
    color: #f8fafc;
}

.contact-page .contact-hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.contact-page .contact-hero-meta span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
    color: #94a3b8;
}

.contact-page .contact-hero-meta a {
    font-weight: 700;
    color: #0f172a;
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

.contact-page .contact-main {
    display: grid;
    gap: 20px;
}

.contact-page .contact-branch-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-page .contact-branch-grid-2 .contact-branch:last-child {
    grid-column: 1 / -1;
}

.contact-page .contact-branch {
    border-radius: 18px;
    padding: 18px;
    display: grid;
    gap: 12px;
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(37, 99, 235, 0.08)),
        rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(6px);
}

.contact-page .contact-branch-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding-bottom: 12px;
}

.contact-page .contact-branch-header span {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.55);
}

.contact-page .contact-branch-header h2 {
    font-size: 1.35rem;
    color: #0f172a;
    margin-top: 6px;
}

.contact-page .contact-branch-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-page .contact-branch-actions a {
    color: #0f172a;
    font-weight: 600;
    border-bottom: 1px solid rgba(15, 23, 42, 0.2);
}

.contact-page .contact-branch-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    align-items: start;
}

.contact-page .contact-branch-grid-2 .contact-branch {
    padding: 20px;
}

.contact-page .contact-branch-grid-2 .contact-branch-grid {
    grid-template-columns: 1fr;
}

.contact-page .contact-branch-grid-2 .contact-branch:last-child .contact-branch-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
}

.contact-page .contact-branch-grid-2 .contact-info-row {
    grid-template-columns: 1fr;
    gap: 6px;
}

.contact-page .contact-branch-grid-2 .contact-branch:last-child .contact-info-row {
    grid-template-columns: 140px 1fr;
    gap: 12px;
}

.contact-page .contact-branch-grid-2 .contact-info-row span {
    font-size: 0.68rem;
}

.contact-page .contact-branch-grid-2 .contact-map iframe {
    min-height: 210px;
    aspect-ratio: 16 / 9;
}

.contact-page .contact-branch-info {
    display: grid;
    gap: 10px;
}

.contact-page .contact-info-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.35);
    align-items: start;
}

.contact-page .contact-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-page .contact-info-row span {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.5);
    line-height: 1.4;
}

.contact-page .contact-info-row div {
    color: #0f172a;
    font-weight: 600;
    display: grid;
    gap: 4px;
    line-height: 1.5;
}

.contact-page .contact-info-row a {
    color: #0f172a;
    font-weight: 600;
}

.contact-page .contact-map iframe {
    width: 100%;
    min-height: 240px;
    aspect-ratio: 16 / 10;
    border: 0;
    border-radius: 12px;
    background: #f1f5f9;
}

.contact-page .contact-request {
    margin-top: 30px;
    padding: 28px;
    border-radius: 20px;
}

.contact-page .contact-request-head {
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
    max-width: 720px;
}

.contact-page .contact-request-head span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(34, 197, 94, 0.75);
}

.contact-page .contact-request-head h2 {
    font-size: 1.6rem;
    margin: 0;
    color: #f8fafc;
}

.contact-page .contact-request-head p {
    margin: 0;
    color: rgba(226, 232, 240, 0.8);
}

.contact-page .contact-request-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 22px;
    align-items: stretch;
}

.contact-page .contact-form-vertical .form-row {
    grid-template-columns: 1fr;
}

.contact-page .contact-support {
    display: grid;
    grid-template-rows: 1fr auto;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.contact-page .contact-support-media {
    min-height: 240px;
    background-size: cover;
    background-position: center;
}

.contact-page .contact-support-body {
    padding: 18px;
    display: grid;
    gap: 8px;
    color: #e2e8f0;
}

.contact-page .contact-support-body span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(34, 197, 94, 0.8);
}

.contact-page .contact-support-body h3 {
    margin: 0;
    font-size: 1.15rem;
}

.contact-page .contact-support-body a {
    font-weight: 700;
    color: var(--primary-neon);
}

.contact-page .contact-form {
    display: grid;
    gap: 14px;
}

.contact-page .contact-request .contact-form label {
    display: grid;
    gap: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(34, 197, 94, 0.85);
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 12px 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #ffffff;
    color: #0f172a;
}

.contact-page .contact-request .contact-form input,
.contact-page .contact-request .contact-form select,
.contact-page .contact-request .contact-form textarea {
    background: rgba(2, 6, 23, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.45);
    color: #f8fafc;
    border-radius: 14px;
    padding: 14px 16px;
}

.contact-page .contact-request .contact-form input::placeholder,
.contact-page .contact-request .contact-form textarea::placeholder {
    color: rgba(226, 232, 240, 0.6);
}

.contact-page .contact-request .contact-form input:focus,
.contact-page .contact-request .contact-form select:focus,
.contact-page .contact-request .contact-form textarea:focus {
    outline: none;
    border-color: rgba(34, 197, 94, 0.9);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
    background: rgba(2, 6, 23, 0.85);
}

.contact-page .contact-request .contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-page .contact-submit {
    border: none;
    border-radius: 12px;
    padding: 13px 18px;
    background: var(--primary-neon);
    color: #0b1220;
    font-weight: 700;
    cursor: pointer;
}

.contact-page .contact-request .contact-submit {
    min-width: 200px;
}

.contact-page .contact-request .contact-consent {
    font-size: 0.92rem;
    color: #f8fafc;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.6;
}

.contact-page .contact-request .contact-consent {
    display: grid;
    gap: 8px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 12px;
    padding: 12px 14px;
}

.contact-page .contact-request .contact-consent span {
    color: #f8fafc;
    font-weight: 700;
    text-transform: none;
}

.contact-page .kvkk-open {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: var(--primary-neon);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
}

.contact-page .contact-legal {
    background: rgba(2, 6, 23, 0.55);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 14px;
    padding: 16px;
    display: grid;
    gap: 10px;
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.88rem;
    line-height: 1.7;
}

.contact-page .contact-legal h4 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: #f8fafc;
}

.contact-page .contact-legal a {
    color: var(--primary-neon);
    font-weight: 700;
}

.contact-page .contact-success,
.contact-page .contact-error {
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.contact-page .contact-success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.45);
    color: #f0fdf4;
}

.contact-page .contact-error {
    background: rgba(248, 113, 113, 0.15);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fee2e2;
}

.contact-page .contact-error ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.contact-page .contact-request-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-page .contact-social-bar {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(226, 232, 240, 0.2);
    padding-top: 16px;
}

.contact-page .contact-social-bar span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 800;
    color: rgba(226, 232, 240, 0.6);
}

.contact-page .contact-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-page .contact-social-links a {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(15, 23, 42, 0.55);
    color: #e2e8f0;
    font-weight: 600;
}

.contact-page .cool-card {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.95)),
        radial-gradient(circle at 12% 12%, rgba(34, 197, 94, 0.2), transparent 55%),
        radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.2), transparent 55%);
    border: 1px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 22px 44px rgba(2, 6, 23, 0.45);
    color: #e2e8f0;
}

.contact-page .contact-request .contact-submit {
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.45);
}

.contact-page .contact-social-links a {
    border-color: rgba(34, 197, 94, 0.45);
    color: #e2e8f0;
}

.contact-page .cool-card h2,
.contact-page .cool-card h3,
.contact-page .cool-card p,
.contact-page .cool-card a,
.contact-page .cool-card dd,
.contact-page .cool-card div {
    color: #e2e8f0;
}

.contact-page .cool-card .contact-branch-header span,
.contact-page .cool-card .contact-info-row span {
    color: rgba(226, 232, 240, 0.6);
}

.contact-page .cool-card .contact-branch-header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-page .cool-card .contact-info-row {
    border-bottom: 1px dashed rgba(148, 163, 184, 0.2);
}

.contact-page .cool-card .contact-branch-actions a {
    color: #22c55e;
    border-bottom-color: rgba(34, 197, 94, 0.55);
}

.contact-page .cool-card .contact-map iframe {
    border-radius: 14px;
    box-shadow: 0 14px 32px rgba(2, 6, 23, 0.35);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.contact-page .cool-card .contact-form input,
.contact-page .cool-card .contact-form select,
.contact-page .cool-card .contact-form textarea {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #f8fafc;
}

.contact-page .cool-card .contact-form input::placeholder,
.contact-page .cool-card .contact-form textarea::placeholder {
    color: rgba(226, 232, 240, 0.6);
}

.contact-page .cool-card .contact-form select option {
    color: #0f172a;
}

.contact-page .cool-card .contact-submit {
    background: var(--primary-neon);
    color: #0b1220;
}

.contact-page .cool-card .contact-social-links a {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #e2e8f0;
}

.contact-page .cool-card .contact-consent span,
.contact-page .cool-card .contact-note {
    color: rgba(226, 232, 240, 0.75);
}

@media (max-width: 1100px) {
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-page .contact-branch-grid {
        grid-template-columns: 1fr;
    }
    .contact-page .contact-branch-grid-2 {
        grid-template-columns: 1fr;
    }
    .contact-page .contact-info-row {
        grid-template-columns: 1fr;
    }
    .contact-page .contact-hero-cards {
        grid-template-columns: 1fr;
    }
    .contact-page .contact-request {
        margin-top: 22px;
    }
    .contact-page .contact-request-grid {
        grid-template-columns: 1fr;
    }
}

.contact-location-compact .contact-location-map iframe {
    min-height: 200px;
}

@media (max-width: 1100px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .contact-location-body {
        grid-template-columns: 1fr;
    }
    .contact-location-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .faq-shell {
        grid-template-columns: 1fr;
    }
    .contact-shell {
        grid-template-columns: 1fr;
    }
    .contact-cards {
        grid-template-columns: 1fr 1fr;
    }
    .contact-form {
        transform: translateY(0);
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .partners-shell {
        grid-template-columns: 1fr;
    }
    .partners-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .partners {
        padding: 70px 6vw 80px;
    }
    .partners-left,
    .partners-right {
        padding: 22px;
    }
    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Unified Soft Box System */
:where(
    .glass-panel,
    .mega-card,
    .about-card,
    .about-hero-card,
    .about-why-card,
    .about-reason-item,
    .about-stat,
    .mission-card,
    .about-value-card,
    .about-target-card,
    .experience-hero-card,
    .services-hero,
    .services-hero-card,
    .service-feature-card,
    .service-contact-card,
    .service-contact-pill,
    .service-panel-card,
    .service-panel-media,
    .service-special,
    .service-special-box,
    .climate-panel,
    .climate-mini-card,
    .nextgen-metric-card,
    .renewable-card,
    .renewable-mini-card,
    .calc-card,
    .calc-modal-card,
    .blog-panel,
    .blog-card,
    .blog-featured-card,
    .blog-headline-card,
    .footer-card,
    .support-panel,
    .support-phone-card,
    .service-card,
    .project-card,
    .project-card--page,
    .partner-card,
    .partners-highlight,
    .partners-left,
    .partners-right,
    .partners-hero-card,
    .faq-aside-card,
    .faq-hour-card,
    .faq-item,
    .contact-info,
    .contact-form,
    .contact-card,
    .contact-location-card,
    .contact-page .cool-card,
    .projects-page-hero,
    .viessmann-spotlight,
    .services-hero-image,
    .service-hero-image
) {
    box-shadow: var(--soft-box-shadow);
    transition: var(--soft-box-transition);
}

:where(
    .services-hero,
    .faq-aside-card,
    .support-panel,
    .contact-page .cool-card
) {
    box-shadow: var(--soft-box-shadow-dark);
}

:where(
    .service-card,
    .project-card,
    .project-card--page,
    .partner-card,
    .faq-item,
    .contact-card,
    .blog-card,
    .blog-headline-card,
    .about-why-card,
    .about-value-card,
    .mission-card,
    .about-target-card,
    .service-feature-card,
    .service-panel-card,
    .service-gallery-item,
    .service-contact-pill,
    .climate-mini-card,
    .renewable-card,
    .nextgen-metric-card,
    .contact-location-card,
    .support-phone-card
):hover,
:where(
    .service-card,
    .project-card,
    .project-card--page,
    .partner-card,
    .faq-item,
    .contact-card,
    .blog-card,
    .blog-headline-card,
    .about-why-card,
    .about-value-card,
    .mission-card,
    .about-target-card,
    .service-feature-card,
    .service-panel-card,
    .service-gallery-item,
    .service-contact-pill,
    .climate-mini-card,
    .renewable-card,
    .nextgen-metric-card,
    .contact-location-card,
    .support-phone-card
):focus-visible {
    box-shadow: var(--soft-box-shadow-hover);
    transform: translateY(-4px);
}

:where(
    .services-hero,
    .faq-aside-card,
    .support-panel,
    .contact-page .cool-card
):hover,
:where(
    .services-hero,
    .faq-aside-card,
    .support-panel,
    .contact-page .cool-card
):focus-visible {
    box-shadow: var(--soft-box-shadow-dark-hover);
}

@keyframes activities-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .activities-track {
        animation: none;
    }
}
