:root{
  --brand:#010326;
  --text-on-brand:#ffffff;
  --text-on-light:#010326;
  --bg:#010326;
  --overlay: rgba(1,3,38,0.55);
}

h1{
  font-size: clamp(26px, 3.5vw, 40px) !important;
  
  line-height: 1.2;
}

h2{
  font-size: clamp(20px, 2.8vw, 28px) !important;
  
}

h3{
  font-size: clamp(16px, 2vw, 20px) !important;
  
}

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

body{
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text-on-brand);
  background: var(--bg);
}


/* CONTAINER */
.container{
  width:100%;
  max-width:1200px;
  padding:0 20px;
  margin:0 auto;
}

/* HEADER */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background: rgba(1,3,38,0.85);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.header-inner{
  height:102px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:8px 0;
}

.logo img{
  height:96px;
}

/* NAV */
.nav-list{
  display:flex;
  gap:28px;
  list-style:none;
}

.nav-list a{
  text-decoration:none;
  font-size:15.5px;
  font-weight:600;
  color:var(--text);
}

.nav-list a:hover{
  color:#ffffff;
}

.nav-list a{
  position:relative;
  transition:color .3s ease;
}

.nav-list a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background: rgba(255,255,255,0.85);
  transition:width .3s ease;
}

.nav-list a:hover::after{
  width:100%;
}

/* MOBILE MENU BUTTON */
.menu-btn{
  display:none;
  background:none;
  border:none;
  font-size:26px;
  cursor:pointer;
  color: #fff;
}

/* HERO */
.hero{
  position:relative;
  height:100vh;
  width:100%;
  margin-top:102px;
  overflow:hidden;
}

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

.hero-overlay{
  position:absolute;
  inset:0;
  background:var(--overlay);
}

.hero-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:720px;
  color:#fff;
  text-align: center;
  margin: 0 auto;
}

.hero-content h1{
  font-size:clamp(20px,3vw,30px);
  line-height:1.1;
  margin-bottom:16px;
}

.hero-content p{
  font-size:18px;
  max-width:520px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width:992px){
  .nav{
    position:absolute;
    top:112px;
    right:20px;
    background: rgba(1,3,38,0.98);
    border-radius:12px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    display:none;
  }

  .nav-list{
    flex-direction:column;
    padding:16px;
    gap:14px;
  }

  .menu-btn{
    display:block;
  }

  .nav.active{
    display:block;
  }
}

/* Marka Şerit */
.brand-strip{
  background: var(--brand);
  color: var(--text-on-brand);
  padding: 26px 0;
}

.brand-strip-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.brand-strip-text h3{
  font-size: 34px;
  margin: 0 0 10px;
  color: var(--text-on-brand);
}
.brand-strip-text h4{
  font-size: 16px;
  margin: 0 0 10px;
  color: var(--text-on-brand);
}

.brand-strip-text p{
  font-size: 16px;
  opacity: .85;
  max-width: 600px;
}

.brand-strip-btn{
  background:#ffffff;
  color:var(--brand);
  padding:16px 34px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  transition:transform .2s ease, box-shadow .2s ease;
}

.brand-strip-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  background:rgba(255,255,255,.9);
}

/* Responsive */
@media (max-width: 992px){
  .brand-strip-inner{
    flex-direction:column;
    text-align:center;
  }
}

/* ====================
   BLOG 
   ==================== */

/* Anchor offset for fixed header */
#blog{ scroll-margin-top: 120px; }

/* -------------------------
   HOME (index.html) teaser section
   ------------------------- */
.home-blog{
  background:#ffffff;
  color: var(--brand);
  padding: 30px 0 40px;
}

.blog-head{
  display:flex;
  justify-content:center;
  text-align:center;
  margin-bottom: 18px;
}

.blog-title{
  margin-top: 6px;
  color: var(--brand);
}

/* Shared grid (used both on home + blog page) */
.blog-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* HOME card (anchor) */
.home-blog .blog-card{
  position: relative;
  display:block;
  text-decoration:none;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.10);
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
  background:#fff;
  transition: transform .18s ease, box-shadow .18s ease;
}

.home-blog .blog-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(0,0,0,.18);
}

.home-blog .blog-img{
  overflow:hidden;
}

.home-blog .blog-img img{
  display:block;
  width:100%;
  height: 240px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .25s ease;
}

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

/* Home overlay */
.home-blog .blog-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(2,6,23,0.00) 0%,
    rgba(2,6,23,0.35) 55%,
    rgba(2,6,23,0.82) 100%
  );
  z-index: 1;
  pointer-events:none;
}

/* Home title on image */
.home-blog .blog-card h4{
  position:absolute;
  left:16px;
  right:16px;
  bottom:14px;
  margin:0;
  padding:0;
  z-index:2;
  color:#fff;
  font-weight:700;
  font-size:18px;
  line-height:1.2;
  letter-spacing:-0.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

/* Home: 'Tümünü Göster' */
.blog-all{
  display:flex;
  justify-content:center;
  margin-top: 18px;
}

.blog-all-btn{
  background: var(--brand);
  color:#fff;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease;
}

.blog-all-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

/* -------------------------
   BLOG PAGE (blog.html)
   ------------------------- */
.blog-page{
  padding: 110px 0 60px;
}

/* Blog page subtitle (blog.html uses .blog-subtitle) */
.blog-subtitle{
  text-align: center;
  margin: 6px 0 18px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  color: rgba(255,255,255,0.85); /* koyu zeminde şık */
}

.blog-filters{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  justify-content:center;
  margin: 0 auto 22px;
}

.filter-btn{
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  color: #0f172a;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.filter-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

.filter-btn.is-active{
  background: #0b1026;
  color: #fff;
  border-color: rgba(255,255,255,0.12);
}

/* Blog page cards (rendered by blog.js) */
.blog-page .blog-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f4f6;
  min-height: 190px;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  transition: transform .18s ease, box-shadow .18s ease;
}

.blog-page .blog-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.16);
}

.blog-page .blog-card .card-img{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.03);
  transition: transform .25s ease;
}

.blog-page .blog-card:hover .card-img{
  transform: scale(1.08);
}

.blog-page .blog-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(2,6,23,0.10) 0%, rgba(2,6,23,0.72) 70%, rgba(2,6,23,0.85) 100%);
}

.blog-page .blog-card .card-content{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
}

.blog-page .blog-card .card-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 12px;
  font-weight: 700;
  opacity: .95;
}

.blog-page .blog-card .card-title{
  margin-top: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.blog-page .blog-card .card-meta{
  margin-top: 8px;
  font-size: 12px;
  opacity: .9;
}

/* Pagination (blog.html) */
.blog-pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 14px;
  margin-top: 22px;
}

.page-arrow{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background:#fff;
  cursor:pointer;
  font-size: 22px;
  line-height: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .15s ease, box-shadow .15s ease;
}

.page-arrow:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.page-arrow:disabled{
  opacity: .45;
  cursor: not-allowed;
  box-shadow:none;
  transform:none;
}

.dots-viewport{
  width: 140px;
  overflow:hidden;
}

.dots-track{
  display:flex;
  gap: 8px;
  transition: transform .25s ease;
  will-change: transform;
}

.page-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  cursor:pointer;
  flex: 0 0 auto;
}

.page-dot.is-active{
  background: #ffffff;
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 1100px){
  .blog-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .blog-grid{ grid-template-columns: 1fr; }
  .home-blog .blog-img img{ height: 220px; }
  .dots-viewport{ width: 120px; }
}


/* CONTACT BAND */
/* CONTACT BAND - COMPACT */

.contact-section{
  background: var(--brand);
  color: var(--text-on-brand);
  padding: 28px 0 32px;   /* üst ve alt daraltıldı */
}

.contact-title{
  text-align: center;
  margin-bottom: 26px;   /* 40px → 26px */
}

.contact-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;             /* 40px → 28px */
  text-align: center;
}

.contact-item img{
  width: 32px;           /* 36px → 32px */
  height: 32px;
  margin-bottom: 12px;   /* 16px → 12px */
}

.contact-item h3{
  margin-bottom: 6px;    /* 8px → 6px */
}

.contact-item p{
  opacity: 0.85;
  line-height: 1.5;
}

@media (max-width: 992px){
  .contact-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* WHITE FOOTER */

.footer-white{
  background:#ffffff;
  padding: 40px 0 30px;
  border-top: 1px solid #e6e6e6;
}

.footer-white-inner{
  text-align:center;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.footer-links a{
  text-decoration:none;
  font-size:15px;
  color:var(--brand);
  font-weight:500;
  transition: all .3s ease;
}

.footer-links a:hover{
  opacity:.7;
}

.footer-copy{
  font-size:14px;
  color:#666;
}

/* INSTAGRAM FOOTER BLOCK */

.footer-instagram{
  text-align:center;
  margin-bottom:30px;
}

.footer-instagram p{
  font-size:15px;
  margin-bottom:14px;
  color: var(--brand);
}

.instagram-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:50%;
  background: var(--brand);
  transition: all .3s ease;
}

.instagram-icon img{
  width:20px;
  height:20px;
  filter: brightness(0) invert(1); /* ikon beyaz olur */  
}

.instagram-icon:hover{
  transform: translateY(-3px);
  opacity:.85;
}


/* PAGE (KVKK / Policy) */

.page{
  background:#fff;
}

/* üst başlık alanı */
.page-hero{
  padding: 120px 0 34px; /* header fixed olduğu için üstten boşluk */
  background: linear-gradient(180deg, rgba(1,3,38,0.08) 0%, rgba(1,3,38,0.00) 100%);
}

.page-subtitle{
  color: #49506a;
  max-width: 780px;
  margin: 0;
  line-height: 1.7;
}

/* içerik kartı */
.policy{
  padding: 10px 0 30px;
}

.policy-card{
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(1,3,38,0.10);
  border: 1px solid rgba(1,3,38,0.08);
  padding: 34px 34px;
  max-width: 980px;
  margin: 0 auto;
}

.policy-card h3{
  color: var(--brand);
  font-size: 10px;
  margin: 14px 0 10px;
}

.policy-card p{
  color: #2a2f3a;
  line-height: 1.85;
  margin: 0 0 10px;
}

/* mobil */
@media (max-width: 768px){
  .page-hero{ padding: 105px 0 26px; }
  .policy-card{ padding: 22px 18px; border-radius: 16px; }
}

.related-posts{
  max-width: 980px;
  margin: 28px auto 0;
  padding: 0 16px;
}

.related-posts h3{
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

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

.related-card .blog-img img{
  height: 190px; /* kartlar küçük olsun */
}

@media (max-width: 760px){
  .related-grid{ grid-template-columns: 1fr; }
  .related-card .blog-img img{ height: 200px; }
}

.related-posts h3{
  text-align: center;
  color: #010326;
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 800;
}





/* ROI CALCULATOR */
.roi-section{
  padding: 120px 0 80px; /* üst boşluğu arttırdık */
  background: #010326;  /* marka rengi */
  color: #f3f4f6;
}


.roi-wrap{ max-width: 980px; }

.roi-title{
  margin: 0 0 10px;
  font-size: clamp(20px, 2.2vw, 34px);
  letter-spacing: -0.03em;
  text-align: center;
}

.roi-title span{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-style: italic;
  opacity: .9;
}

.roi-subtitle{
  margin: 0 auto 28px;
  max-width: 760px;
  text-align: center;
  color: rgba(243,244,246,.75);
  line-height: 1.6;
}

.roi-card{
  margin: 0 auto;
  padding: 28px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.roi-row{
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.roi-row:last-of-type{ border-bottom: none; }

.roi-label{
  display:block;
  margin-bottom: 10px;
  color: rgba(243,244,246,.82);
  font-weight: 600;
  font-size: 17px;
}

.roi-control{
  display:flex;
  align-items:center;
  gap: 14px;
}

.roi-control input[type="range"]{
  width: 100%;
  accent-color: #ffffff;
}

.roi-badge{
  min-width: 112px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(243,244,246,.9);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.roi-btn{
  width:100%;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease;
}
.roi-btn:hover{
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.5);
}

.roi-results{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);

  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .25s ease;
}
.roi-results.is-open{
  max-height: 900px;
  opacity: 1;
}

.roi-results-title{
  margin: 0 0 14px;
  text-align: center;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.roi-kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 860px){
  .roi-kpis{ grid-template-columns: 1fr; }
}

.roi-kpi{
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.roi-kpi-label{
  color: rgba(243,244,246,.72);
  font-weight: 600;
  margin-bottom: 10px;
}
.roi-kpi-value{
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.roi-summary{
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.roi-summary-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 4px;
  color: rgba(243,244,246,.85);
  font-variant-numeric: tabular-nums;
}
.roi-summary-row + .roi-summary-row{
  border-top: 1px solid rgba(255,255,255,.08);
}


.roi-label{
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.roi-label-title{
  font-weight: 600;
  color: #ffffff;
}

.roi-label-desc{
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
}

.roi-label-desc{
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.45);
}


@media (max-width: 768px){
  .roi-label{
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}


/* ROI Contact Strip */
.roi-contact-strip {
  background: #ceceda;
  padding: 40px 20px;
  border-top: 1px solid #eaeaea;
}

.roi-contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.roi-contact-text h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 600;
  color: #0a0f2c; /* koyu lacivert */
}

.roi-contact-text p {
  margin: 0;
  font-size: 16px;
  color: #010326;
}

.roi-contact-btn {
  background: #0a0f2c;
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.roi-contact-btn:hover {
  background: #1b2352;
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  .roi-contact-container {
    flex-direction: column;
    text-align: center;
  }

  .roi-contact-btn {
    width: 100%;
    text-align: center;
  }
}

.roi-summary-note{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);

  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.795);
}

.mx-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  background: #010326;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.mx-btn:hover {
  background: #020c45;
  transform: translateY(-2px);
}

.mx-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mx-btn {
  margin-top: auto;
}

.mx-btn {
  display: table;
  margin: 20px auto 0;
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  opacity: 0.85;
}

.nav-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s ease;
}

.nav-dropdown.is-open .nav-caret {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 290px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(1, 3, 38, 0.08);
  border-radius: 18px;
  padding: 10px;
  list-style: none;
  margin: 0;
  box-shadow: 0 20px 50px rgba(1, 3, 38, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  z-index: 1000;
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: 12px;
  color: #010326;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: #f3f5fb;
  color: #010326;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================
   MOBIL
========================= */

@media (max-width: 991px) {
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list > li {
    width: 100%;
  }

  .nav-list > li > a,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 14px;
    padding: 6px 0 8px 14px;
    margin-top: 4px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
}

@media (max-width: 991px) {
  .nav {
    display: none;
    width: 100%;
    background: #010326;
    padding: 16px 0 6px;
  }

  .nav.is-open {
    display: block;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .header .nav {
    left: 16px;
    right: 16px;
    width: auto;
    max-width: calc(100% - 32px);
    padding: 18px 20px;
    box-sizing: border-box;
    overflow: visible;
  }

  .header .nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .header .nav-list li {
    margin: 0;
  }

  .header .nav-list a {
    display: block;
    padding: 10px 0;
  }
}