/* === FEATURED PRODUCTS SLIDER (Kapsamlı) === */

/* === MODERN HERO FULLSCREEN === */
.hero-steps {
  position: absolute;
  right: 68%;
  bottom: 9vh;   /* ekran yüksekliğine göre yukarı çıkar */
  display: flex;
  gap: 18px;
  z-index: 3;
}
.hero-banner {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: #fff;
}

/* Video Fullscreen */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Koyu Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

/* İçerik */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #c89c1c;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* Butonlar */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: linear-gradient(90deg, #ffe082 0%, #c89c1c 100%);
  color: #232733;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #c89c1c 0%, #ffe082 100%);
  color: #181c23;
  transform: translateY(-3px) scale(1.04);
}

.btn-secondary {
  border: 1px solid #fff;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* Sağ Alt Steps */
/* Sağlam ve modern steps */
.step {
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(24,28,35,0.10), 0 1.5px 8px 0 rgba(200,156,28,0.10);
  padding: 16px 28px;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s, background 0.18s, border 0.18s;
  border: 2.5px solid #ffe082;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: #232733;
  cursor: pointer;
  text-decoration: none;
}
.step:hover {
  background: linear-gradient(90deg, #ffe082 0%, #c89c1c 100%);
  color: #181c23;
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 32px 0 rgba(200,156,28,0.18), 0 2px 10px 0 rgba(24,28,35,0.13);
  border-color: #c89c1c;
}
.step span {
  font-size: 1.05rem;
  font-weight: 900;
  color: #c89c1c;
  opacity: 1;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(200,156,28,0.10);
}
.step p {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 6px;
  color: #232733;
  letter-spacing: -0.5px;
  text-align: center;
}
.step a {
  color: #232733;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.step a:hover {
  color: #c89c1c;
  text-decoration: none;
}
@media (max-width: 900px) {
  .hero-steps {
    right: 0;
    left: 0;
    bottom: 12px;
    justify-content: center;
    gap: 8px;
    width: 100vw;
    padding: 0 8px;
  }
    .hero-steps {
      position: absolute;
      top: 18px;
      left: 0;
      right: 0;
      justify-content: center;
      gap: 8px;
      width: 100vw;
      padding: 0 8px;
      z-index: 20;
    }

  }

@media (max-width: 600px) {
  .hero-steps {
    gap: 4px;
    bottom: 2px;
    width: 100vw;
    padding: 0 2px;
  }
  .step {
    padding: 4px 4px;
    min-width: 44px;
    font-size: 0.85rem;
    border-radius: 10px;
    box-shadow: 0 1px 4px 0 rgba(24,28,35,0.10);
  }
  .step a, .step-title {
    font-size: 0.85rem;
  }
}

/* Animasyon */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === HERO FULLSCREEN === */
.fullscreen-bg {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 480px;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullscreen-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 10;
}
.fullscreen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, rgba(8,18,42,0.18) 0%, rgba(255,255,255,0.12) 100%);
  z-index: 11;
}
.fullscreen-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  text-align: center;
  width: 100%;
  max-width: 700px;
  color: #fff;
}
.super-title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.18;
  margin-bottom: 1.2rem;
  text-shadow: 0 6px 32px rgba(8,18,42,0.18);
}
.super-lead {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 500;
  margin-bottom: 2.2rem;
  color: #f5f5f5;
  text-shadow: 0 2px 12px rgba(8,18,42,0.12);
}
.super-btn {
  font-size: 1.18rem;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: 32px;
  background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
  color: #fff;
  border: none;
  box-shadow: 0 6px 32px 0 rgba(37,116,230,0.18);
  transition: background 0.32s cubic-bezier(.4,0,.2,1), color 0.22s, box-shadow 0.28s, border 0.22s, transform 0.22s;
}
.super-btn:hover {
  background: linear-gradient(90deg, #60a5fa 0%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 12px 36px 0 rgba(37,116,230,0.22);
  transform: scale(1.07) translateY(-2px);
}
/* Fixed Social Icons - Modern, Robust, Responsive */

body {
  background: #f7f8fa;
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
  color: #232733;
  margin: 0;
  padding: 0;
}
.hero-banner {
  position: relative;
  width: 100vw;
  min-height: 600px;
  overflow: hidden;
  background: #181c23;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.08);
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 0;
  z-index: 1;
}
/* .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,28,35,0.82) 0%, rgba(24,28,35,0.98) 100%);
  z-index: 2;
} */
.hero-title {
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -1px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.22);
  text-align: left;
  color: #fff;
}
.hero-lead {
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 32px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.hero-btn:hover {
  background: #fff;
  color: #232733;
  border-color: #ffe082;
  box-shadow: 0 4px 16px 0 rgba(234,178,22,0.18);
}
.hero-btn .arrow {
  font-size: 1.3em;
  margin-left: 8px;
  color: #ffe082;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,28,35,0.72) 0%, rgba(24,28,35,0.92) 100%);
  z-index: 2;
}
.hero-title {
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -1px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.18);
  text-align: center;
}
.hero-btn {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: #2563eb;
  border-radius: 999px;
  padding: 14px 36px;
  text-decoration: none;
  border: 0;
  box-shadow: 0 2px 8px 0 rgba(234,178,22,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  margin-top: 8px;
}
.hero-btn:hover {
  background: #1e40af;
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(234,178,22,0.18);
}
.hero-btn .arrow {
  font-size: 1.3em;
  margin-left: 8px;
  color: #ffe082;
}
.blog-section {
  background: #181c23;
  padding: 64px 0 48px 0;
  color: #fff;
}
.blog-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 40px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.blog-grid.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px;
}
.blog-card.category-card {
  background: #232733;
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
  min-height: 420px;
  border: 1.5px solid #232733;
}
.blog-card.category-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 12px 36px 0 rgba(234,178,22,0.18), 0 2px 16px 0 rgba(0,0,0,0.18);
  border-color: #eab216;
}
.blog-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.blog-card.category-card:hover .blog-img img {
  transform: scale(1.06) rotate(-1deg);
}
.blog-content {
  flex: 1 1 auto;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: 'Inter', Arial, sans-serif;
  letter-spacing: -0.5px;
}
.blog-card-desc {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 18px;
  flex: 1 1 auto;
}
.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;

  color: #ffffff;
  background: linear-gradient(135deg,#2b2f36,#1c2027);

  border: 1px solid #3a3f47;
  border-radius: 999px;

  padding: 10px 24px;
  text-decoration: none;

  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}

/* Sarı ışık efekti */
.blog-readmore::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg,transparent,rgba(255,208,0,0.25),transparent);
  opacity:0;
  transition:0.4s;
}

/* Hover */
.blog-readmore:hover {
  color:#111;
  background: linear-gradient(135deg,#ffd54f,#e6b800);
  border-color:#e6b800;
  box-shadow: 0 6px 20px rgba(230,184,0,0.35);
  transform: translateY(-2px);
}

.blog-readmore:hover::before{
  opacity:1;
}

/* =======================================================
   FEATURED PRODUCTS SLIDER — PREMIUM VERSION
======================================================= */
/* ===============================
   FEATURED PRODUCTS PREMIUM
================================= */

/* SLIDER WRAPPER */

.slider-wrapper{
  position:relative;
  overflow:hidden;
}

/* TRACK */

.slider-track{
  display:flex;
  gap:30px;
  transition:transform .7s cubic-bezier(.22,.61,.36,1);
}

/* CARD */

.product-card{
  min-width:340px;
  height:420px;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  box-shadow:0 18px 40px rgba(0,0,0,.15);
  transition:all .45s ease;
}

.product-card:hover{
  transform:translateY(-10px) scale(1.03);
}

/* IMAGE */

.product-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1.2s;
}

.product-card:hover img{
  transform:scale(1.12);
}

/* OVERLAY */

.card-overlay{
  position:absolute;
  bottom:0;
  width:100%;
  padding:35px 25px;
  background:linear-gradient(
  to top,
  rgba(0,0,0,.85),
  rgba(0,0,0,.4),
  transparent);
}

.card-overlay h3{
  color:white;
  font-size:22px;
  font-weight:700;
  letter-spacing:.5px;
}

/* ARROWS */

.nav-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:60px;
  height:60px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  font-size:26px;
  color:#fff;
  background:linear-gradient(135deg,#eab216,#ffcf3c);
  box-shadow:0 10px 25px rgba(0,0,0,.3);
  transition:all .3s;
  z-index:10;
}

.nav-arrow:hover{
  transform:translateY(-50%) scale(1.15) rotate(10deg);
  box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.prev{
  left:-25px;
}

.next{
  right:-25px;

}

/* DOTS */

.slider-dots{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:35px;
}

.slider-dots span{
  width:14px;
  height:14px;
  border-radius:50%;
  background:#d6d6d6;
  cursor:pointer;
  transition:all .3s;
  position:relative;
}

.slider-dots span.active{
  background:#eab216;
  transform:scale(1.4);
  box-shadow:0 0 12px rgba(234,178,22,.8);
}

/* RESPONSIVE */

@media(max-width:900px){

.product-card{
  min-width:260px;
  height:330px;
}

.nav-arrow{
  width:50px;
  height:50px;
}

}

@media(max-width:600px){

.product-card{
  min-width:220px;
  height:280px;
}

.card-overlay h3{
  font-size:18px;
}

}

/* ===== NAV ARROWS ===== */

.nav-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:65px;
  height:65px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  backdrop-filter:blur(10px);
  background:rgba(255,255,255,.6);
  font-size:26px;
  transition:.3s;
  z-index:5;
}

.nav-arrow:hover{
  background:var(--primary);
  color:#fff;
  transform:translateY(-50%) scale(1.15);
}

.prev{ left:-35px; }
.next{ right:-35px; }

/* ===== DOTS ===== */

.slider-dots{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:12px;
}

.slider-dots span{
  width:12px;
  height:12px;
  background:#ccc;
  border-radius:50%;
  cursor:pointer;
  transition:.3s;
}

.slider-dots span.active{
  background:var(--primary);
  transform:scale(1.3);
}

/* ===== RESPONSIVE ===== */

@media(max-width:1200px){
  .product-card{ flex:0 0 33.33%; }
}

@media(max-width:992px){
  .product-card{ flex:0 0 50%; height:360px; }
}

@media(max-width:600px){
  .product-card{ flex:0 0 100%; height:320px; }
  .prev{ left:10px; }
  .next{ right:10px; }
}
@media (max-width: 900px) {

  .hero-banner {
    min-height: 420px;
    width: 100vw;
  }
  .hero-bg {
    width: 100vw;
    height: 420px;
  }
  .hero-video {
    min-height: 220px;
    height: 420px;
    width: 100vw;
    max-width: 100vw;
    max-height: 100vh;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-content {
    padding: 32px 12px 18px 12px;
    max-width: 98vw;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }
  .hero-title {
    font-size: 1.3rem;
    text-align: center;
  }
  .hero-lead {
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-align: center;
  }
  .hero-btn {
    padding: 8px 16px;
    font-size: 0.95rem;
    margin: 0 auto;
  }
  .hero-steps {
    min-height: 40px;
    font-size: 0.95rem;
    width: 100vw;
    justify-content: center;
  }
  .blog-section {
    padding: 40px 0 24px 0;
  }
  .blog-title {
    font-size: 2rem;
  }
  .blog-grid.category-grid {
    gap: 18px;
  }
  .blog-card.category-card {
    min-height: 340px;
    border-radius: 14px;
  }
  .blog-content {
    padding: 18px 12px 14px 12px;
  }
}
@media (max-width: 600px) {
  .hero-banner {
    min-height: 220px;
    width: 100vw;
  }
  .hero-bg {
    width: 100vw;
    height: 220px;
  }
  .hero-video {
    min-height: 120px;
    height: 220px;
    width: 100vw;
    max-width: 100vw;
    max-height: 100vh;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-content {
    padding: 8px 2px 4px 2px;
    max-width: 100vw;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }
  .hero-title {
    font-size: 0.85rem;
    margin-bottom: 4px;
    text-align: center;
  }
  .hero-lead {
    font-size: 0.75rem;
    margin-bottom: 4px;
    text-align: center;
  }
  .hero-btn {
    padding: 4px 8px;
    font-size: 0.85rem;
    margin: 0 auto;
  }
  .hero-steps {
    min-height: 24px;
    font-size: 0.85rem;
    width: 100vw;
    justify-content: center;
  }
  .blog-section {
    padding: 24px 0 8px 0;
  }
 
  .hero-steps {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    width: 100vw;
    max-width: 100vw;
    padding: 0 8px;
    z-index: 20;
    overflow-x: auto;
  }
  .step {
    min-width: 110px;
    max-width: 150px;
    flex: 1 1 110px;
    box-sizing: border-box;
    font-size: 1rem;
    padding: 10px 8px;
    border-radius: 12px;
    margin: 0 2px;
  }
  .step a, .step-title {
    font-size: 1rem;
    padding: 0;
  }
  .hero-steps {
    top: 6px;
    gap: 4px;
    padding: 0 2px;
  }
  .step {
    min-width: 80px;
    max-width: 110px;
    font-size: 0.92rem;
    padding: 6px 4px;
    border-radius: 8px;
    margin: 0 1px;
  }
  .step a, .step-title {
    font-size: 0.92rem;
  }
  /* Mobil Menü */

  /* Hero Steps Mobil */
  .hero-steps {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    width: 100vw;
    max-width: 100vw;
    padding: 0 8px;
    z-index: 20;
    overflow-x: auto;
    background: none;
  }
  .step {
    min-width: 110px;
    max-width: 150px;
    flex: 1 1 110px;
    box-sizing: border-box;
    font-size: 1rem;
    padding: 10px 8px;
    border-radius: 12px;
    margin: 0 2px;
    background: rgba(255,255,255,0.95);
    color: #232733;
    box-shadow: 0 2px 8px 0 rgba(24,28,35,0.10);
    border: 2px solid #ffe082;
    font-weight: 700;
    text-align: center;
  }
  .step a, .step-title {
    font-size: 1rem;
    padding: 0;
    color: #232733;
    text-decoration: none;
    font-weight: 700;
  }
  .step:hover, .step:active {
    background: linear-gradient(90deg, #ffe082 0%, #c89c1c 100%);
    color: #181c23;
    border-color: #c89c1c;
  }

  .hero-steps {
    top: 6px;
    gap: 4px;
    padding: 0 2px;
  }
  .step {
    min-width: 80px;
    max-width: 110px;
    font-size: 0.92rem;
    padding: 6px 4px;
    border-radius: 8px;
    margin: 0 1px;
  }
  .step a, .step-title {
    font-size: 0.92rem;
  }

}

/* Homepage hero refresh */
.hero-banner {
  min-height: 100vh;
  padding: clamp(110px, 13vw, 148px) clamp(20px, 6vw, 80px) clamp(44px, 7vw, 68px);
  align-items: stretch;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: auto 4% 6% auto;
  width: min(36vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 178, 22, 0.22) 0%, rgba(234, 178, 22, 0) 72%);
  filter: blur(18px);
  z-index: 1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 12, 22, 0.86) 0%, rgba(8, 12, 22, 0.56) 46%, rgba(8, 12, 22, 0.7) 100%),
    radial-gradient(circle at 78% 24%, rgba(234, 178, 22, 0.14) 0%, rgba(234, 178, 22, 0) 26%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.hero-content {
  max-width: 760px;
  margin: 0;
  padding: clamp(20px, 2vw, 28px) 0;
  transform: translateY(-18px);
}

.hero-kicker {
  margin: 0 0 18px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0be39;
}

.hero-content h1 {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(2.7rem, 5.1vw, 4.85rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
  max-width: 12ch;
}

.hero-description {
  max-width: 56ch;
  margin: 22px 0 0;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  min-width: 176px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 16px 28px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.btn-primary {
  background: linear-gradient(135deg, #ffd66b 0%, #eab216 100%);
  color: #171b22;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffe39b 0%, #f0be39 100%);
  color: #12161d;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.62);
  transform: translateY(-2px);
}

.hero-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-category-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-category-strip i {
  color: #f0be39;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-trust span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: #f0be39;
  vertical-align: middle;
}

.hero-showcase {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
}

.hero-showcase-card {
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(12, 18, 30, 0.82) 0%, rgba(18, 25, 40, 0.72) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hero-showcase-card p {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0be39;
}

.hero-showcase-card h2 {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.hero-showcase-grid {
  display: grid;
  gap: 14px;
}

.hero-showcase-item {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-showcase-item:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 190, 57, 0.44);
  background: rgba(255, 255, 255, 0.1);
}

.hero-showcase-item i {
  font-size: 1.35rem;
  color: #ffd66b;
}

.hero-showcase-item strong {
  font-size: 1.08rem;
  line-height: 1.2;
  color: #ffffff;
}

.hero-showcase-item span {
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .hero-banner {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-content,
  .hero-showcase {
    max-width: none;
  }

  .hero-content {
    transform: translateY(-10px);
  }
}

@media (max-width: 640px) {
  .hero-banner {
    padding: 96px 16px 28px;
  }

  .hero-content,
  .hero-showcase-card,
  .hero-showcase-item {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8.4vw, 2.8rem);
    max-width: 12ch;
  }

  .hero-content {
    transform: none;
  }

  .hero-description {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-category-strip {
    gap: 10px;
  }

  .hero-category-strip span {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-trust {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-width: 0;
  }
}

/* Homepage lower sections refresh */
.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(234, 178, 22, 0.12);
  color: #a26d00;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-intro {
  margin: 14px auto 0;
  max-width: 62ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #5b6472;
}

.blog-section {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(234, 178, 22, 0.12) 0%, rgba(234, 178, 22, 0) 24%),
    linear-gradient(180deg, #0e1522 0%, #121927 100%);
  padding: clamp(56px, 8vw, 92px) 0;
  color: #ffffff;
}

.blog-wrap {
  max-width: 1240px;
  padding: 0 20px;
}

.blog-section .section-kicker {
  background: rgba(240, 190, 57, 0.14);
  color: #ffd66b;
}

.blog-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  color: #ffffff;
  text-shadow: none;
}

.blog-section .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

.blog-grid.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card.category-card {
  min-height: 0;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(24, 33, 48, 0.92) 0%, rgba(16, 22, 34, 0.96) 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.blog-card.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 190, 57, 0.4);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.26);
}

.blog-card.category-card:focus-visible {
  outline: 3px solid rgba(240, 190, 57, 0.45);
  outline-offset: 4px;
  border-color: rgba(240, 190, 57, 0.4);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.26);
}

.blog-img {
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #ffffff;
  border-radius: 10px 10px 0 0;
}

.blog-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}

.blog-content {
  padding: 24px 22px 22px;
}

.blog-card-title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #ffffff;
}

.blog-card-desc {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.68;
}

.blog-readmore {
  padding: 10px 18px;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.blog-readmore:hover {
  background: linear-gradient(135deg, #ffd66b, #eab216);
  color: #111827;
  border-color: transparent;
}

@media (max-width: 1100px) {
  .blog-grid.category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section-heading {
    margin-bottom: 26px;
  }

  .section-intro {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .blog-grid.category-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-card.category-card {
    border-radius: 10px;
  }

  .blog-img {
    padding: 8px;
  }

  .blog-img img {
    max-width: 100%;
    max-height: 100%;
  }

  .blog-content {
    padding: 20px 18px 18px;
  }
}

/* Homepage hero mobile refinement */
@media (max-width: 768px) {

  .hero-banner {
    min-height: auto;
    padding: 14px 12px 18px;
    text-align: left;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 12, 22, 0.8) 0%, rgba(8, 12, 22, 0.62) 42%, rgba(8, 12, 22, 0.84) 100%),
      radial-gradient(circle at 76% 20%, rgba(234, 178, 22, 0.12) 0%, rgba(234, 178, 22, 0) 28%);
  }

  .hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.58fr) minmax(136px, 0.42fr);
    align-items: start;
    gap: 12px;
    width: 100%;
    transform: translateY(-26px);
  }

  .hero-content {
    max-width: 100%;
    padding: 4px 0 0;
    text-align: left;
    transform: none;
  }

  .hero-content h1 {
    font-size: clamp(1.72rem, 5.8vw, 2.3rem);
    line-height: 1.03;
    max-width: 7ch;
  }

  .hero-content p {
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
    margin-top: 18px;
  }

  .btn-primary,
  .btn-secondary {
    width: auto;
    min-width: 0;
    min-height: 42px;
    padding: 10px 14px;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero-category-strip {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
  }

  .hero-category-strip span {
    width: auto;
    min-height: 34px;
    padding: 8px 10px;
    font-size: 0.75rem;
    border-radius: 999px;
  }

  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin-top: 14px;
  }

  .hero-trust span {
    font-size: 0.76rem;
  }

  .hero-showcase {
    width: 100%;
    gap: 8px;
  }

  .hero-showcase-card {
    padding: 12px 14px;
    border-radius: 18px;
    text-align: left;
  }

  .hero-showcase-card p {
    margin-bottom: 8px;
    font-size: 0.66rem;
  }

  .hero-showcase-card h2 {
    font-size: clamp(0.98rem, 3vw, 1.22rem);
    line-height: 1.08;
  }

  .hero-showcase-grid {
    display: grid;
    gap: 8px;
  }

  .hero-showcase-item {
    width: 100%;
    padding: 10px 12px;
    border-radius: 16px;
    gap: 4px;
  }

  .hero-showcase-item i {
    font-size: 0.92rem;
  }

  .hero-showcase-item strong {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .hero-showcase-item span {
    font-size: 0.56rem;
    line-height: 1.32;
  }

  .social-fixed {
    right: 50%;
    left: auto;
    top: auto;
    bottom: 14px;
    transform: translateX(50%);
    flex-direction: row;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    backdrop-filter: blur(10px);
  }

  .social-fixed .social-btn {
    width: 44px;
    height: 44px;
    font-size: 1.45rem;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    padding: 8px 10px 14px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.6fr) minmax(118px, 0.4fr);
    gap: 10px;
    transform: translateY(-30px);
  }

  .hero-content h1 {
    font-size: 1.48rem;
    max-width: 6.5ch;
  }

  .hero-description {
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .btn-primary,
  .btn-secondary {
    min-height: 38px;
    font-size: 0.72rem;
    padding: 8px 10px;
  }

  .hero-category-strip {
    gap: 6px;
  }

  .hero-category-strip span {
    min-height: 30px;
    padding: 7px 9px;
    font-size: 0.66rem;
  }

  .hero-trust {
    gap: 6px 10px;
  }

  .hero-trust span {
    font-size: 0.68rem;
  }

  .hero-showcase-card {
    padding: 10px 12px;
  }

  .hero-showcase-card p {
    font-size: 0.58rem;
  }

  .hero-showcase-card h2 {
    font-size: 0.88rem;
  }

  .hero-showcase-item {
    padding: 9px 10px;
    border-radius: 14px;
  }

  .hero-showcase-item strong {
    font-size: 0.68rem;
  }

  .hero-showcase-item span {
    font-size: 0.52rem;
  }

  .social-fixed {
    right: 50%;
    bottom: 10px;
    padding: 8px 10px;
  }

  .social-fixed .social-btn {
    width: 38px;
    height: 38px;
    font-size: 1.18rem;
  }
}