:root{
    --primary:#312783;
    --primary-2:#4b3fc7;
    --primary-soft:#ece9ff;
    --primary-soft-2:#f5f3ff;
    --dark:#0f1220;
    --dark-2:#171b2f;
    --text:#182033;
    --muted:#667085;
    --line:#e7eaf2;
    --soft:#f4f7fc;
    --white:#ffffff;
    --shadow:0 22px 60px rgba(15,18,32,.10);
    --shadow-2:0 18px 45px rgba(25,33,62,.18);
    --container:1280px;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope', sans-serif;
    color:var(--text);
    background:#f8fafc;
    line-height:1.6;
}

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

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

button,
input,
textarea{
    font:inherit;
}

.container{
    width:min(calc(100% - 32px), var(--container));
    margin:0 auto;
}

/* =========================
   TOPBAR
========================= */

.topbar{
    background:#e7e7e7;
    border-bottom:1px solid rgba(31,63,120,.10);
    color:#1f3f78;
    font-size:13px;
}

.topbar-inner{
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.topbar-left,
.topbar-right{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.topbar-contact{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
}

.topbar-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#1f3f78;
    font-size:13px;
    font-weight:700;
    transition:.25s ease;
}

.topbar-link i{
    font-size:13px;
    color:#1f3f78;
}

.topbar-link:hover{
    color:#0f2f62;
}

.topbar-social{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:10px;
}

.topbar-social a{
    width:34px;
    height:34px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:rgba(31,63,120,.08);
    color:#1f3f78;
    transition:.25s ease;
}

.topbar-social a:hover{
    background:#1f3f78;
    color:#fff;
    transform:translateY(-2px);
}

.dot{
    width:5px;
    height:5px;
    border-radius:50%;
    background:rgba(31,63,120,.35);
}

/* =========================
   HEADER
========================= */

.site-header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(231,231,231,.92);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(49,39,131,.08);
    transition:.3s ease;
    padding:6px 0;
}

.site-header.scrolled{
    box-shadow:0 10px 30px rgba(18,24,38,.08);
}

.header-inner{
    min-height:108px;
    display:grid;
    grid-template-columns:150px minmax(0, 1fr) auto;
    align-items:center;
    gap:20px;
    padding:6px 0;
    position:relative;
}

.logo{
    width:150px;
    flex-shrink:0;
    display:flex;
    align-items:center;
}

.logo img{
    width:auto;
    max-height:84px;
    object-fit:contain;
}

.main-nav{
    min-width:0;
    display:flex;
    justify-content:center;
}

.nav-list{
    list-style:none;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:nowrap;
    gap:6px;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(255,255,255,.84);
    border:1px solid rgba(49,39,131,.07);
    box-shadow:0 8px 20px rgba(18,24,38,.05);
    backdrop-filter:blur(8px);
    overflow:visible;
    position:relative;
    z-index:5;
}

.nav-item{
    flex:0 0 auto;
    position:relative;
}

.nav-link,
.nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:44px;
    padding:0 15px;
    border-radius:999px;
    font-weight:800;
    font-size:13px;
    color:#253047;
    position:relative;
    transition:.25s ease;
    letter-spacing:-.01em;
    white-space:nowrap;
    line-height:1;
    text-align:center;
    background:transparent;
    border:0;
    cursor:pointer;
    font-family:inherit;
}

.nav-link::after,
.nav-toggle::after{
    content:"";
    position:absolute;
    left:14px;
    right:14px;
    bottom:7px;
    height:2px;
    border-radius:999px;
    background:linear-gradient(90deg, var(--primary), var(--primary-2));
    transform:scaleX(0);
    transform-origin:center;
    transition:.25s ease;
    opacity:0;
}

.nav-item:hover > .nav-link,
.nav-item:hover > .nav-toggle,
.nav-link:hover,
.nav-toggle:hover{
    color:var(--primary);
    background:rgba(49,39,131,.05);
}

.nav-item:hover > .nav-link::after,
.nav-item:hover > .nav-toggle::after,
.nav-link:hover::after,
.nav-toggle:hover::after{
    transform:scaleX(1);
    opacity:1;
}

.nav-item.is-active > .nav-link,
.nav-item.is-active > .nav-toggle{
    color:#fff;
    background:linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow:0 10px 20px rgba(49,39,131,.18);
}

.nav-item.is-active > .nav-link::after,
.nav-item.is-active > .nav-toggle::after{
    display:none;
}

.nav-caret{
    width:6px;
    height:6px;
    border-right:1.5px solid currentColor;
    border-bottom:1.5px solid currentColor;
    transform:rotate(45deg);
    margin-top:-2px;
    opacity:.82;
    transition:transform .25s ease, opacity .25s ease;
    flex-shrink:0;
}

.nav-item.has-dropdown::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:100%;
    height:18px;
    background:transparent;
}

.nav-item.has-dropdown:hover > .nav-toggle .nav-caret{
    transform:rotate(225deg);
    opacity:1;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:52px;
    padding:0 24px;
    border-radius:999px;
    font-weight:800;
    transition:.25s ease;
    border:1px solid transparent;
    cursor:pointer;
    white-space:nowrap;
}

.btn:hover{
    transform:translateY(-2px);
}

.btn-primary{
    background:linear-gradient(135deg, var(--primary), var(--primary-2));
    color:#fff;
    box-shadow:0 14px 28px rgba(49,39,131,.20);
}

.btn-light{
    background:rgba(255,255,255,.86);
    color:var(--primary);
    border-color:rgba(49,39,131,.10);
    box-shadow:0 10px 22px rgba(20,24,38,.05);
}

.btn-ghost{
    background:rgba(255,255,255,.08);
    color:#fff;
    border-color:rgba(255,255,255,.25);
}

.full{
    width:100%;
}

.header-actions .btn{
    min-height:48px;
    padding:0 22px;
    font-size:13px;
}

.mobile-toggle{
    display:none;
    width:46px;
    height:46px;
    border:none;
    border-radius:14px;
    background:#eef1ff;
    color:var(--primary);
    font-size:22px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
}

/* =========================
   DROPDOWN
========================= */

.dropdown-menu{
    position:absolute;
    top:calc(100% + 4px);
    left:0;
    min-width:240px;
    background:#fff;
    border:1px solid rgba(49,39,131,.08);
    border-radius:20px;
    box-shadow:var(--shadow);
    padding:12px;
    display:flex;
    flex-direction:column;
    gap:10px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(10px);
    transition:.25s ease;
    z-index:999;
}

.dropdown-menu a{
    min-height:42px;
    display:flex;
    align-items:center;
    padding:0 12px;
    border-radius:12px;
    font-weight:700;
    font-size:13px;
    color:#334155;
    transition:.2s ease;
}

.dropdown-menu a:hover{
    background:#f3f6ff;
    color:var(--primary);
}

.nav-item.has-dropdown:hover > .dropdown-menu{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
}

/* =========================
   HERO
========================= */

.hero{
    position:relative;
    padding-bottom:34px;
}

.hero-slider{
    position:relative;
    height:860px;
    overflow:hidden;
    background:#0f1220;
}

.hero-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    visibility:hidden;
    transition:opacity .8s ease, visibility .8s ease, transform .8s ease;
    transform:scale(1.02);
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    transform:scale(1);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
            linear-gradient(90deg, rgba(7,10,20,.88) 0%, rgba(7,10,20,.68) 38%, rgba(7,10,20,.36) 70%, rgba(7,10,20,.18) 100%),
            linear-gradient(180deg, rgba(7,10,20,.14) 0%, rgba(7,10,20,.42) 100%);
}

.hero-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(80px);
    opacity:.35;
    pointer-events:none;
}

.hero-glow-left{
    width:360px;
    height:360px;
    left:-80px;
    bottom:-60px;
    background:rgba(92,72,255,.50);
}

.hero-glow-right{
    width:280px;
    height:280px;
    right:6%;
    top:14%;
    background:rgba(255,255,255,.16);
}

.hero-layout{
    position:relative;
    z-index:2;
    height:100%;
    display:grid;
    grid-template-columns:minmax(0, 1.15fr) 420px;
    align-items:center;
    gap:34px;
    padding-top:86px;
    padding-bottom:160px;
}

.hero-content{
    color:#fff;
    max-width:860px;
}

.hero-kicker{
    display:inline-flex;
    align-items:center;
    min-height:38px;
    padding:0 16px;
    border-radius:999px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.14);
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
    font-weight:800;
    margin-bottom:22px;
    backdrop-filter:blur(10px);
}

.hero-content h1{
    max-width:850px;
    font-size:72px;
    line-height:1.01;
    letter-spacing:-.055em;
    margin-bottom:18px;
}

.hero-content p{
    max-width:660px;
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,.82);
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:30px;
}

.hero-mini-info{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:14px;
    margin-top:34px;
    max-width:860px;
}

.hero-mini-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
    padding:16px 18px;
    backdrop-filter:blur(10px);
    box-shadow:0 12px 35px rgba(0,0,0,.12);
}

.hero-mini-card strong{
    display:block;
    font-size:15px;
    line-height:1.3;
    margin-bottom:6px;
    color:#fff;
}

.hero-mini-card span{
    display:block;
    font-size:13px;
    line-height:1.65;
    color:rgba(255,255,255,.72);
}

.hero-side-panel{
    position:relative;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.14);
    border-radius:32px;
    padding:20px;
    backdrop-filter:blur(12px);
    box-shadow:0 28px 70px rgba(0,0,0,.18);
    align-self:center;
}

.hero-side-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
    margin-bottom:16px;
    color:#fff;
}

.hero-side-top strong{
    font-size:20px;
    line-height:1.2;
}

.hero-side-label{
    display:inline-flex;
    align-items:center;
    min-height:32px;
    padding:0 12px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.12);
    color:rgba(255,255,255,.86);
    font-size:11px;
    letter-spacing:.14em;
    text-transform:uppercase;
    font-weight:800;
}

.hero-side-image{
    height:280px;
    border-radius:24px;
    overflow:hidden;
    margin-bottom:16px;
    background:rgba(255,255,255,.08);
}

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

.hero-side-stats{
    display:grid;
    gap:12px;
}

.hero-side-stat{
    display:flex;
    flex-direction:column;
    gap:4px;
    padding:14px 16px;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
}

.hero-side-stat span{
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:rgba(255,255,255,.60);
    font-weight:800;
}

.hero-side-stat strong{
    color:#fff;
    font-size:15px;
    line-height:1.45;
}

.hero-controls{
    position:absolute;
    top:50%;
    left:0;
    right:0;
    transform:translateY(-50%);
    z-index:3;
    display:flex;
    justify-content:space-between;
    padding:0 26px;
    pointer-events:none;
}

.hero-controls button{
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-size:32px;
    cursor:pointer;
    backdrop-filter:blur(10px);
    pointer-events:auto;
    transition:.25s ease;
    box-shadow:0 16px 30px rgba(0,0,0,.12);
}

.hero-controls button:hover{
    background:rgba(255,255,255,.22);
    transform:scale(1.04);
}

.hero-bottom-bar{
    position:absolute;
    left:50%;
    bottom:74px;
    transform:translateX(-50%);
    z-index:4;
    width:min(calc(100% - 32px), var(--container));
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:20px;
    padding:18px 22px;
    border-radius:24px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    box-shadow:0 24px 60px rgba(0,0,0,.14);
}

.hero-counter{
    display:flex;
    align-items:flex-end;
    gap:6px;
    color:#fff;
    min-width:86px;
}

.hero-counter strong{
    font-size:34px;
    line-height:1;
    letter-spacing:-.04em;
}

.hero-counter span{
    font-size:16px;
    line-height:1.2;
    color:rgba(255,255,255,.64);
    font-weight:700;
}

.hero-progress{
    position:relative;
    width:100%;
    height:6px;
    border-radius:999px;
    background:rgba(255,255,255,.16);
    overflow:hidden;
}

.hero-progress-fill{
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:100%;
    border-radius:999px;
    background:linear-gradient(90deg, rgba(255,255,255,.86), rgba(255,255,255,1));
    transition:width .18s linear;
}

.hero-dots{
    display:flex;
    gap:10px;
    justify-content:flex-end;
}

.hero-dots button{
    width:12px;
    height:12px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.36);
    cursor:pointer;
    transition:.25s ease;
    flex-shrink:0;
}

.hero-dots button.active{
    width:34px;
    border-radius:999px;
    background:#fff;
}

.hero-floating-cards{
    margin-top:-44px;
    position:relative;
    z-index:10;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.floating-card{
    background:#fff;
    border:1px solid rgba(49,39,131,.08);
    border-radius:26px;
    box-shadow:var(--shadow);
    padding:24px;
}

.floating-card strong{
    display:block;
    color:var(--dark);
    font-size:18px;
    margin-bottom:6px;
}

.floating-card span{
    color:var(--muted);
}

/* =========================
   FEATURE STRIP
========================= */

.feature-strip{
    padding:18px 0 28px;
}

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

.feature-card{
    background:#fff;
    border:1px solid rgba(49,39,131,.08);
    box-shadow:var(--shadow);
    border-radius:26px;
    padding:24px;
    display:flex;
    gap:18px;
}

.feature-icon{
    width:62px;
    height:62px;
    border-radius:20px;
    background:linear-gradient(135deg,var(--primary),var(--primary-2));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    flex-shrink:0;
}

.feature-card h3{
    font-size:20px;
    margin-bottom:6px;
    color:var(--dark);
}

.feature-card p{
    color:var(--muted);
    line-height:1.8;
}

/* =========================
   SECTIONS
========================= */

.section{
    padding:84px 0;
}

.section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:30px;
}

.eyebrow{
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:0 14px;
    border-radius:999px;
    background:#eef1ff;
    color:var(--primary);
    font-size:12px;
    letter-spacing:.14em;
    text-transform:uppercase;
    font-weight:800;
    margin-bottom:12px;
}

.eyebrow.dark{
    background:rgba(255,255,255,.10);
    color:#fff;
}

.section-head h2{
    font-size:46px;
    line-height:1.05;
    letter-spacing:-.05em;
    color:var(--dark);
    max-width:760px;
}

.section-head p{
    max-width:580px;
    color:var(--muted);
    line-height:1.9;
}

/* =========================
   COLLECTIONS
========================= */

.collection-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr .8fr;
    gap:22px;
}

.collection-card{
    position:relative;
    min-height:450px;
    overflow:hidden;
    border-radius:32px;
    box-shadow:var(--shadow);
}

.collection-card.large{
    min-height:450px;
}

.collection-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .55s ease;
}

.collection-card:hover img{
    transform:scale(1.06);
}

.collection-card .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(10,15,28,.08) 0%, rgba(10,15,28,.78) 100%);
}

.collection-card .content{
    position:absolute;
    left:28px;
    right:28px;
    bottom:28px;
    z-index:2;
    color:#fff;
}

.collection-card .content span{
    display:inline-block;
    margin-bottom:10px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:rgba(255,255,255,.78);
}

.collection-card .content h3{
    font-size:34px;
    line-height:1.15;
}

/* =========================
   PRODUCT SLIDER
========================= */

.slider-shell{
    position:relative;
}

.product-track{
    display:grid;
    grid-template-columns:repeat(6, minmax(310px, 1fr));
    gap:24px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding-bottom:10px;
}

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

.product-card.premium{
    background:#fff;
    border:1px solid rgba(49,39,131,.08);
    box-shadow:var(--shadow);
    border-radius:30px;
    overflow:hidden;
    transition:.3s ease;
}

.product-card.premium:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 60px rgba(16,22,40,.16);
}

.product-media{
    position:relative;
    height:340px;
    overflow:hidden;
    background:#eef3fa;
}

.product-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}

.product-card:hover .product-media img{
    transform:scale(1.07);
}

.tag{
    position:absolute;
    top:18px;
    left:18px;
    display:inline-flex;
    align-items:center;
    min-height:34px;
    padding:0 14px;
    border-radius:999px;
    background:#fff;
    color:var(--primary);
    font-size:12px;
    font-weight:800;
    box-shadow:0 12px 28px rgba(15,18,32,.10);
}

.product-info{
    padding:24px;
}

.product-info small{
    display:block;
    color:var(--primary);
    font-size:12px;
    letter-spacing:.14em;
    text-transform:uppercase;
    margin-bottom:10px;
    font-weight:800;
}

.product-info h3{
    font-size:24px;
    line-height:1.15;
    color:var(--dark);
    margin-bottom:10px;
}

.product-info p{
    color:var(--muted);
    line-height:1.8;
    margin-bottom:16px;
}

.product-info a{
    color:var(--primary);
    font-weight:800;
}

.slider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:56px;
    height:56px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:var(--shadow);
    color:var(--primary);
    font-size:32px;
    cursor:pointer;
    z-index:2;
}

.slider-arrow.left{
    left:-12px;
}

.slider-arrow.right{
    right:-12px;
}

/* =========================
   BRANDS
========================= */

.brand-section{
    background:#fff;
}

.brand-marquee{
    overflow:hidden;
    border:1px solid rgba(49,39,131,.08);
    border-radius:30px;
    background:#fff;
    box-shadow:var(--shadow);
    padding:26px 0;
}

.brand-row{
    display:flex;
    width:max-content;
    animation:marquee 26s linear infinite;
}

.brand-item{
    min-width:220px;
    padding:0 28px;
    font-size:24px;
    font-weight:800;
    color:#1f2937;
    opacity:.88;
    letter-spacing:.08em;
}

@keyframes marquee{
    from{transform:translateX(0)}
    to{transform:translateX(-50%)}
}

/* =========================
   DARK BAND
========================= */

.dark-band{
    background:linear-gradient(135deg,#111628 0%, #2d2a82 100%);
    color:#fff;
}

.dark-band-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    align-items:center;
}

.dark-copy h2{
    font-size:48px;
    line-height:1.05;
    letter-spacing:-.05em;
    margin-bottom:14px;
}

.dark-copy p{
    color:rgba(255,255,255,.78);
    line-height:1.9;
    max-width:620px;
}

.dark-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.stat-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:24px;
    padding:24px;
}

.stat-card strong{
    display:block;
    font-size:22px;
    margin-bottom:6px;
}

.stat-card span{
    color:rgba(255,255,255,.72);
    line-height:1.7;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonial-wrapper{
    position:relative;
    display:flex;
    align-items:center;
    gap:16px;
}

.testimonial-track{
    flex:1;
    overflow:hidden;
}

.testimonial-card{
    display:none;
    background:#fff;
    border:1px solid rgba(49,39,131,.08);
    box-shadow:var(--shadow);
    border-radius:30px;
    padding:34px;
    min-height:280px;
}

.testimonial-card.active{
    display:block;
}

.stars{
    color:#f5b000;
    font-size:22px;
    letter-spacing:3px;
    margin-bottom:18px;
}

.testimonial-card p{
    font-size:20px;
    line-height:1.9;
    color:#2b3448;
    margin-bottom:24px;
}

.testimonial-user strong{
    display:block;
    font-size:18px;
    color:var(--dark);
}

.testimonial-user span{
    color:var(--muted);
}

.testimonial-arrow{
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:var(--shadow);
    color:var(--primary);
    font-size:30px;
    cursor:pointer;
    flex-shrink:0;
}

/* =========================
   STORES
========================= */

.stores-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:22px;
}

.store-card{
    background:#fff;
    border:1px solid rgba(49,39,131,.08);
    box-shadow:var(--shadow);
    border-radius:32px;
    padding:34px;
}

.store-card h2{
    font-size:42px;
    line-height:1.05;
    letter-spacing:-.05em;
    margin-bottom:12px;
    color:var(--dark);
}

.store-card p{
    color:var(--muted);
    line-height:1.9;
    margin-bottom:22px;
}

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

.store-item{
    background:#f8fafc;
    border:1px solid var(--line);
    border-radius:20px;
    padding:18px 20px;
}

.store-item strong{
    display:block;
    color:var(--dark);
    margin-bottom:6px;
    font-size:14px;
}

.store-item span,
.store-item a{
    color:#344054;
    line-height:1.75;
}

.hours-list{
    display:grid;
    gap:14px;
    margin-bottom:22px;
}

.hours-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:18px 20px;
    border-radius:18px;
    border:1px solid var(--line);
    background:#fbfcff;
}

.hours-row span{
    color:var(--muted);
    font-weight:700;
}

.hours-row strong{
    color:var(--dark);
}

/* =========================
   CTA
========================= */

.cta-box{
    background:linear-gradient(135deg,#161b30 0%, #312783 100%);
    color:#fff;
    border-radius:34px;
    padding:42px;
    box-shadow:var(--shadow-2);
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:24px;
    align-items:center;
}

.cta-content h2{
    font-size:48px;
    line-height:1.05;
    letter-spacing:-.05em;
    margin-bottom:12px;
}

.cta-content p{
    color:rgba(255,255,255,.82);
    line-height:1.9;
    max-width:650px;
}

.cta-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:24px;
}

.cta-contact-card{
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.14);
    border-radius:28px;
    padding:28px;
    backdrop-filter:blur(8px);
}

.cta-contact-card small{
    display:block;
    color:rgba(255,255,255,.72);
    font-size:12px;
    letter-spacing:.14em;
    text-transform:uppercase;
    margin-bottom:10px;
    font-weight:800;
}

.cta-contact-card a{
    display:block;
    font-size:36px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:12px;
}

.cta-contact-card p{
    color:rgba(255,255,255,.82);
    line-height:1.8;
}

/* =========================
   FLOATING CALL
========================= */

.floating-call{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:90;
    width:62px;
    height:62px;
    border-radius:50%;
    background:linear-gradient(135deg, var(--primary), var(--primary-2));
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    box-shadow:0 16px 35px rgba(49,39,131,.28);
}

/* =========================
   FOOTER
========================= */

.site-footer{
    padding:28px 0 48px;
}

.footer-grid{
    background:#0c1120;
    border-radius:32px;
    padding:34px;
    display:grid;
    grid-template-columns:1.2fr .8fr .8fr;
    gap:26px;
}

.footer-brand img{
    width:150px;
    margin-bottom:10px;
    filter:brightness(1.35);
}

.footer-brand p,
.footer-links a,
.footer-links span{
    color:#b8c3d8;
    line-height:1.9;
}

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

.footer-links h3{
    color:#fff;
    font-size:15px;
    letter-spacing:.14em;
    text-transform:uppercase;
    margin-bottom:8px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1400px){
    .header-inner{
        grid-template-columns:140px minmax(0, 1fr) auto;
        gap:16px;
    }

    .logo{
        width:140px;
    }

    .logo img{
        max-height:78px;
    }

    .nav-list{
        gap:4px;
        padding:7px 10px;
    }

    .nav-link,
    .nav-toggle{
        min-height:42px;
        padding:0 12px;
        font-size:12px;
    }

    .header-actions .btn{
        min-height:46px;
        padding:0 18px;
        font-size:12px;
    }

    .hero-layout{
        grid-template-columns:minmax(0, 1fr) 390px;
    }

    .hero-content h1{
        font-size:64px;
    }
}

@media (max-width:1240px){
    .header-inner{
        grid-template-columns:132px minmax(0, 1fr) auto;
        gap:12px;
    }

    .logo{
        width:132px;
    }

    .logo img{
        max-height:72px;
    }

    .nav-list{
        gap:2px;
        padding:6px 8px;
    }

    .nav-link,
    .nav-toggle{
        min-height:40px;
        padding:0 10px;
        font-size:11.5px;
    }

    .header-actions .btn{
        min-height:44px;
        padding:0 16px;
        font-size:11.5px;
    }

    .hero-slider{
        height:820px;
    }

    .hero-layout{
        grid-template-columns:1fr;
        align-items:center;
        gap:24px;
        padding-bottom:170px;
    }

    .hero-content h1{
        font-size:58px;
    }

    .hero-side-panel{
        width:min(100%, 520px);
    }

    .collection-grid{
        grid-template-columns:1fr 1fr;
    }

    .collection-card.large{
        grid-column:1 / -1;
    }

    .dark-band-grid,
    .cta-box{
        grid-template-columns:1fr;
    }

    .dark-stats{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:992px){
    .topbar-inner{
        flex-direction:column;
        justify-content:center;
        padding:10px 0;
    }

    .topbar-contact{
        justify-content:center;
    }

    .topbar-social{
        margin-left:0;
        justify-content:center;
    }

    .header-inner{
        grid-template-columns:1fr auto;
        min-height:88px;
        gap:12px;
        padding:6px 0;
        position:relative;
    }

    .logo{
        width:145px;
    }

    .logo img{
        max-height:66px;
    }

    .header-actions .btn-primary{
        display:none;
    }

    .mobile-toggle{
        display:inline-flex;
    }

    .main-nav{
        position:absolute;
        top:calc(100% + 8px);
        left:0;
        right:0;
        display:block;
        z-index:120;
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transform:translateY(10px);
        transition:opacity .25s ease, visibility .25s ease, transform .25s ease;
    }

    .site-header.mobile-open .main-nav{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:translateY(0);
    }

    .nav-list{
        width:100%;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        justify-content:flex-start;
        gap:10px;
        padding:14px;
        border-radius:24px;
        background:rgba(255,255,255,.98);
        border:1px solid rgba(49,39,131,.08);
        box-shadow:0 22px 45px rgba(15,18,32,.12);
        backdrop-filter:blur(10px);
        overflow:visible;
    }

    .nav-item{
        width:100%;
        flex:1 1 auto;
    }

    .nav-link,
    .nav-toggle{
        width:100%;
        min-height:50px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:0 16px;
        border-radius:16px;
        font-size:14px;
        font-weight:800;
        color:#243047;
        background:#fff;
        border:1px solid rgba(49,39,131,.08);
        box-shadow:0 8px 18px rgba(16,22,40,.04);
        text-align:left;
        -webkit-tap-highlight-color:transparent;
        -webkit-touch-callout:none;
        touch-action:manipulation;
    }

    .nav-link::after,
    .nav-toggle::after{
        display:none;
    }

    .nav-item:hover > .nav-link,
    .nav-item:hover > .nav-toggle,
    .nav-link:hover,
    .nav-toggle:hover,
    .nav-link:focus,
    .nav-toggle:focus,
    .nav-link:active,
    .nav-toggle:active{
        color:#243047;
        background:#fff;
        outline:none;
    }

    .nav-item.is-active > .nav-link,
    .nav-item.is-active > .nav-toggle{
        color:#fff;
        background:linear-gradient(135deg, var(--primary), var(--primary-2));
        border-color:transparent;
        box-shadow:0 12px 24px rgba(49,39,131,.16);
    }

    .nav-item.has-dropdown::after{
        display:none;
    }

    .nav-item.has-dropdown:hover > .nav-toggle .nav-caret{
        transform:rotate(45deg);
        opacity:.82;
    }

    .nav-caret{
        width:7px;
        height:7px;
        border-right-width:1.6px;
        border-bottom-width:1.6px;
        transform:rotate(45deg);
        transition:transform .25s ease, opacity .25s ease;
    }

    .dropdown-menu{
        position:static;
        top:auto;
        left:auto;
        min-width:100%;
        margin-top:8px;
        padding:8px;
        border-radius:18px;
        background:#f8faff;
        border:1px solid rgba(49,39,131,.07);
        box-shadow:none;
        transform:none;
        display:none !important;
        opacity:1;
        visibility:visible;
        pointer-events:auto;
    }

    .nav-item.has-dropdown:hover > .dropdown-menu,
    .nav-item.has-dropdown:focus-within > .dropdown-menu,
    .nav-item.has-dropdown:active > .dropdown-menu{
        display:none !important;
    }

    .nav-item.mobile-submenu-open > .dropdown-menu{
        display:flex !important;
        flex-direction:column;
        gap:6px;
    }

    .nav-item.mobile-submenu-open > .nav-toggle .nav-caret{
        transform:rotate(225deg);
        opacity:1;
    }

    .dropdown-menu a{
        min-height:42px;
        display:flex;
        align-items:center;
        padding:0 12px;
        border-radius:12px;
        font-size:13px;
        font-weight:700;
        background:#fff;
        border:1px solid rgba(49,39,131,.05);
        color:#334155;
    }

    .dropdown-menu a:hover{
        background:#eef1ff;
        color:var(--primary);
    }

    .hero-slider{
        height:auto;
        min-height:760px;
    }

    .hero-slide{
        min-height:760px;
    }

    .hero-layout{
        padding-top:60px;
        padding-bottom:160px;
    }

    .hero-content h1{
        font-size:46px;
    }

    .hero-mini-info{
        grid-template-columns:1fr;
    }

    .hero-side-panel{
        width:100%;
        max-width:none;
    }

    .hero-bottom-bar{
        grid-template-columns:1fr;
        gap:14px;
        align-items:flex-start;
        bottom:44px;
    }

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

    .hero-dots{
        justify-content:flex-start;
        flex-wrap:wrap;
    }

    .hero-floating-cards,
    .feature-grid,
    .stores-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .section-head{
        flex-direction:column;
        align-items:flex-start;
    }

    .dark-stats{
        grid-template-columns:1fr;
    }

    .slider-arrow{
        display:none;
    }
}

@media (max-width:768px){
    .container{
        width:min(calc(100% - 22px), var(--container));
    }

    .site-header{
        padding:6px 0;
    }

    .header-inner{
        min-height:82px;
    }

    .topbar-link{
        font-size:12px;
    }

    .logo{
        width:136px;
    }

    .logo img{
        max-height:58px;
    }

    .mobile-toggle{
        width:44px;
        height:44px;
        font-size:18px;
    }

    .main-nav{
        top:calc(100% + 6px);
    }

    .nav-list{
        padding:12px;
        gap:8px;
        border-radius:20px;
    }

    .nav-link,
    .nav-toggle{
        min-height:48px;
        padding:0 14px;
        font-size:13.5px;
        border-radius:14px;
    }

    .dropdown-menu{
        margin-top:6px;
        padding:7px;
        border-radius:16px;
    }

    .dropdown-menu a{
        min-height:40px;
        font-size:12.5px;
    }

    .hero-slider{
        min-height:700px;
    }

    .hero-slide{
        min-height:700px;
    }

    .hero-layout{
        padding-top:40px;
        padding-bottom:150px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.8;
    }

    .hero-controls{
        padding:0 12px;
    }

    .hero-controls button{
        width:48px;
        height:48px;
        font-size:26px;
    }

    .hero-side-panel{
        padding:16px;
        border-radius:24px;
    }

    .hero-side-image{
        height:220px;
        border-radius:18px;
    }

    .hero-counter strong{
        font-size:28px;
    }

    .hero-floating-cards{
        margin-top:-14px;
    }

    .feature-card,
    .floating-card,
    .store-card,
    .cta-box,
    .testimonial-card,
    .footer-grid{
        padding:22px;
    }

    .section{
        padding:62px 0;
    }

    .section-head h2,
    .store-card h2,
    .cta-content h2,
    .dark-copy h2{
        font-size:32px;
    }

    .collection-grid{
        grid-template-columns:1fr;
    }

    .collection-card,
    .collection-card.large{
        min-height:340px;
    }

    .product-track{
        grid-template-columns:repeat(6, minmax(270px, 1fr));
    }

    .product-media{
        height:280px;
    }

    .cta-contact-card a{
        font-size:28px;
    }
}

.hero-layout{
    padding-bottom:250px !important;
}

.hero-bottom-bar{
    bottom:34px !important;
    z-index:2 !important;
}

.hero-content,
.hero-side-panel{
    position:relative;
    z-index:3 !important;
}

@media (max-width:1240px){
    .hero-slider{
        height:920px !important;
    }

    .hero-layout{
        padding-bottom:270px !important;
    }
}

@media (max-width:992px){
    .hero-slider{
        min-height:860px !important;
    }

    .hero-slide{
        min-height:860px !important;
    }

    .hero-layout{
        padding-bottom:250px !important;
    }

    .hero-bottom-bar{
        bottom:24px !important;
    }
}

@media (max-width:768px){
    .hero-slider{
        min-height:760px !important;
    }

    .hero-slide{
        min-height:760px !important;
    }

    .hero-layout{
        padding-bottom:220px !important;
    }
}

/* =========================
   HERO ALT ALAN OVERRIDE
========================= */

.hero-slider{
    height: 900px !important;
}

.hero-layout{
    padding-bottom: 235px !important;
    position: relative !important;
    z-index: 3 !important;
}

.hero-mini-info{
    margin-top: 28px !important;
    position: relative !important;
    z-index: 4 !important;
}

.hero-mini-card{
    min-height: 118px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.hero-content,
.hero-side-panel{
    position: relative !important;
    z-index: 4 !important;
}

.hero-bottom-bar{
    bottom: 42px !important;
    z-index: 2 !important;
    width: min(calc(100% - 32px), var(--container)) !important;
    padding: 16px 22px !important;
    border-radius: 22px !important;
    background: rgba(255,255,255,.11) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    backdrop-filter: blur(14px) !important;
    box-shadow: 0 20px 45px rgba(0,0,0,.16) !important;
}

.hero-counter strong{
    font-size: 30px !important;
}

.hero-counter span{
    font-size: 14px !important;
}

.hero-progress{
    height: 8px !important;
}

.hero-dots{
    gap: 8px !important;
}

.hero-dots button{
    width: 14px !important;
    height: 14px !important;
    background: rgba(255,255,255,.34) !important;
}

.hero-dots button.active{
    width: 36px !important;
    height: 14px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
}

.hero-floating-cards{
    margin-top: -34px !important;
    position: relative !important;
    z-index: 6 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
}

.floating-card.floating-card-feature{
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 28px 26px !important;
    border-radius: 28px !important;
    background: #ffffff !important;
    border: 1px solid rgba(49,39,131,.07) !important;
    box-shadow: 0 18px 40px rgba(15,18,32,.08) !important;
    min-height: 168px !important;
}

.floating-card-icon{
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    border-radius: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-2)) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 28px rgba(49,39,131,.18) !important;
}

.floating-card-icon i{
    font-size: 22px !important;
}

.floating-card-content{
    flex: 1 1 auto !important;
}

.floating-card-content strong{
    display: block !important;
    color: var(--dark) !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
    font-weight: 800 !important;
}

.floating-card-content span{
    display: block !important;
    color: #667085 !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
}

/* HERO mini kartlarla alt bar arası daha temiz dursun */
.hero-mini-card strong{
    margin-bottom: 8px !important;
}

.hero-mini-card span{
    line-height: 1.7 !important;
}

/* Tablet */
@media (max-width: 1240px){
    .hero-slider{
        height: 980px !important;
    }

    .hero-layout{
        padding-bottom: 270px !important;
    }

    .hero-bottom-bar{
        bottom: 145px !important;
    }

    .hero-floating-cards{
        margin-top: -18px !important;
        grid-template-columns: 1fr !important;
    }

    .floating-card.floating-card-feature{
        min-height: auto !important;
    }
}

/* Mobil */
@media (max-width: 992px){
    .hero-slider{
        min-height: 920px !important;
        height: auto !important;
    }

    .hero-slide{
        min-height: 920px !important;
    }

    .hero-layout{
        padding-top: 60px !important;
        padding-bottom: 280px !important;
    }

    .hero-bottom-bar{
        bottom: 150px !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        align-items: flex-start !important;
    }

    .hero-dots{
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
    }

    .hero-floating-cards{
        margin-top: -10px !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

@media (max-width: 768px){
    .hero-slider{
        min-height: 820px !important;
    }

    .hero-slide{
        min-height: 820px !important;
    }

    .hero-layout{
        padding-top: 40px !important;
        padding-bottom: 250px !important;
    }

    .hero-bottom-bar{
        bottom: 132px !important;
        padding: 14px 16px !important;
    }

    .floating-card.floating-card-feature{
        padding: 22px 18px !important;
        border-radius: 22px !important;
    }

    .floating-card-icon{
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        border-radius: 16px !important;
    }

    .floating-card-icon i{
        font-size: 18px !important;
    }

    .floating-card-content strong{
        font-size: 17px !important;
    }

    .floating-card-content span{
        font-size: 14px !important;
        line-height: 1.7 !important;
    }
}

/* =========================================================
   HERO PROFESSIONAL CLEAN OVERRIDE
========================================================= */

.hero-slider-clean{
    height: 860px !important;
}

.hero-layout-clean{
    grid-template-columns: minmax(0, 1.08fr) 390px !important;
    align-items: center !important;
    gap: 34px !important;
    padding-top: 88px !important;
    padding-bottom: 170px !important;
    position: relative !important;
    z-index: 4 !important;
}

.hero-content-clean{
    max-width: 760px !important;
    position: relative !important;
    z-index: 5 !important;
}

.hero-content-clean h1{
    max-width: 760px !important;
    font-size: 66px !important;
    line-height: 1.02 !important;
    letter-spacing: -.05em !important;
    margin-bottom: 18px !important;
}

.hero-content-clean p{
    max-width: 620px !important;
    font-size: 18px !important;
    line-height: 1.9 !important;
    color: rgba(255,255,255,.84) !important;
}

.hero-slide .hero-mini-info{
    display: none !important;
}

.hero-showcase-card{
    position: relative !important;
    z-index: 5 !important;
    overflow: hidden !important;
    border-radius: 30px !important;
    background: rgba(255,255,255,.10) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    backdrop-filter: blur(14px) !important;
    box-shadow: 0 26px 60px rgba(0,0,0,.20) !important;
}

.hero-showcase-media{
    height: 290px !important;
    overflow: hidden !important;
    border-bottom: 1px solid rgba(255,255,255,.10) !important;
    background: rgba(255,255,255,.08) !important;
}

.hero-showcase-media img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.hero-showcase-body{
    padding: 24px 24px 22px !important;
}

.hero-showcase-badge{
    display: inline-flex !important;
    align-items: center !important;
    min-height: 32px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.12) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    color: rgba(255,255,255,.86) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    margin-bottom: 14px !important;
}

.hero-showcase-body h3{
    color: #fff !important;
    font-size: 28px !important;
    line-height: 1.15 !important;
    margin-bottom: 12px !important;
    letter-spacing: -.03em !important;
}

.hero-showcase-body p{
    color: rgba(255,255,255,.74) !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    margin-bottom: 18px !important;
}

.hero-showcase-list{
    display: grid !important;
    gap: 12px !important;
}

.hero-showcase-item{
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 50px !important;
    padding: 0 14px !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
}

.hero-showcase-item i{
    width: 18px !important;
    text-align: center !important;
    color: #ffffff !important;
    font-size: 15px !important;
    flex-shrink: 0 !important;
}

.hero-showcase-item span{
    color: rgba(255,255,255,.88) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    font-weight: 600 !important;
}

.hero-bottom-bar-clean{
    bottom: 54px !important;
    z-index: 3 !important;
    padding: 14px 20px !important;
    border-radius: 20px !important;
    background: rgba(12,18,35,.34) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,.18) !important;
    backdrop-filter: blur(12px) !important;
}

.hero-bottom-bar-clean .hero-counter strong{
    font-size: 28px !important;
}

.hero-bottom-bar-clean .hero-counter span{
    font-size: 14px !important;
}

.hero-bottom-bar-clean .hero-progress{
    height: 5px !important;
    background: rgba(255,255,255,.14) !important;
}

.hero-bottom-bar-clean .hero-progress-fill{
    background: linear-gradient(90deg, #ffffff, rgba(255,255,255,.88)) !important;
}

.hero-bottom-bar-clean .hero-dots{
    gap: 8px !important;
}

.hero-bottom-bar-clean .hero-dots button{
    width: 10px !important;
    height: 10px !important;
    background: rgba(255,255,255,.34) !important;
}

.hero-bottom-bar-clean .hero-dots button.active{
    width: 28px !important;
    height: 10px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
}

.hero-floating-cards{
    margin-top: -22px !important;
    position: relative !important;
    z-index: 8 !important;
}

.floating-card.floating-card-feature{
    min-height: 156px !important;
    padding: 26px 24px !important;
    border-radius: 26px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
}

.floating-card-icon{
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    border-radius: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-2)) !important;
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(49,39,131,.18) !important;
}

.floating-card-icon i{
    font-size: 20px !important;
}

.floating-card-content strong{
    display: block !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
    color: var(--dark) !important;
}

.floating-card-content span{
    display: block !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: #667085 !important;
}

/* Büyük ekran dengeleme */
@media (max-width: 1400px){
    .hero-content-clean h1{
        font-size: 60px !important;
    }
}

/* Tablet */
@media (max-width: 1240px){
    .hero-slider-clean{
        height: 980px !important;
    }

    .hero-layout-clean{
        grid-template-columns: 1fr !important;
        gap: 24px !important;
        padding-bottom: 210px !important;
    }

    .hero-content-clean h1{
        font-size: 56px !important;
        max-width: 780px !important;
    }

    .hero-showcase-card{
        width: min(100%, 560px) !important;
    }

    .hero-bottom-bar-clean{
        bottom: 48px !important;
    }

    .hero-floating-cards{
        grid-template-columns: 1fr !important;
        margin-top: -8px !important;
    }
}

/* Mobil */
@media (max-width: 992px){
    .hero-slider-clean{
        min-height: 860px !important;
        height: auto !important;
    }

    .hero-slide{
        min-height: 860px !important;
    }

    .hero-layout-clean{
        padding-top: 56px !important;
        padding-bottom: 200px !important;
    }

    .hero-content-clean h1{
        font-size: 44px !important;
    }

    .hero-content-clean p{
        font-size: 17px !important;
    }

    .hero-showcase-card{
        width: 100% !important;
    }

    .hero-showcase-media{
        height: 240px !important;
    }

    .hero-bottom-bar-clean{
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        align-items: flex-start !important;
        bottom: 34px !important;
    }

    .hero-bottom-bar-clean .hero-dots{
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
    }

    .hero-floating-cards{
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-top: 18px !important;
    }
}

@media (max-width: 768px){
    .hero-slider-clean{
        min-height: 760px !important;
    }

    .hero-slide{
        min-height: 760px !important;
    }

    .hero-layout-clean{
        padding-top: 36px !important;
        padding-bottom: 170px !important;
    }

    .hero-content-clean h1{
        font-size: 34px !important;
    }

    .hero-content-clean p{
        font-size: 15.5px !important;
        line-height: 1.8 !important;
    }

    .hero-showcase-media{
        height: 220px !important;
    }

    .hero-showcase-body{
        padding: 20px 18px !important;
    }

    .hero-showcase-body h3{
        font-size: 23px !important;
    }

    .hero-showcase-body p{
        font-size: 14px !important;
    }

    .hero-showcase-item{
        min-height: 46px !important;
        padding: 0 12px !important;
    }

    .hero-showcase-item span{
        font-size: 13.5px !important;
    }

    .hero-bottom-bar-clean{
        padding: 12px 14px !important;
        bottom: 24px !important;
    }

    .floating-card.floating-card-feature{
        padding: 22px 18px !important;
        min-height: auto !important;
    }

    .floating-card-icon{
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        border-radius: 16px !important;
    }

    .floating-card-content strong{
        font-size: 17px !important;
    }

    .floating-card-content span{
        font-size: 14px !important;
    }
}