:root{
  --bg:#0b0b0b;
  --text:#f5f5f5;
  --muted:#b8b8b8;
  --line:#1d1d1d;
  --panel:#0f0f0f;
  --accent:#ffffff;
  --accent-blue:#0ea5e9;
  --accent-purple:#8b5cf6;
  --accent-pink:#ec4899;
  --maxw:1280px;
  --gutter:28px;
  --navH:70px;
  }

  html.blogs-page{ scroll-padding-top: var(--navH); scroll-behavior: smooth; }
  body.blogs-page, .blogs-page body{
  background:var(--bg);
  color:var(--text);
  font-family:Inter,system-ui,Arial,sans-serif;
  overflow-x: hidden;
  }
  .container{ max-width:var(--maxw); margin:0 auto; padding:0 calc(var(--gutter)); }

  /* Animated Background */
  body.blogs-page::before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
      radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 40% 90%, rgba(236, 72, 153, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: bgPulse 20s ease-in-out infinite;
  }

  @keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
  }

  body.blogs-page > * {
    position: relative;
    z-index: 1;
  }
  
  /* ===== HERO SECTION - REDESIGNED ===== */
  .blogs-hero {
    position: relative;
    min-height: clamp(500px, 65vh, 720px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    margin-top: var(--navH);
  }

  /* Geometric Background */
  .hero-geometric-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.4;
  }

  .geo-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(14, 165, 233, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(14, 165, 233, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 80%);
    animation: gridFloat 20s ease-in-out infinite;
  }

  @keyframes gridFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }

  .geo-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
    height: 1px;
    width: 100%;
  }

  .geo-line-1 {
    top: 20%;
    animation: lineSlide 8s ease-in-out infinite;
  }

  .geo-line-2 {
    top: 50%;
    animation: lineSlide 10s ease-in-out infinite;
    animation-delay: -3s;
  }

  .geo-line-3 {
    top: 80%;
    animation: lineSlide 12s ease-in-out infinite;
    animation-delay: -6s;
  }

  @keyframes lineSlide {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(100%); opacity: 1; }
  }

  .geo-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.15);
  }

  .geo-circle-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    right: 10%;
    animation: circleFloat 15s ease-in-out infinite;
  }

  .geo-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -5%;
    left: 5%;
    animation: circleFloat 18s ease-in-out infinite;
    animation-delay: -8s;
  }

  @keyframes circleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
  }

  /* Hero Content */
  .hero-content {
    position: relative;
    z-index: 2;
    padding-top: clamp(60px, 8vh, 100px);
    padding-bottom: clamp(60px, 8vh, 100px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 3.5vh, 36px);
  }

  /* Badge */
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(139, 92, 246, 0.08));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeInScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.2s;
  }

  .hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent-blue);
    animation: iconSpin 10s linear infinite;
  }

  @keyframes iconSpin {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
  }

  @keyframes fadeInScale {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Title */
  .hero-title {
    font-family: "Bebas Neue", Inter, system-ui;
    font-size: clamp(48px, 9vw, 110px);
    line-height: 1;
    margin: 0;
    letter-spacing: 0.02em;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vw, 16px);
  }

  .hero-title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(50px);
    filter: drop-shadow(0 4px 32px rgba(14, 165, 233, 0.2));
  }

  .hero-title-line:nth-child(1) {
    animation: slideInTitle 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
  }

  .hero-title-line:nth-child(2) {
    animation: slideInTitle 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
  }

  @keyframes slideInTitle {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Description */
  .hero-description {
    max-width: 680px;
    font-size: clamp(15px, 1.15rem, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Tags */
  .hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: 1.1s;
  }

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

  .hero-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.6), rgba(20, 20, 20, 0.8));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    cursor: default;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hero-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(139, 92, 246, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .hero-tag:hover {
    transform: translateY(-3px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.2);
  }

  .hero-tag:hover::before {
    opacity: 1;
  }

  /* Staggered tag animation */
  .hero-tag:nth-child(1) { animation: tagPop 0.5s ease forwards; animation-delay: 1.2s; opacity: 0; }
  .hero-tag:nth-child(2) { animation: tagPop 0.5s ease forwards; animation-delay: 1.3s; opacity: 0; }
  .hero-tag:nth-child(3) { animation: tagPop 0.5s ease forwards; animation-delay: 1.4s; opacity: 0; }
  .hero-tag:nth-child(4) { animation: tagPop 0.5s ease forwards; animation-delay: 1.5s; opacity: 0; }
  .hero-tag:nth-child(5) { animation: tagPop 0.5s ease forwards; animation-delay: 1.6s; opacity: 0; }
  .hero-tag:nth-child(6) { animation: tagPop 0.5s ease forwards; animation-delay: 1.7s; opacity: 0; }

  @keyframes tagPop {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .blogs-hero {
      min-height: clamp(480px, 60vh, 600px);
    }

    .geo-circle-1 {
      width: 250px;
      height: 250px;
    }

    .geo-circle-2 {
      width: 200px;
      height: 200px;
    }

    .hero-badge {
      font-size: 11px;
      padding: 8px 16px;
    }

    .hero-tags {
      gap: 8px;
    }

    .hero-tag {
      font-size: 12px;
      padding: 8px 16px;
    }
  }
  
  /* ===== FILTER STRIP ===== */
  .strip{
  padding: clamp(20px, 3.2vh, 32px) 0;
  border-top:1px solid rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.06);
  background: rgba(15,15,15,0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  }

  .strip--light{
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.08);
    color: var(--text);
  }

  .controls-inner{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    align-items:center;
    justify-content:space-between;
  }

  /* chips */
  .chips{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
  }

  .chip{
  appearance:none;
  border:1px solid rgba(255,255,255,0.12);
  border-radius:999px;
  padding:11px 18px;
  font-weight:800;
  font-size: 13px;
  background: rgba(20,20,20,0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #d0d0d0;
  cursor:pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  }

  .chip::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(139, 92, 246, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .chip:hover{
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
  }

  .chip:hover::before{
    opacity: 1;
  }

  .chip.active{
    border-color: rgba(14, 165, 233, 0.6);
    background: rgba(14, 165, 233, 0.15);
    color: #fff;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.25);
  }

  .chip.active::before{
    opacity: 1;
  }

  /* tools */
  .tools{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap: wrap;
  }

  .tools .label{
    color:#a0a0a0;
    font-size:12px;
    font-weight:800;
    letter-spacing:.06em;
    text-transform: uppercase;
  }

  .tools .search input{
  background: rgba(20,20,20,0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  height:42px;
  padding:0 16px;
  color: #fff;
  min-width:240px;
  font:inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .tools .search input::placeholder{
    color: #888;
  }

  .tools .search input:focus{
  outline:none;
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 0 0 3px rgba(14,165,233,.12), 0 4px 12px rgba(14, 165, 233, 0.15);
  background: rgba(20,20,20,0.8);
  }

  .select-wrap{
    position:relative;
  }

  .select-wrap select{
  appearance:none;
  background: rgba(20,20,20,0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  height:42px;
  padding:0 40px 0 16px;
  color: #fff;
  font-weight:700;
  letter-spacing:.02em;
  cursor:pointer;
  transition: all 0.3s ease;
  }

  .select-wrap select:hover{
    border-color: rgba(255,255,255,0.2);
  }

  .select-wrap select:focus{
    outline: none;
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 0 0 3px rgba(14,165,233,.12);
  }

  .select-wrap::after{
  content:'▾';
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  opacity:.7;
  pointer-events:none;
  color: #fff;
  font-size: 12px;
  }
  
  /* ===== FEATURED ===== */
  .featured{ padding: 48px 0; }
  .featured-inner{ display:grid; grid-template-columns: 2fr 1fr; gap:20px; }
  @media (max-width: 900px){ .featured-inner{ grid-template-columns: 1fr; } }

  .feat-card{
  position:relative;
  display:block;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.08);
  background:#0d0d0d;
  color:#fff;
  box-shadow:0 12px 40px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.03);
  text-decoration:none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  opacity: 0;
  animation: cardFadeIn 0.6s ease forwards;
  }

  .feat-card::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
  }

  .feat-card:hover{
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(14, 165, 233, 0.3);
  }

  .feat-card:hover::before{
    opacity: 1;
  }

  .feat-card .cover{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:.85;
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1), opacity .4s ease;
  }

  .feat-card:hover .cover{
    transform: scale(1.08);
    opacity: 1;
  }

  .feat-card .body{
  position:relative;
  padding: 24px;
  display:flex;
  flex-direction:column;
  gap:10px;
  background: linear-gradient(180deg, rgba(11,11,11,0) 30%, rgba(11,11,11,0.75) 60%, rgba(11,11,11,0.95) 100%);
  z-index: 2;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  }

  .feat-card .pill{
  align-self:flex-start;
  border:1px solid rgba(255,255,255,0.2);
  border-radius:999px;
  padding:8px 14px;
  font-size:11px;
  font-weight:800;
  background: rgba(0,0,0,0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color:#fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  }

  .feat-card.large{
    min-height:340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .feat-card.small{
    min-height:200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .feat-card .t{
    font-size:26px;
    margin:0;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  }

  .feat-card.large .t{
    font-size: 32px;
  }

  .feat-card .e{
    color:#e0e0e0;
    font-size:15px;
    line-height: 1.5;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  }
  
  /* ===== GRID ===== */
  .grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
  padding: 40px 0;
  }
  @media (max-width: 960px){ .grid{ grid-template-columns:repeat(2,1fr); gap:20px; } }
  @media (max-width: 640px){ .grid{ grid-template-columns:1fr; } }

  .card{
  position: relative;
  border:1px solid rgba(255,255,255,0.06);
  border-radius:18px;
  overflow:hidden;
  background: linear-gradient(135deg, #0d0d0d 0%, #111111 100%);
  box-shadow:0 10px 30px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: cardFadeIn 0.5s ease forwards;
  }

  .card::before{
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
  }

  .card:hover{
    transform: translateY(-8px);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,.6), 0 0 0 1px rgba(14, 165, 233, 0.2);
  }

  .card:hover::before{
    opacity: 1;
  }

  .card .thumb{
    position:relative;
    display:block;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
  }

  .card .thumb::after{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11,11,11,0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .card:hover .thumb::after{
    opacity: 1;
  }

  .card .thumb img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
  transform:scale(1.05);
  filter:brightness(.92) saturate(1.1);
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1), filter .4s ease;
  }

  .card:hover .thumb img{
    transform:scale(1.12);
    filter:brightness(1) saturate(1.2);
  }

  .card .thumb .pill{
  position:absolute;
  left:12px;
  top:12px;
  border:1px solid rgba(255,255,255,.24);
  background: rgba(0,0,0,.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius:999px;
  padding:6px 12px;
  font-size:11px;
  font-weight:800;
  color:#fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
  transition: all 0.3s ease;
  }

  .card:hover .thumb .pill{
    background: rgba(14, 165, 233, 0.3);
    border-color: rgba(14, 165, 233, 0.5);
    transform: translateY(-2px);
  }

  .card .info{
    padding:18px;
    display:grid;
    gap:10px;
  }

  .card .title{
  display:inline-block;
  font-weight:800;
  color:#fff;
  text-decoration:none;
  line-height:1.3;
  font-size: 17px;
  transition: color 0.3s ease;
  }

  .card .title:hover{
    color: var(--accent-blue);
  }

  .card .muted{
    color:#b8b8b8;
    line-height: 1.5;
    font-size: 14px;
  }

  .card .meta{
    display:flex;
    gap:8px;
    align-items:center;
    opacity:.75;
    font-size:13px;
    color: #999;
  }
  
  /* ===== LOAD BAR ===== */
  .loadbar{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    padding: 20px 0 40px;
  }

  .btn{
  display:inline-flex;
  align-items:center;
  justify-content: center;
  gap:10px;
  padding:14px 28px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.2);
  font-weight:800;
  font-size: 14px;
  letter-spacing:.06em;
  text-transform:uppercase;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(139, 92, 246, 0.1));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color:#fff;
  cursor:pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  }

  .btn::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(139, 92, 246, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .btn:hover{
    border-color: rgba(14, 165, 233, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3), 0 0 0 1px rgba(14, 165, 233, 0.2);
  }

  .btn:hover::before{
    opacity: 1;
  }

  .btn:active{
    transform: translateY(0);
  }

  .btn:disabled{
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }

  .btn:disabled:hover{
    border-color: rgba(255,255,255,0.2);
    box-shadow: none;
  }

  #loadStatus{
    color: #888;
    font-size: 14px;
    font-style: italic;
  }
  
  /* ===== SUBMIT ===== */
  .submit{
    border-top:1px solid rgba(255,255,255,0.06);
    border-bottom:1px solid rgba(255,255,255,0.06);
    padding: clamp(40px, 6vh, 60px) 0;
    margin-top: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03), rgba(139, 92, 246, 0.03));
  }

  .submit-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    flex-wrap:wrap;
  }

  .submit-head h3{
    margin:0 0 8px 0;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
  }

  .submit-head p{
    margin: 0;
    color: #a0a0a0;
    line-height: 1.5;
  }

  /* ===== FOOTER ===== */
  footer{
    border-top:1px solid rgba(255,255,255,0.06);
    padding: 24px 0 32px;
    margin-top: 20px;
    background: rgba(10,10,10,0.5);
  }

  .foot{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
  }

  .foot > span{
    color: #888;
    font-size: 14px;
  }

  .foot-nav{
    display: flex;
    gap: 4px;
  }

  .foot-nav a{
    margin-right:12px;
    color:#a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
  }

  .foot-nav a:hover{
    color: var(--accent-blue);
  }

  .foot-social{
    display: flex;
    gap: 4px;
  }

  .foot-social a{
    margin-left:12px;
    color:#a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
  }

  .foot-social a:hover{
    color: var(--accent-blue);
  }
  
  /* ===== TO TOP ===== */
  .to-top{
  position:fixed;
  right:20px;
  bottom:20px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(14, 165, 233, 0.3);
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(139, 92, 246, 0.15));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color:#fff;
  opacity:0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index:50;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

  .to-top.show{
    opacity:1;
    transform: translateY(0) scale(1);
  }

  .to-top:hover{
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(14, 165, 233, 0.6);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
  }

  /* ===== SCROLL ANIMATIONS ===== */
  .fade-in-up{
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
  }

  .stagger-1{ animation-delay: 0.1s; }
  .stagger-2{ animation-delay: 0.2s; }
  .stagger-3{ animation-delay: 0.3s; }
  .stagger-4{ animation-delay: 0.4s; }
  .stagger-5{ animation-delay: 0.5s; }
  .stagger-6{ animation-delay: 0.6s; }

  /* Card entrance animations */
  @keyframes cardFadeIn {
    from {
      opacity: 0;
      transform: translateY(20px) scale(0.95);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .card:nth-child(1) { animation-delay: 0.05s; }
  .card:nth-child(2) { animation-delay: 0.1s; }
  .card:nth-child(3) { animation-delay: 0.15s; }
  .card:nth-child(4) { animation-delay: 0.2s; }
  .card:nth-child(5) { animation-delay: 0.25s; }
  .card:nth-child(6) { animation-delay: 0.3s; }
  .card:nth-child(7) { animation-delay: 0.35s; }
  .card:nth-child(8) { animation-delay: 0.4s; }
  .card:nth-child(9) { animation-delay: 0.45s; }

  /* Featured cards entrance */
  .feat-card:nth-child(1) { animation-delay: 0.2s; }
  .feat-card:nth-child(2) { animation-delay: 0.3s; }

  /* ===== Reduced motion ===== */
  @media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero .kicker,
  .hero h1,
  .hero p,
  .hero-slider,
  .card,
  .feat-card{
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  }