:root {
    --navy: #2A3F8F;
    --blue: #3A56A0;
    --blue-mid: #4D6BB5;
    --blue-light: #7B9BC8;
    --blue-pale: #B8CDE8;
    --orange: #F5821F;
    --orange-dark: #D96E0A;
    --orange-light: #FDECD8;
    --gray: #6B7280;
    --gray-light: #F3F6FA;
    --gray-border: #E2E8F0;
    --white: #FFFFFF;
    --dark: #1A2644;
    --text: #2D3748;
    --text-light: #718096;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}
/* ======= TOP BAR ======= */
.topbar {
    background: var(--dark);
    color: var(--blue-pale);
    padding: 8px 0;
    font-size: 13px;
}
.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.topbar a {
    color: var(--blue-pale);
    text-decoration: none;
    transition: color .2s;
}
.topbar a:hover {
    color: var(--orange);
}
.topbar-left, .topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}
.topbar-sep {
    color: var(--blue-mid);
}
/* ======= HEADER ======= */
header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(42,63,143,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.logo-icon::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 22px;
    background: var(--white);
    border-radius: 4px 4px 0 0;
    top: 8px;
    left: 8px;
}
.logo-icon::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 4px;
    background: var(--gray);
    border-radius: 2px;
    bottom: 7px;
    left: 14px;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-name {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -0.5px;
}
.logo-name span {
    color: var(--orange);
}
.logo-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--blue-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
nav {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-item {
    position: relative;
}
.nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all .2s;
    white-space: nowrap;
    cursor: pointer;
    background-image: linear-gradient(to top, var(--blue) 0 50%, var(--text) 50% 100%);
    background-size: 100% 220%;
    background-position: 0 0;
    -webkit-background-clip: text;
    background-clip: text;
}
.nav-link:hover {
    background-color: transparent;
    background-position: 0 54%;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.nav-link .arrow {
    font-size: 10px;
    transition: transform .2s;
    color: var(--blue-light);
}
.nav-item:hover .arrow {
    transform: rotate(180deg);
}
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(42,63,143,0.15);
    min-width: 240px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .2s;
    z-index: 100;
}
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: all .15s;
}
.dropdown a:hover {
    background: var(--gray-light);
    color: var(--blue);
}
.dropdown a::before {
    content: '▸';
    color: var(--orange);
    font-size: 11px;
}
.header-cta {
    display: flex;
    gap: 8px;
    align-items: center;
}
.btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
}
.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
}
.btn-primary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(245,130,31,.35);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245,130,31,.45);
}
/* ======= HERO ======= */
 .hero {
    
    color: var(--white);
    padding: 0; /* slider will control inner spacing */
    position: relative;
    overflow: hidden;
    min-height: clamp(360px, 52vw, 620px);
    display: block;
    width: 100%;
    max-width: 100%;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(245,130,31,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(123,155,200,.15) 0%, transparent 60%);
}
.hero-grid {
    display: none;
}
.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero .hero-grid,
.hero .hero-text,
.hero .hero-stats {
    display: none;
}
.hero-slider {
    /* keep slider in normal flow so sticky header doesn't overlap */
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    overflow: hidden;
    display: block;
    z-index: 0;
}
.hero-slide-track {
    display: flex;
    transition: transform .6s ease;
    will-change: transform;
    width: calc(100vw * var(--slide-count, 1));
}
.hero-slide {
    min-width: 100vw;
    min-height: clamp(360px, 52vw, 620px);
    height: clamp(360px, 52vw, 620px);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
}
.hero-slide-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    padding: 72px 24px;
    color: var(--white);
    /* align to site's centered container so there's no large left gap */
    margin-left: clamp(16px, calc((100vw - 1280px)/2 + 20px), 120px);
}
.hero-slide-content h1 {
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    margin-bottom: 20px;
}
.hero-slide-content p {
    font-size: 18px;
    color: rgba(255,255,255,.88);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 30px;
}
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(0,0,0,.35);
    color: var(--white);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.hero-slider-nav:hover {
    background: rgba(0,0,0,.45);
    transform: translateY(-50%) scale(1.05);
}
.hero-prev {
    left: 24px;
}
.hero-next {
    right: 24px;
}
.hero-btns {
    margin-top: 24px;
}
.hero-btns .btn-hero-primary,
.hero-btns .btn-hero-ghost {
    margin-right: 16px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,130,31,.15);
    border: 1px solid rgba(245,130,31,.3);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 24px;
    letter-spacing: .5px;
}
.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero h1 em {

/* ensure hero content sits below sticky header */
.hero { padding-top: 72px; }
    font-style: normal;
    background: linear-gradient(135deg, var(--orange) 0%, #FFB259 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 17px;
    color: var(--blue-pale);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: var(--orange);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(245,130,31,.4);
    transition: all .2s;
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245,130,31,.5);
}
.btn-hero-ghost {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.2);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}
.btn-hero-ghost:hover {
    background: rgba(255,255,255,.18);
}
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.stat-num span {
    color: var(--orange);
}
.stat-label {
    font-size: 13px;
    color: var(--blue-pale);
    margin-top: 4px;
}
/* Hero Visual */
.hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 520px;
}
.hero-visual{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.hero-visual .hero-slider {
    overflow: hidden;
    position: relative;
}
.hero-visual .hero-slide-track {
    display: flex;
    gap: 16px;
    transition: transform .4s ease;
}
.hero-card {
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 24px;
    min-width: 100%;
    flex-shrink: 0;
    transition: transform .3s;
}
.hero-card:hover {
    transform: translateY(-4px);
}
.hero-card:first-child {
    grid-column: auto;
}
.hero-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}
.hero-slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.18);
    cursor: pointer;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
}
.slider-btn:hover {
    background: rgba(255,255,255,.2);
    transform: translateY(-1px);
}
.hero-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.hero-card p {
    font-size: 13px;
    color: var(--blue-pale);
    line-height: 1.5;
}
/* ======= STATS BAR ======= */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    padding: 32px 24px;
}
.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 16px 24px;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--gray-border);
}
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}
.stat-number .accent {
    color: var(--orange);
}
.stat-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 6px;
    font-weight: 500;
}
/* ======= SECTIONS ======= */
.section {
    padding: 80px 24px;
}
.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-tag::before {
    content: '●';
    font-size: 8px;
}
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.15;
}
.section-title em {
    font-style: normal;
    color: var(--blue);
}
.section-sub {
    font-size: 16px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}
/* ======= YAZILIM ÇÖZÜMLERI ======= */
.solutions-bg {
    background: var(--gray-light);
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sol-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    padding: 28px;
    cursor: pointer;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}
.sol-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}
.sol-card:hover::before {
    transform: scaleX(1);
}
.sol-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(42,63,143,.12);
    border-color: var(--blue-pale);
}
.sol-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}
.sol-icon i,
.sol-icon span,
.hw-icon-wrap i,
.hw-icon-wrap span {
    color: var(--white);
    line-height: 1;
}
.sol-icon img,
.hw-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sol-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.sol-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}
.sol-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
    transition: gap .2s;
}
.sol-link:hover {
    gap: 10px;
}
/* ======= DONANIM ======= */
.hardware-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.hw-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
}
.hw-card:hover {
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(42,63,143,.2);
    border-color: var(--blue);
}
.hw-icon-wrap {
    width: 128px;
    height: 128px;
    border-radius: 16px;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 14px;
    transition: background .25s;
}
.hw-card:hover .hw-icon-wrap {
    background: rgba(255, 255, 255, .1);
}
.hw-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    transition: all .3s;
}
.hw-card:hover h3 {
    color: #fff;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    padding: 8px 12px;
    border-radius: 8px;
}
.hw-card p {
    font-size: 13px;
    color: var(--text-light);
    transition: color .3s;
}
.hw-card:hover p {
    color: rgba(255, 255, 255, .85);
}
/* ======= REFERENCES ======= */
.refs-bg {
    background: var(--gray-light);
}
.refs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
/* ======= PARTNERS / PRODUCTS (dark) ======= */
.partners-section{
    background: #131718;
    color: #e6eef6;
    padding: 60px 24px;
}
.partners-section .section-inner{
    max-width: 1280px;
    margin: 0 auto;
}
.partners-section .section-header{ text-align: center; margin-bottom: 36px; }
.partners-section .section-title{ color: #fff; font-size: clamp(22px,3vw,34px); }
.partners-section .section-sub{ color: #b6c6d6; max-width:760px; margin: 8px auto 0; }
.partners-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    align-items: start;
}
.partner-card{
    background: transparent;
    text-align: center;
    padding: 20px 18px;
}
.partner-icon{
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-icon img{ max-width: 100%; max-height: 72px; display: block; }
.partner-card h3{ color: #ffffff; font-size: 18px; margin-bottom: 10px; }
.partner-card p{ color: #b6c6d6; font-size: 14px; line-height:1.6; }

@media (max-width: 980px){
    .partners-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px){
    .partners-grid{ grid-template-columns: 1fr; }
    .partners-section{ padding: 36px 12px; }
}
.ref-card {
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    cursor: default;
    transition: all .2s;
    min-height: 178px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ref-logo {
    display: block;
    width: min(100%, 146px);
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: 146px;
    object-fit: contain;
    margin: 0 auto;
}
.ref-card small {
    display: block;
    margin-top: 6px;
    color: var(--text-light);
    font-weight: 500;
}
.ref-card:hover {
    border-color: var(--blue-pale);
    color: var(--blue);
    transform: scale(1.03);
}
/* ======= WHY US ======= */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-image {
    background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
    border-radius: 24px;
    padding: 48px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.why-image::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(245,130,31,.15);
    top: -60px;
    right: -60px;
}
.why-image h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.why-image p {
    font-size: 15px;
    color: var(--blue-pale);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.why-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.check-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.check-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--white);
}
.check-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.check-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}
/* ======= CTA ======= */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 60%, var(--blue) 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,130,31,.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}
.cta-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-inner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.cta-inner p {
    font-size: 16px;
    color: var(--blue-pale);
    margin-bottom: 36px;
    line-height: 1.65;
}
.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
/* ======= FOOTER ======= */
footer {
    background: var(--dark);
    color: var(--blue-pale);
    padding: 60px 24px 32px;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-name {
    color: var(--white);
    font-size: 24px;
}
.footer-brand .logo-sub {
    color: var(--blue-light);
}
.footer-desc {
    font-size: 14px;
    color: rgba(184,205,232,.7);
    line-height: 1.7;
    margin-top: 16px;
    margin-bottom: 20px;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}
.footer-contact a {
    color: var(--blue-pale);
    text-decoration: none;
}
.footer-contact a:hover {
    color: var(--orange);
}
.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(184,205,232,.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .2s;
}
.footer-col a:hover {
    color: var(--orange);
}
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(184,205,232,.5);
}
.mobile-toggle{
    display:none;
    background:var(--blue);
    color:#fff;
    border:0;
    border-radius:10px;
    padding:10px 12px;
    font-size:20px
}
.page-hero{
    background:linear-gradient(135deg,var(--dark),var(--navy));
    padding:74px 24px;
    color:#fff
}
.page-hero .section-inner{
    position:relative
}
.page-hero h1{
    font-family:Outfit,sans-serif;
    font-size:clamp(32px,4vw,52px);
    font-weight:800
}
.page-hero p{
    max-width:720px;
    color:var(--blue-pale);
    font-size:17px;
    line-height:1.7;
    margin-top:12px
}
/* Unified responsive hero sizing to keep headings readable on all viewports */
.site-hero,
.hero,
.page-hero,
.solution-hero,
.hw-hero{
    min-height: clamp(320px, 48vw, 620px);
    display: flex;
    align-items: center;
    
}
.site-hero .section-inner,
.page-hero .section-inner,
.hero-inner{
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}
.hero-inner{
    display: grid;
    grid-template-columns: 1fr min(520px, 46vw);
    gap: 32px;
    align-items: center;
    position: relative; /* ensure absolute children (slider) are positioned inside this container */
    z-index: 1;
}
.site-hero h1,
.hero h1,
.page-hero h1{
    font-size: clamp(28px, 5.2vw, 56px);
    line-height: 1.1;
}
.site-hero p,
.hero p,
.page-hero p{
    font-size: clamp(15px, 2.4vw, 18px);
    max-width: 720px;
    color: var(--blue-pale);
}
@media (max-width: 880px){
    .hero-inner{ grid-template-columns: 1fr; }
    .hero-visual{ margin-top: 18px; }
}

/* Mobile: stack hero text and visual, make image full width and centered */
@media (max-width: 880px){
    .hero-inner{
        display: flex !important;
        flex-direction: column !important;
        gap: 18px;
        align-items: stretch;
    }
    .hero-visual{
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 12px !important;
        justify-content: center !important;
        align-items: center !important;
        order: 0 !important; /* show visual above text */
    }
    .hero-visual .hero-slider{ max-width: 100% !important; margin: 0 auto !important; }
    .hero-visual .hero-slide-track{ display: block !important; }
    .hero-visual .hero-slide{ min-height: 200px !important; max-height: 420px !important; display:flex !important; justify-content:center !important; align-items:center !important; }
    .hero-slide-img{ width: 100% !important; max-width: 100% !important; height: auto !important; object-fit: contain !important; max-height: 420px !important; margin:0 auto !important; }
    .hero-text{ padding: 0 12px; order: 1 !important; }
}

.hero{ overflow: hidden; }

/* Fix: constrain full-width slider when placed inside .hero-visual
   Prevents slides from overflowing and overlapping other content */
.hero-visual .hero-slider{
    position: relative !important;
    width: 100% !important;
    max-width: min(520px,46vw);
    height: auto !important;
    overflow: hidden;
    margin: 0 auto;
}
.hero-visual .hero-slide-track{
    display: block;
    width: 100%;
}
.hero-visual .hero-slide{
    display: block;
    width: 100% !important;
    height: auto !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: auto;
    max-height: none;
}
.hero-visual .hero-slide{
    display:flex;
    justify-content:center;
    align-items:center;
}

@media (max-width: 879px) {
    .hero-visual .hero-slide{
        background-size: contain !important;
        min-height: auto;
        max-height: none;
        height: auto !important;
    }
}

/* New: use img inside slides for precise centering */
.hero-slide-picture{
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.hero-slide-img{
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    flex-shrink: 1;
}
/* ensure image is centered inside the visual column */
.hero-slide-img{ margin: 0 auto; }
.hero-slide-overlay{ position: absolute; inset: 0; }

@media (max-width: 879px){
    .hero-slide-img{ 
        object-fit: cover !important; 
        width:100%; 
        height:auto; 
        max-height: 350px;
        display: block;
    }
}
.hero-visual .hero-slide-overlay{ display:none; }
.detail-layout{
    display:grid;
    grid-template-columns:1fr 330px;
    gap:34px
}
.contact-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:34px;
    align-items:start;
}
.contact-panel,
.map-box{
    background:#fff;
    border:1px solid var(--gray-border);
    border-radius:28px;
    box-shadow:0 25px 60px rgba(20,35,80,.08);
}
.map-card{
    position:relative;
    min-height:560px;
    overflow:hidden;
    border-radius:28px;
}
.map-label{
    position:absolute;
    top:500px;
    left:500px;
    background:rgba(255,255,255,.95);
    color:var(--dark);
    font-weight:700;
    padding:12px 18px;
    border-radius:14px;
    z-index:2;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.map-box {
    padding:0;
}
.map-frame{
    width:100%;
    min-height:560px;
    height:100%;
    border:0;
    display:block;
}
.contact-panel{
    padding:44px;
}
.contact-header{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:22px;
}
.contact-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--blue),var(--orange));
    color:#fff;
    font-size:14px;
    font-weight:700;
    letter-spacing:.15px;
}
.contact-panel h2{
    margin:0;
    font-family:'Outfit',sans-serif;
    font-size:38px;
    color:var(--dark);
    line-height:1.05;
}
.contact-intro{
    color:var(--text-light);
    font-size:16px;
    margin-bottom:32px;
}
.contact-list{
    display:grid;
    gap:20px;
}
.contact-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
}
.contact-icon{
    width:48px;
    height:48px;
    border-radius:16px;
    background:linear-gradient(135deg,var(--blue),var(--orange));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
}
.contact-item strong{
    display:block;
    margin-bottom:8px;
    font-size:15px;
    color:var(--dark);
}
.contact-item p{
    margin:0;
    color:var(--text-light);
    line-height:1.75;
}
.contact-item a{
    color:var(--dark);
    text-decoration:none;
}
.contact-item a:hover{
    color:var(--orange);
}
.contact-extra{
    margin-top:28px;
    padding:24px;
    border:1px solid var(--gray-border);
    border-radius:18px;
    background:var(--gray-light);
    color:var(--text-light);
    line-height:1.8;
}
.contact-socials{
    display:flex;
    gap:14px;
    margin-top:28px;
}
.contact-socials a{
    display:inline-flex;
    width:48px;
    height:48px;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:var(--gray-light);
    color:var(--dark);
    transition:background .2s,color .2s;
    font-size:18px;
}
.contact-socials a:hover{
    background:var(--blue);
    color:#fff;
}
@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-panel{
        padding:30px;
    }
    .map-card{
        min-height:420px;
    }
}
.content-box{
    background:#fff;
    border:1px solid var(--gray-border);
    border-radius:18px;
    padding:34px;
    box-shadow:0 15px 50px rgba(42,63,143,.08)
}
.content-box p,.content-box li{
    line-height:1.8;
    color:var(--text-light);
    font-size:16px
}
.content-box h2,.content-box h3{
    font-family:Outfit,sans-serif;
    color:var(--dark);
    margin:18px 0 10px
}
.side-card{
    background:var(--gray-light);
    border:1px solid var(--gray-border);
    border-radius:18px;
    padding:24px;
    position:sticky;
    top:100px
}
.side-card a{
    display:block;
    padding:12px 0;
    border-bottom:1px solid var(--gray-border);
    text-decoration:none;
    color:var(--text);
    font-weight:600
}
.side-card a:hover{
    color:var(--orange)
}
.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin:24px 0
}
.feature-pill{
    background:var(--gray-light);
    border:1px solid var(--gray-border);
    border-radius:12px;
    padding:14px;
    font-weight:600;
    color:var(--dark)
}
.form-card{
    background:#fff;
    border:1px solid var(--gray-border);
    border-radius:18px;
    padding:28px;
    box-shadow:0 15px 50px rgba(42,63,143,.08)
}
.site-form{
    display:grid;
    gap:14px
}
.site-form input,.site-form textarea,.site-form select{
    width:100%;
    border:1px solid var(--gray-border);
    border-radius:10px;
    padding:13px 14px;
    font:inherit
}
.site-form textarea{
    min-height:130px
}
.alert{
    padding:14px 16px;
    border-radius:10px;
    margin-bottom:18px
}
.alert.ok{
    background:#dcfce7;
    color:#166534
}
.alert.err{
    background:#fee2e2;
    color:#991b1b
}
.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px
}
.blog-home-section{
    background:linear-gradient(180deg,#fff,#f8fafc)
}
.section-header-row{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:24px;
    text-align:left
}
.section-header-row .section-sub{
    margin-left:0
}
.blog-home-grid{
    margin-top:8px
}
.blog-card{
    background:#fff;
    border:1px solid var(--gray-border);
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 12px 40px rgba(42,63,143,.07);
    transition:all .3s;
}
.blog-card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 60px rgba(42,63,143,.15);
}
.blog-img{
    height:200px;
    background:linear-gradient(135deg,var(--blue),var(--dark));
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    object-fit:cover;
    width:100%;
}
.blog-body{
    padding:22px
}
.blog-kicker{
    display:inline-flex;
    margin-bottom:10px;
    color:var(--blue);
    font-size:12px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase
}
.blog-body h3{
    font-family:Outfit,sans-serif;
    color:var(--dark);
    margin-bottom:9px;
    font-size:18px;
    line-height:1.4;
}
.blog-body p{
    font-size:14px;
    color:var(--text-light);
    line-height:1.65;
    margin-bottom:12px;
}
.blog-date{
    display:block;
    font-size:12px;
    color:var(--blue);
    margin-bottom:8px;
    font-weight:500;
}

@media (max-width:980px){
    .blog-grid{ grid-template-columns: repeat(2,1fr); }
    .section-header-row{ align-items:flex-start; flex-direction:column; }
}
@media (max-width:560px){
    .blog-grid{ grid-template-columns: 1fr; }
    .blog-img{ height: 160px; }
}
.logo-img{
    max-height:100px;
    width:auto
}
.admin-link{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:99;
    background:var(--dark);
    color:#fff;
    text-decoration:none;
    padding:12px 16px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
    font-weight:700
}
.topbar-right .lang{
    background:rgba(255,255,255,.08);
    padding:4px 8px;
    border-radius:8px
}
@media(max-width:1000px){
    nav{
        display:none;
        position:absolute;
        top:72px;
        left:0;
        right:0;
        background:#fff;
        flex-direction:column;
        align-items:stretch;
        padding:16px 24px;
        box-shadow:0 20px 40px rgba(42,63,143,.15)
    }
    nav.open{
        display:flex
    }
    .dropdown{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        border:0;
        display:none
    }
    .nav-item:hover .dropdown{
        display:block
    }
    .mobile-toggle{
        display:block
    }
    .header-cta{
        display:none
    }
    .detail-layout,.why-grid{
        grid-template-columns:1fr
    }
    .solutions-grid,.blog-grid{
        grid-template-columns:1fr 1fr
    }
    .footer-inner{
        grid-template-columns:1fr 1fr!important
    }
}
@media(max-width:650px){
    .solutions-grid,.hardware-grid,.refs-grid,.stats-inner,.blog-grid,.feature-list{
        grid-template-columns:1fr
    }
    .hero{
        padding:0
    }
    .hero-stats{
        display:grid;
        grid-template-columns:1fr 1fr
    }
    .footer-inner{
        grid-template-columns:1fr!important
    }
    .topbar-inner{
        display:none
    }
}

/* Premium admin-controlled solution detail page */
.solution-hero{min-height:470px;display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;background:linear-gradient(90deg,rgba(8,13,28,.88),rgba(8,13,28,.58)),radial-gradient(circle at 78% 22%,rgba(220,20,28,.36),transparent 34%),linear-gradient(135deg,#101827,#273244);background-size:cover;background-position:center;position:relative;overflow:hidden}
.solution-hero:after{content:"";position:absolute;inset:auto -10% -60px -10%;height:130px;background:linear-gradient(135deg,#d91018,#a50008);transform:skewY(-2deg)}
.solution-hero-inner{position:relative;z-index:2;max-width:920px;padding:80px 20px 120px}.hero-badge,.eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#e30613}.solution-hero .hero-badge{color:#fff;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.22);padding:10px 16px;border-radius:999px}.solution-hero h1{font-size:clamp(36px,5vw,68px);line-height:1.02;margin:18px 0 16px;font-weight:900}.solution-hero p{font-size:20px;max-width:720px;margin:0 auto 30px;color:rgba(255,255,255,.84)}.solution-hero-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}.btn.light,.btn-outline.light{border-color:rgba(255,255,255,.5);color:#fff;background:rgba(255,255,255,.08)}
.solution-image-hero{overflow:hidden;position:relative;margin-bottom:18px}
.solution-image-hero img{width:100%;height:auto;max-height:560px;object-fit:contain;object-position:center;display:block;}
@media(max-width:900px){
    .solution-image-hero img{max-height:320px}
}
.solution-tabs{position:sticky;top:0;z-index:25;display:flex;justify-content:center;gap:8px;flex-wrap:wrap;padding:13px 16px;background:linear-gradient(90deg,#d90009,#f01822);box-shadow:0 12px 30px rgba(190,0,0,.22)}.solution-tabs a{color:#fff;text-decoration:none;font-weight:800;padding:10px 18px;border-radius:999px}.solution-tabs a:hover{background:rgba(255,255,255,.18)}.section-inner.narrow{max-width:980px}.solution-intro-section .rich-content{font-size:16px;line-height:1.85;color:#243047}.solution-intro-section h2,.section-head h2{font-size:clamp(28px,3vw,44px);margin:10px 0 14px}.centered{text-align:center;max-width:850px;margin:0 auto 34px}.centered p{color:#617089}.empty-state{padding:34px 0;color:#475569;text-align:center;font-size:16px}.solution-modules-section{background:linear-gradient(135deg,#f8fafc,#fff)}.module-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.module-card{display:flex;align-items:center;gap:10px;background:#fff;border:1px solid rgba(20,33,61,.08);border-radius:18px;padding:18px 20px;font-weight:800;box-shadow:0 16px 45px rgba(20,33,61,.07)}.module-card span{color:#e30613}.solution-products-section{background:linear-gradient(120deg,#f1f3f6,#fff,#eef2f6)}.solution-products-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(300px,380px);gap:24px;align-items:start}.product-image-panel{position:sticky;top:120px;align-self:flex-start}.product-image-panel img{width:100%;height:auto;border-radius:24px;box-shadow:0 28px 80px rgba(15,23,42,.12);display:block}.accordion-list{border:1px solid rgba(20,33,61,.1);border-radius:22px;overflow:hidden;background:#fff;box-shadow:0 24px 70px rgba(20,33,61,.08)}.product-accordion{border-bottom:1px solid rgba(20,33,61,.09)}.product-accordion:last-child{border-bottom:0}.product-accordion summary{cursor:pointer;padding:20px 24px;font-weight:900;list-style:none}.product-accordion summary::-webkit-details-marker{display:none}.product-accordion summary:before{content:"+";color:#e30613;margin-right:12px}.product-accordion[open] summary{color:#e30613;background:#fff7f7}.product-accordion[open] summary:before{content:"-"}.accordion-body{padding:0 24px 24px;color:#374151;line-height:1.7}.accordion-body ul{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin:14px 0 0;padding:0;list-style:none}.accordion-body li:before{content:"✓";color:#e30613;margin-right:8px}.reference-strip{display:flex;justify-content:center;gap:12px;flex-wrap:wrap}.reference-logo-text{background:#fff;border:1px solid rgba(20,33,61,.1);border-radius:16px;min-width:140px;text-align:center;padding:15px 18px;font-weight:900;color:#364152;box-shadow:0 12px 32px rgba(20,33,61,.06)}.cta-panel{display:flex;align-items:center;justify-content:space-between;gap:24px;background:linear-gradient(135deg,#101827,#243047);color:#fff;border-radius:28px;padding:38px;box-shadow:0 28px 80px rgba(16,24,39,.22);overflow:hidden;position:relative}.cta-panel:after{content:"";position:absolute;width:220px;height:220px;border-radius:999px;background:rgba(227,6,19,.34);right:-80px;top:-80px}.cta-panel>*{position:relative;z-index:2}.cta-panel h2{margin:8px 0 10px;font-size:34px}.cta-panel p{color:rgba(255,255,255,.72);max-width:680px}@media(max-width:900px){.module-grid{grid-template-columns:1fr}.accordion-body ul{grid-template-columns:1fr}.cta-panel{flex-direction:column;align-items:flex-start}.solution-tabs{position:relative}.solution-hero{min-height:420px}.solution-products-layout{grid-template-columns:1fr}.product-image-panel{position:static;top:auto}}
/* Solution detail theme colors */
.solution-theme .solution-hero:after{background:linear-gradient(135deg,var(--solution-accent-1,#d91018),var(--solution-accent-2,#a50008))}
.solution-theme .solution-tabs{background:linear-gradient(90deg,var(--solution-accent-1,#d90009),var(--solution-accent-2,#f01822));box-shadow:0 12px 30px rgba(var(--solution-accent-rgb,190,0,0),.22)}
.solution-theme .eyebrow,.solution-theme .module-card span,.solution-theme .product-accordion summary:before,.solution-theme .accordion-body li:before{color:var(--solution-accent-1,#e30613)}
.solution-theme .product-accordion[open] summary{color:var(--solution-accent-1,#e30613);background:rgba(var(--solution-accent-rgb,227,6,19),.08)}
.solution-theme .cta-panel:after{background:rgba(var(--solution-accent-rgb,227,6,19),.34)}
/* Premium admin kontrollü donanım katalog sayfaları */
.hw-hero{background:radial-gradient(circle at 20% 10%,rgba(245,130,31,.18),transparent 34%),linear-gradient(135deg,#0f172a,#243b6b);color:#fff;padding:86px 0 70px;position:relative;overflow:hidden}.hw-hero:after{content:"";position:absolute;right:-80px;top:-120px;width:420px;height:420px;border-radius:50%;background:rgba(255,255,255,.07)}.hw-hero.slim{padding:54px 0}.hw-hero h1{font-size:clamp(34px,5vw,64px);margin:12px 0 12px;font-weight:900}.hw-hero p{max-width:760px;color:rgba(255,255,255,.78);font-size:18px}.eyebrow{display:inline-flex;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);font-weight:800;color:#fff}.hw-category-grid,.hw-product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:28px}.hw-category-card,.hw-product-card{background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:24px;padding:22px;text-align:center;text-decoration:none;color:#101828;box-shadow:0 20px 55px rgba(15,23,42,.08);transition:.25s ease;min-height:230px;display:flex;flex-direction:column;justify-content:flex-end}.hw-category-card:hover,.hw-product-card:hover{transform:translateY(-6px);box-shadow:0 28px 80px rgba(15,23,42,.14)}.hw-category-img,.hw-product-img{height:140px;display:grid;place-items:center}.hw-category-img img,.hw-product-img img{max-width:100%;max-height:130px;object-fit:contain}.hw-category-img span,.hw-product-img span{font-size:60px}.hw-category-title,.hw-product-title{background:linear-gradient(135deg,#f5821f,#3a56a0);color:#fff;border-radius:14px;padding:12px 14px;font-weight:900;margin-top:12px}.hw-category-card p,.hw-product-card p{color:#667085;min-height:42px}.hw-detail-section{background:#f8fafc}.hw-detail-wrap{display:grid;grid-template-columns:260px 1fr;gap:28px}.hw-detail-side{background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:22px;padding:18px;position:sticky;top:100px;height:max-content;box-shadow:0 15px 45px rgba(15,23,42,.06)}.hw-detail-side h3{margin:0 0 12px;color:#101828}.hw-detail-side a{display:block;padding:12px;border-bottom:1px solid #eef2f7;color:#344054;text-decoration:none;font-weight:700}.hw-detail-side a.active,.hw-detail-side a:hover{color:#f5821f}.hw-detail-main{background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:26px;padding:30px;box-shadow:0 20px 70px rgba(15,23,42,.08)}.hw-detail-head{display:grid;grid-template-columns:1fr 300px;gap:34px;align-items:start}.hw-detail-main h2{margin:0;font-size:28px}.red-line{height:3px;width:100%;max-width:360px;background:linear-gradient(90deg,#f5821f,#3a56a0);margin:12px 0 18px}.hw-feature-list{padding-left:0;list-style:none;columns:1}.hw-feature-list li{padding:5px 0;color:#344054}.hw-feature-list li:before{content:"✓";color:#f5821f;font-weight:900;margin-right:8px}.hw-main-image{text-align:center}.hw-main-image img{width:100%;max-height:280px;object-fit:contain;background:#fff;border:1px solid #eef2f7;border-radius:20px;padding:18px}.hw-main-image span{font-size:120px;display:block}.hw-doc,.hw-gallery{border-top:1px solid #eef2f7;margin-top:22px;padding-top:22px}.hw-gallery>div{display:flex;flex-wrap:wrap;gap:12px;margin-top:12px}.hw-gallery img{width:132px;height:96px;object-fit:contain;border:1px solid #e5e7eb;border-radius:14px;background:#fff;padding:8px}.other-hw{text-align:center}.hw-category-strip{display:flex;gap:18px;justify-content:center;flex-wrap:wrap;margin-top:24px}.hw-category-strip a{width:150px;text-decoration:none;color:#344054;font-weight:800}.hw-category-strip img{width:150px;height:85px;object-fit:contain;background:#fff;border-radius:16px;padding:10px;box-shadow:0 12px 30px rgba(15,23,42,.08);display:block;margin-bottom:8px}@media(max-width:1000px){.hw-category-grid,.hw-product-grid{grid-template-columns:repeat(2,1fr)}.hw-detail-wrap,.hw-detail-head{grid-template-columns:1fr}.hw-detail-side{position:relative;top:auto}}@media(max-width:560px){.hw-category-grid,.hw-product-grid{grid-template-columns:1fr}.hw-hero{padding:54px 0}.hw-detail-main{padding:20px}}

@media(max-width:768px){
    .hero,
    .hero-slider,
    .hero-slide{
        min-height:clamp(190px, 56vw, 280px);
        height:clamp(190px, 56vw, 280px);
    }
    .hero-slider{
        background:#eef7ff;
    }
    .hero-slide{
        align-items:center;
        background-size:contain;
        background-position:center;
        background-repeat:no-repeat;
    }
    .hero-slide-overlay{
        display:none;
    }
    .hero-slide-content{
        max-width:none;
        margin-left:0;
        padding:42px 18px 54px;
    }
    .hero-slide-content h1,
    .hero h1{
        font-size:30px;
        line-height:1.12;
        margin-bottom:12px;
        letter-spacing:0;
    }
    .hero-slide-content p,
    .hero p{
        font-size:15px;
        line-height:1.55;
        margin-bottom:18px;
    }
    .hero-badge,
    .eyebrow{
        font-size:11px;
        padding:7px 10px;
        letter-spacing:.08em;
    }
    .hero-btns{
        gap:8px;
        margin-top:14px;
    }
    .hero-btns .btn-hero-primary,
    .hero-btns .btn-hero-ghost{
        margin-right:0;
    }
    .btn-hero-primary,
    .btn-hero-ghost{
        font-size:14px;
        padding:11px 16px;
    }
    .hero-slider-nav{
        display:none;
    }
    .hero-prev{
        left:12px;
    }
    .hero-next{
        right:12px;
    }
    .page-hero{
        padding:42px 18px;
    }
    .page-hero h1{
        font-size:clamp(26px,7vw,34px);
        line-height:1.15;
    }
    .page-hero p{
        font-size:15px;
        line-height:1.55;
        margin-top:10px;
    }
    .solution-hero{
        min-height:300px;
    }
    .solution-hero:after{
        height:82px;
        bottom:-46px;
    }
    .solution-hero-inner{
        padding:48px 18px 72px;
    }
    .solution-hero h1{
        font-size:30px;
        line-height:1.12;
        margin:14px 0 12px;
    }
    .solution-hero p{
        font-size:16px;
        line-height:1.55;
        margin-bottom:20px;
    }
    .solution-image-hero{
        margin-bottom:8px;
    }
    .solution-image-hero img{
        max-height:240px;
    }
    .hw-hero,
    .hw-hero.slim{
        padding:40px 0 36px;
    }
    .hw-hero:after{
        width:220px;
        height:220px;
        right:-96px;
        top:-96px;
    }
    .hw-hero h1{
        font-size:30px;
        line-height:1.14;
        margin:10px 0;
    }
    .hw-hero p{
        font-size:15px;
        line-height:1.55;
    }
}

@media(max-width:420px){
    .hero,
    .hero-slider,
    .hero-slide{
        min-height:clamp(184px, 56vw, 235px);
        height:clamp(184px, 56vw, 235px);
    }
    .hero-slide-img{
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 280px !important;
    }
    .page-hero{
        padding:34px 16px;
    }
    .solution-image-hero img{
        max-height:210px;
    }
    .solution-hero{
        min-height:270px;
    }
    .hw-hero,
    .hw-hero.slim{
        padding:34px 0 30px;
    }
}
