/* =========================================================
   med:clinic — Front-end Stylesheet
   White / Gray clean medical-aesthetic theme
   ========================================================= */

:root {
    --white: #ffffff;
    --off-white: #fafbfb;
    --light-gray: #f3f4f6;
    --mid-gray: #e6e8eb;
    --border: #e6e7ea;
    --text: #1d1f23;
    --text-soft: #5b6068;
    --text-muted: #9aa0a8;
    --gray-btn: #9aa0a6;
    --gray-btn-dark: #7c8187;
    --dark: #16181b;

    --container: 1320px;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 10px 30px rgba(20, 20, 22, .06);
    --shadow-sm: 0 4px 14px rgba(20, 20, 22, .05);
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --header-height: 84px;

    --font: 'Poppins', 'Segoe UI', Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.search-open {
    overflow: hidden;
}

body.nav-open .search-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.icon {
    width: 1em;
    height: 1em;
    fill: none;
    display: inline-block;
    vertical-align: middle;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 32px;
}

.site-logo {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--text);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.site-logo__img {
    display: block;
    height: 42px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.site-logo span {
    font-weight: 300;
    color: var(--text-soft);
}

/* Main nav */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 38px;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    padding: 30px 0;
    transition: color var(--transition);
    letter-spacing: .2px;
}

.main-nav > ul > li:hover > a,
.main-nav > ul > li.active > a {
    color: var(--gray-btn-dark);
}

.main-nav .icon-chevron {
    width: 13px;
    height: 13px;
    transition: transform var(--transition);
    color: var(--text-muted);
}

.main-nav > ul > li:hover .icon-chevron {
    transform: rotate(180deg);
}

/* Dropdown submenu */
.submenu {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 220px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.main-nav > ul > li:hover .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.submenu li a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-soft);
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.submenu li a:hover {
    background: var(--light-gray);
    color: var(--text);
}

.submenu__heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    color: var(--text);
    padding: 8px 14px 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--text);
}

/* Header actions: search + language */
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text);
    transition: background var(--transition), color var(--transition);
}

.header-icon-btn:hover {
    background: var(--light-gray);
    color: var(--gray-btn-dark);
}

.header-icon-btn .icon { width: 19px; height: 19px; }

/* Language switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: border-color var(--transition), color var(--transition);
}

.lang-switch:hover {
    border-color: var(--gray-btn-dark);
    color: var(--gray-btn-dark);
}

.lang-switch .icon { width: 16px; height: 16px; color: var(--text-muted); }

/* Search overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.97);
    z-index: 1400;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    pointer-events: none;
}

.search-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-overlay__box {
    width: 100%;
    max-width: 640px;
    padding: 0 24px;
    text-align: center;
}

.search-overlay input {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--text);
    background: transparent;
    font-family: var(--font);
    font-size: 28px;
    font-weight: 300;
    padding: 12px 4px;
    text-align: center;
    color: var(--text);
}

.search-overlay input::placeholder {
    color: var(--text-muted);
}

.search-overlay input:focus { outline: none; }

.search-overlay__close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text);
    transition: background var(--transition);
}

.search-overlay__close:hover { background: var(--light-gray); }
.search-overlay__close .icon { width: 18px; height: 18px; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.nav-toggle .icon { width: 22px; height: 22px; }

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
}

.hero-slide {
    position: relative;
    display: none;
    align-items: center;
    min-height: 620px;
}

.hero-slide.is-active {
    display: flex;
    animation: fadeIn .8s ease;
}

.hero-slide > .container {
    width: 100%;
    max-width: none;
    padding-inline: clamp(40px, 4vw, 80px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.55) 42%, rgba(255,255,255,0) 68%);
}

.hero-slide__bg--empty {
    background: linear-gradient(120deg, #f6f7f8 0%, #e8eaed 55%, #dde0e4 100%);
}

.hero-slide__content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    padding: 60px 0;
}

.hero-slide__title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -.5px;
}

.hero-slide__subtitle {
    font-size: 26px;
    font-weight: 300;
    color: var(--text-soft);
    margin-bottom: 22px;
}

.hero-slide__desc {
    font-size: 16px;
    color: var(--text-soft);
    max-width: 460px;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    background: var(--gray-btn);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
    background: var(--gray-btn-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--text);
    color: var(--text);
}

.btn--outline:hover {
    background: var(--text);
    color: var(--white);
}

/* Slider controls */
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mid-gray);
    transition: background var(--transition), transform var(--transition);
}

.hero-dots button.is-active {
    background: var(--gray-btn-dark);
    transform: scale(1.2);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: background var(--transition), transform var(--transition);
    color: var(--text);
}

.hero-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.06); }
.hero-arrow .icon { width: 20px; height: 20px; }
.hero-arrow--prev { left: 24px; }
.hero-arrow--next { right: 24px; }

/* =========================================================
   SMART SOLUTIONS / CATEGORIES SECTION
   ========================================================= */
.solutions {
    padding: 90px 0 70px;
    text-align: center;
}

.solutions__title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -.5px;
    color: var(--text);
    margin-bottom: 12px;
}

.solutions__subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 56px;
}

.solutions__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px 28px;
}

.solutions__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 110px;
    transition: transform var(--transition);
}

.solutions__item:hover {
    transform: translateY(-6px);
}

.solutions__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.solutions__icon .icon { width: 30px; height: 30px; }

.solutions__item:hover .solutions__icon {
    border-color: var(--gray-btn-dark);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.solutions__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-soft);
    transition: color var(--transition);
}

.solutions__item:hover .solutions__label { color: var(--text); }

/* =========================================================
   GENERIC PAGE HEADER (Products / About placeholders)
   ========================================================= */
.page-header {
    background: var(--light-gray);
    padding: 70px 0;
    text-align: center;
}

.page-header__title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -.5px;
    margin-bottom: 14px;
}

.page-header__subtitle {
    font-size: 16px;
    color: var(--text-soft);
    max-width: 640px;
    margin: 0 auto;
}

.page-section {
    padding: 80px 0;
    text-align: center;
}

.page-section p {
    color: var(--text-soft);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
}

/* =========================================================
   CMS PAGES (/sayfa.php — e.g. /akne-tedavisi)
   ========================================================= */
.page-cover {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--light-gray);
}

.page-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,20,22,.15) 0%, rgba(20,20,22,.55) 100%);
}

.page-cover--brand {
    min-height: 360px;
}

.page-cover--brand::after {
    background:
        linear-gradient(180deg, rgba(12,14,18,.38) 0%, rgba(12,14,18,.46) 100%),
        radial-gradient(circle at 50% 45%, rgba(0,0,0,.18) 0%, rgba(0,0,0,.42) 72%);
}

.page-cover--brand:not(.page-cover--empty) .page-cover__title,
.page-cover--brand:not(.page-cover--empty) .page-cover__subtitle,
.page-cover--brand:not(.page-cover--empty) .page-cover__breadcrumb {
    text-shadow: 0 2px 18px rgba(0,0,0,.32);
}

.page-cover--empty {
    background: linear-gradient(120deg, #f6f7f8 0%, #e8eaed 55%, #dde0e4 100%);
}

.page-cover--empty::after { content: none; }

.page-cover__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 76px 0;
    color: var(--white);
}

.page-cover--empty .page-cover__content { color: var(--text); }

.page-cover__breadcrumb {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: 16px;
}

.page-cover__breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.page-cover__breadcrumb a:hover { text-decoration: underline; }

.page-cover__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-cover__icon .icon { width: 30px; height: 30px; }

.page-cover__title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -.5px;
}

.page-cms { padding: 70px 0 90px; }

.page-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text-soft);
}

.page-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.3px;
    margin: 36px 0 16px;
}

.page-content h2:first-child { margin-top: 0; }

.page-content h3 {
    font-size: 21px;
    font-weight: 600;
    color: var(--text);
    margin: 28px 0 12px;
}

.page-content p { margin-bottom: 18px; }

.page-content ul,
.page-content ol {
    margin: 0 0 18px 22px;
}

.page-content li { margin-bottom: 8px; }

.page-content a {
    color: var(--text);
    text-decoration: underline;
    text-decoration-color: var(--border);
}

.page-content a:hover { text-decoration-color: var(--text); }

.page-content strong { color: var(--text); font-weight: 600; }

.page-content img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 28px 0;
    display: block;
}

@media (max-width: 860px) {
    .page-cover__title { font-size: 32px; }
}

/* =========================================================
   BRANDS & PRODUCTS (/marka/{slug}, /urun/{slug})
   ========================================================= */
.page-cover__subtitle {
    font-size: 17px;
    max-width: 640px;
    margin: 14px auto 0;
    opacity: .85;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -.4px;
    text-align: center;
    margin-bottom: 40px;
}

/* Brand feature cards */
.brand-features { padding: 10px 0 70px; }

.brand-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.brand-feature {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 34px 30px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.brand-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.brand-feature h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.brand-feature p {
    font-size: 14.5px;
    color: var(--text-soft);
    line-height: 1.7;
}

/* Product grid */
.brand-products { padding: 30px 0 90px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.product-card__image {
    height: 190px;
    border-radius: var(--radius-sm, 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    background: var(--light-gray);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
    transition: transform .35s ease;
}

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

.product-card__image--empty {
    background: linear-gradient(130deg, #f4f5f7 0%, #e6e9ed 100%);
}

.product-card__image--empty .icon {
    width: 52px;
    height: 52px;
    color: #b9bfc7;
}

.product-card__brand {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 6px;
}

.product-card__name {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -.2px;
    margin-bottom: 8px;
}

.product-card__tags {
    font-size: 12px;
    color: var(--text-soft);
    margin-bottom: 10px;
}

.product-card__desc {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 18px;
}

.product-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.product-card__cta .icon {
    width: 16px;
    height: 16px;
    transition: transform .25s ease;
}

.product-card:hover .product-card__cta .icon { transform: translateX(4px); }

/* Product detail page */
.product-hero { padding: 50px 0 30px; }

.product-hero__breadcrumb {
    color: var(--text-soft);
    text-align: left;
    margin-bottom: 34px;
}

.product-hero__breadcrumb a { color: inherit; }

.product-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 460px) 1fr;
    gap: 56px;
    align-items: center;
}

.product-hero__image {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--light-gray);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
}

.product-hero__image--empty {
    background: linear-gradient(130deg, #f4f5f7 0%, #e6e9ed 100%);
}

.product-hero__image--empty .icon {
    width: 80px;
    height: 80px;
    color: #b9bfc7;
}

.product-hero__brand {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 12px;
    text-decoration: none;
}

.product-hero__brand:hover { color: var(--text); }

.product-hero__name {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -.5px;
    margin-bottom: 14px;
}

.product-hero__tags {
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 18px;
}

.product-hero__short {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 560px;
}

.product-detail { padding-top: 40px; }

.product-backlink {
    padding: 0 0 90px;
    text-align: center;
}

@media (max-width: 1000px) {
    .brand-features__grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-hero__grid { grid-template-columns: 1fr; gap: 34px; }
    .product-hero__image { min-height: 300px; }
    .product-hero__name { font-size: 30px; }
}

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

/* Brand cards on urunler.php */
.brand-grid-section { padding: 70px 0 90px; }

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.brand-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.brand-card__image {
    height: 210px;
    background: linear-gradient(130deg, #f4f5f7 0%, #e2e6ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.brand-card:hover .brand-card__image img { transform: scale(1.04); }

.brand-card__image--empty .brand-card__initial {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #b9bfc7;
}

.brand-card__body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.brand-card__title {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -.3px;
    margin-bottom: 10px;
}

.brand-card__subtitle {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}

.brand-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.brand-card__cta .icon {
    width: 16px;
    height: 16px;
    transition: transform .25s ease;
}

.brand-card:hover .brand-card__cta .icon { transform: translateX(4px); }

.search-results__heading {
    font-size: 20px;
    font-weight: 700;
    margin: 34px 0 18px;
}

.search-results__brands {
    margin-bottom: 12px;
}

@media (max-width: 1000px) {
    .brand-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* =========================================================
   HOMEPAGE SECTIONS
   ========================================================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.home-intro {
    padding: 90px 0 70px;
    text-align: center;
}

.home-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 16px;
}

.home-intro__title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -.5px;
    max-width: 720px;
    margin: 0 auto 20px;
}

.home-intro__text {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
}

.home-section-sub {
    font-size: 15px;
    color: var(--text-soft);
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
}

.home-brands { padding: 20px 0 60px; }

.home-features { padding: 20px 0 60px; }

.home-products { padding: 30px 0 80px; }

.home-cta {
    background: var(--dark, #141416);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.home-cta__title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.5px;
    max-width: 680px;
    margin: 0 auto 16px;
}

.home-cta__text {
    font-size: 16px;
    opacity: .8;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto 32px;
}

.btn--light {
    background: var(--white);
    color: var(--text);
}

.btn--light:hover {
    background: #e8eaed;
    color: var(--text);
}

@media (max-width: 860px) {
    .home-intro { padding: 64px 0 50px; }
    .home-intro__title { font-size: 27px; }
    .home-cta__title { font-size: 26px; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-hero {
    background: var(--light-gray);
    padding: 70px 0 60px;
    text-align: center;
}

.contact-hero__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.contact-hero h1 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -.5px;
    margin-bottom: 18px;
}

.contact-hero h1 strong { font-weight: 700; color: var(--gray-btn-dark); }

.contact-hero p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 16px;
}

.contact-main {
    padding: 70px 0 90px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr .9fr;
    gap: 28px;
    align-items: stretch;
}

.contact-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.contact-card h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -.2px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-info-list a,
.contact-info-list .contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.contact-info-icon .icon { width: 19px; height: 19px; }

.contact-info-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text);
}

.contact-info-text span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-card hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 26px 0;
}

.contact-hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: var(--text-soft);
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.contact-social a:hover {
    background: var(--text);
    color: var(--white);
    border-color: var(--text);
}

.contact-social .icon { width: 17px; height: 17px; }

.contact-map {
    margin-top: 22px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
}

.contact-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    display: block;
}

.contact-map__caption {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Form */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font);
    font-size: 14px;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gray-btn-dark);
    box-shadow: 0 0 0 3px rgba(124,129,135,.12);
}

.form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.form-privacy {
    font-size: 12px;
    color: var(--text-muted);
}

.form-message {
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
}

.form-message--success { background: #eef6ee; color: #3f7a4a; border: 1px solid #cfe7d2; }
.form-message--error { background: #fbeeee; color: #a14747; border: 1px solid #f0d4d4; }

/* Sidebar CTA cards */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-card {
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius);
    padding: 26px;
    text-align: left;
}

.cta-card--light {
    background: var(--off-white);
    border: 1px solid var(--border);
    color: var(--text);
}

.cta-card .contact-info-icon {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.15);
    color: var(--white);
    margin-bottom: 14px;
}

.cta-card--light .contact-info-icon {
    background: var(--white);
    border-color: var(--border);
    color: var(--text);
}

.cta-card h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: .65;
    margin-bottom: 8px;
}

.cta-card p,
.cta-card a.value {
    font-size: 19px;
    font-weight: 600;
    word-break: break-word;
}

.cta-card .btn { margin-top: 16px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 18px;
    display: inline-block;
}

.footer-logo span { font-weight: 300; opacity: .6; }

.footer-logo__img {
    display: block;
    width: 200px;
    height: auto;
    max-width: 100%;
}

.footer-grid p { font-size: 14px; line-height: 1.8; }

.footer-grid h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
    font-size: 14px;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-list a,
.footer-contact-list .row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    transition: color var(--transition);
}

.footer-contact-list a:hover { color: var(--white); }

.footer-contact-list .icon { width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; color: var(--white); opacity: .6; }

.footer-newsletter-form {
    display: flex;
    margin-top: 18px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.footer-newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 16px;
    color: var(--white);
    font-family: var(--font);
    font-size: 14px;
}

.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter-form input:focus { outline: none; }

.footer-newsletter-form button {
    padding: 14px 22px;
    background: var(--white);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}

.footer-newsletter-form button:hover { background: var(--gray-btn); color: var(--white); }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background var(--transition), border-color var(--transition);
}

.footer-social a:hover { background: rgba(255,255,255,.1); }
.footer-social .icon { width: 16px; height: 16px; }

.footer-bottom {
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,.4);
}

.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-sidebar { flex-direction: row; flex-wrap: wrap; }
    .contact-sidebar .cta-card { flex: 1 1 220px; }
}

@media (max-width: 860px) {
    .nav-toggle { display: flex; }

    .site-header {
        z-index: 1300;
    }

    .site-header__inner {
        gap: 12px;
    }

    .header-actions {
        gap: 8px;
        flex-shrink: 0;
    }

    .header-icon-btn,
    .nav-toggle {
        width: 38px;
        height: 38px;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1250;
        background: var(--white);
        flex-direction: column;
        padding: 18px 20px 30px;
        transform: translateX(-105%);
        transition: transform var(--transition);
        overflow-y: auto;
        overscroll-behavior: contain;
        justify-content: flex-start;
        border-top: 1px solid var(--border);
        box-shadow: 0 18px 40px rgba(20, 20, 22, .08);
    }

    .main-nav.is-open { transform: translateX(0); }

    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
    }

    .main-nav > ul > li > a {
        padding: 16px 4px;
        justify-content: space-between;
        border-bottom: 1px solid var(--border);
        font-size: 20px;
        font-weight: 600;
    }

    .main-nav .icon-chevron {
        display: none;
    }

    .submenu,
    .main-nav > ul > li.is-open .submenu {
        display: none !important;
    }

    .search-overlay {
        align-items: flex-start;
        padding-top: calc(var(--header-height) + 72px);
    }

    .search-overlay__box {
        padding: 0 20px;
    }

    .search-overlay input {
        font-size: 22px;
        text-align: left;
    }

    .search-overlay__close {
        top: 18px;
        right: 18px;
    }

    .hero-slide {
        min-height: 0;
        padding-top: clamp(180px, 46vw, 300px);
        text-align: center;
    }

    .hero-slide.is-active {
        display: block;
    }

    .hero-slide > .container {
        padding-inline: 24px;
    }

    .hero-slide__bg {
        bottom: auto;
        height: clamp(180px, 46vw, 300px);
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-slide__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right center;
    }

    .hero-slide__bg::after {
        background: linear-gradient(180deg, rgba(255,255,255,0) 62%, rgba(255,255,255,.92) 100%);
    }

    .hero-slide__content { max-width: 100%; padding: 28px 0 58px; margin: 0 auto; }
    .hero-slide__desc { margin-left: auto; margin-right: auto; }
    .hero-slide__title { font-size: 32px; }
    .hero-slide__subtitle { font-size: 20px; }
    .hero-arrow { width: 40px; height: 40px; top: clamp(90px, 23vw, 150px); }
    .hero-arrow--prev { left: 14px; }
    .hero-arrow--next { right: 14px; }
    .hero-dots { bottom: 18px; }

    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
    :root { --header-height: 70px; }
    .site-logo { font-size: 21px; }
    .site-logo__img { height: 32px; }
    .container { padding: 0 18px; }
    .lang-switch {
        padding: 8px 10px;
        font-size: 12px;
    }
    .lang-switch .icon { display: none; }
    .header-icon-btn,
    .nav-toggle {
        width: 36px;
        height: 36px;
    }
    .hero-slide__content {
        padding: 24px 0 54px;
    }
    .hero-slide > .container { padding-inline: 18px; }
    .hero-slide__title { font-size: 27px; }
    .hero-slide__subtitle { font-size: 18px; }
    .hero-slide__desc { font-size: 14px; }
    .hero-arrow {
        width: 36px;
        height: 36px;
    }
    .solutions__item { width: 88px; }
    .solutions__icon { width: 54px; height: 54px; }
    .solutions__title { font-size: 28px; }
    .contact-hero h1 { font-size: 32px; }
}
