/*
Theme Name: MySecureGPT Theme
Author: Harsh Patel
Version: 1.0
*/

:root{
  /* Background + surfaces (LIGHT) */
  --bg: #f7f9fc;
  --panel: rgba(255,255,255,.78);
  --panel2: rgba(255,255,255,.88);
  --border: rgba(15,23,42,.12);

  /* Text colors (LIGHT) */
  --text: #0f172a;
  --muted: rgba(15,23,42,.72);

  /* Brand accents (kept compatible with your gradients) */
  --accent1:#e56809; /* orange */
  --accent2:#f06000; /* orange (alt) */
  --accent3:#09e647; /* green */
  --glow: rgba(34,211,238,.25);

  /* Shadows + radius */
  --shadow: 0 18px 60px rgba(2,6,23,.18);
  --shadow2: 0 10px 30px rgba(2,6,23,.12);

  --radius: 18px;
  --radius2: 14px;
}

/* ============================================================
   2) RESET + GLOBAL
   ============================================================ */
*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(124,58,237,.10), transparent 60%),
    radial-gradient(900px 500px at 90% 15%, rgba(34,211,238,.10), transparent 55%),
    radial-gradient(900px 500px at 50% 90%, rgba(96,165,250,.10), transparent 60%),
    var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

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

/* ============================================================
   3) NAVBAR
   ============================================================ */
/* =========================
   NAVBAR FIX (reduce height + keep width clean)
========================= */

.navbar{
  position: sticky;
  top: 0;
  z-index: 50;

  /* ✅ keep it centered and stop full-width stretching */
  max-width: 1200px;
  margin: 0 auto;

  display:flex;
  align-items:center;
  justify-content:space-between;

  /* ✅ smaller height */
  padding: 12px 24px;

  background: rgba(252, 139, 2, 0.711);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

/* ✅ keep logo row stable */
.navbar .logo{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .6px;
}

/* ✅ if you use image logo, this will control size */
.navbar .logo img,
.navbar .logo-img{
  height: 54px;     /* change to 45px if still big */
  width: auto;
  display:block;
  object-fit: contain;
}

/* if you are using icon instead of image */
.logo-icon{
  width: 34px;      /* reduced */
  height: 34px;     /* reduced */
  display:grid;
  place-items:center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(34,211,238,.20), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(124,58,237,.18), transparent 55%),
    rgba(255,255,255,.65);
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 0 0 1px rgba(34,211,238,.08) inset, 0 10px 30px rgba(2,6,23,.12);
}

.logo-text{
  font-size: 15px;
  opacity:.95;
}

/* ✅ IMPORTANT: make nav stay in one line and not push height */
.navbar nav{
  display:flex;
  align-items:center;
  gap: 22px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

/* ✅ smaller links so header stays short */
.navbar nav a{
  font-size: 14px;
  padding: 6px 2px;
}

/* ✅ responsive spacing */
@media (max-width: 900px){
  .navbar{
    padding: 12px 16px;
  }
  .navbar .logo img,
  .navbar .logo-img{
    height: 44px;
  }
}


/* Nav links (✅ scoped to navbar only) */
.navbar nav{
  display:flex;
  gap: 26px;
  align-items:center;
}

.navbar nav a{
  position: relative;
  text-decoration:none;
  color: rgba(0,0,0,.90);
  font-weight: 600;
  font-size: 14px;
  letter-spacing:.25px;
  transition: color .25s ease, transform .25s ease;
  padding: 6px 2px;
}

.navbar nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0%;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  transition: width .25s ease;
}

.navbar nav a:hover{
  color: #fff;
  transform: translateY(-1px);
}
.navbar nav a:hover::after{ width:100%; }

/* ============================================================
   4) HERO LAYOUT (LEFT + RIGHT)
   ============================================================ */
.hero{
  display:flex;
  gap: 44px;
  padding: 110px 64px 64px; /* ✅ prevents sticky navbar overlap on Home */
  align-items:flex-start;
}

.hero-left{
  flex: 1;
  padding-top: 16px;
}

.hero-left h1{
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-left h1 span{
  background: linear-gradient(90deg, rgba(124,58,237,.9), rgba(34,211,238,.9));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  text-shadow: 0 0 18px rgba(34,211,238,.10);
}

.hero-left h2{
  margin-top: 18px;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

/* CTA buttons */
.hero-cta{
  margin-top: 22px;
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-outline,
.btn-dark,
.btn-light{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  gap:10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing:.2px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}

.btn-primary{
  color:#071018;
  background: linear-gradient(90deg, var(--accent2), var(--accent3));
  box-shadow: 0 14px 35px rgba(34,211,238,.14);
}

.btn-outline{
  color: rgba(15,23,42,.88);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.12);
  backdrop-filter: blur(10px);
}

.btn-dark{
  color:#071018;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  box-shadow: 0 14px 35px rgba(124,58,237,.10);
}

.btn-light{
  color: rgba(15,23,42,.88);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.12);
}

.btn-primary:hover,
.btn-outline:hover,
.btn-dark:hover,
.btn-light:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(2,6,23,.16);
}

/* ============================================================
   5) RIGHT PANEL (CHAT BOX MOCK)
   ============================================================ */
.hero-right{ flex: 1.12; }

.chat-box{
  background:
    radial-gradient(900px 220px at 20% 0%, rgba(109,40,217,.10), transparent 55%),
    radial-gradient(900px 220px at 80% 0%, rgba(8,145,178,.08), transparent 55%),
    rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow:hidden;
  position:relative;
}

.chat-box::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(90deg, rgba(124,58,237,.14), rgba(34,211,238,.12), rgba(96,165,250,.12));
  filter: blur(18px);
  opacity:.30;
  pointer-events:none;
}

.chat-top{
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  z-index:1;
}

.chat-title{
  font-weight: 800;
  font-size: 16px;
  color: rgba(15,23,42,.82);
}

.chat-brand{
  flex:1;
  text-align:center;
}

.brand-icon{
  display:inline-grid;
  place-items:center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,23,42,.12);
  margin: 0 auto 6px;
  box-shadow: 0 0 0 1px rgba(34,211,238,.08) inset;
}

.brand-name{
  font-weight: 900;
  letter-spacing: .5px;
  color: rgba(15,23,42,.82);
}

.tutorial-btn{
  background: rgba(255,255,255,.85);
  color: rgba(15,23,42,.85);
  border: 1px solid rgba(15,23,42,.12);
  padding: 10px 14px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  z-index:1;
}

.tutorial-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(34,211,238,.35);
  box-shadow: 0 12px 30px rgba(2,6,23,.14), 0 0 0 1px rgba(34,211,238,.10) inset;
}

.chat-desc{
  position:relative;
  z-index:1;
  margin: 14px 0 14px;
  color: rgba(15,23,42,.72);
  font-size: 13.5px;
  line-height: 1.45;
  text-align:center;
}

/* Optional: "no search" content area */
.no-search-content{
  position:relative;
  z-index:1;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius2);
  padding: 14px;
  backdrop-filter: blur(10px);
}

.no-search-content h4{
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing:.2px;
}

.no-search-content p{
  color: rgba(15,23,42,.72);
  font-size: 13.5px;
  line-height: 1.5;
}

.cta-row{
  margin-top: 12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Chat bottom layout */
.chat-body{
  position:relative;
  z-index:1;
  margin-top: 14px;
  display:flex;
  gap: 12px;
}

.sidebar{
  width: 30%;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius2);
  padding: 12px;
  backdrop-filter: blur(10px);
}

.sidebar-pill{
  background: rgba(15,23,42,.06);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  padding: 10px 10px;
  text-align:center;
  font-weight: 900;
  color: rgba(15,23,42,.90);
  margin-bottom: 10px;
}

.sidebar ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
  font-size: 13px;
  color: rgba(15,23,42,.72);
  line-height: 1.35;
}

.sidebar li{
  padding: 10px;
  border-radius: 12px;
  background: rgba(15,23,42,.03);
  border: 1px solid rgba(15,23,42,.08);
  transition: transform .2s ease, border-color .2s ease;
}

.sidebar li:hover{
  transform: translateY(-2px);
  border-color: rgba(34,211,238,.25);
}

.upload-btn{
  display:block;
  margin-top: 12px;
  text-align:center;
  text-decoration:none;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,58,237,.9), rgba(34,211,238,.9));
  color:#061018;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}

.upload-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(34,211,238,.14);
}

.content{
  width: 70%;
  display:flex;
  gap: 12px;
}

.box{
  flex:1;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius2);
  padding: 12px;
  min-height: 220px;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease;
}

.box:hover{
  transform: translateY(-2px);
  border-color: rgba(96,165,250,.25);
}

.box h4{
  font-size: 13px;
  font-weight: 900;
  color: rgba(15,23,42,.92);
}

.box-muted{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(15,23,42,.60);
}

/* ============================================================
   6) STATIC SEARCH BAR (Display-only)
   ============================================================ */
.static-search{ display:flex; width:100%; gap:0; }

.static-search input{
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.95);
  color: rgba(15,23,42,.90);
  cursor: default;
  text-align: center;
  line-height: 1.4;
}

.static-search input:focus{
  outline:none;
  box-shadow:none;
  border-color: rgba(15,23,42,.12);
}

.static-search button{ display:none; }
.static-search *{ transition:none !important; }

  
/* ============================================================
     7) FEATURES SECTION (4 image cards)
     ============================================================ */
.features{
  padding: 58px 64px 72px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
    
.feature-card{
  background: var(--panel);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow2);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
    
    .feature-card:hover{
      transform: translateY(-6px);
      border-color: rgba(34,211,238,.25);
      box-shadow: 0 22px 70px rgba(2,6,23,.14);
    }
    
    .feature-card img{
      width: 100%;
      height: 220px;
      object-fit: cover;
      display:block;
      filter: saturate(1.05) contrast(1.05);
    }
    
    .feature-card p{
      padding: 14px 14px 18px;
      font-size: 14px;
      line-height: 1.45;
      color: rgba(15,23,42,.88);
      font-weight: 600;
    }
    
    /* ============================================================
       8) DIFFERENCE SECTION (Vertical Title + 2x2 Cards)
       ============================================================ */
    .difference{ padding: 70px 64px; }
    
    .difference-wrap{
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 110px 1fr;
      gap: 28px;
      align-items: stretch;
    }
    
    .difference-title{
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-weight: 900;
      font-size: 34px;
      line-height: 1.05;
      background: linear-gradient(180deg, #ff9f45, #8bc53f, #22d3ee);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      opacity: .95;
    }
    
    .diff-grid{
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
      align-items: stretch;
    }
    
    .diff-card{
      position: relative;
      overflow: hidden;
      border-radius: 22px;
      min-height: 340px;
    
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(15,23,42,.10);
      box-shadow: 0 18px 60px rgba(2,6,23,.12);
      backdrop-filter: blur(14px);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    
    .diff-card::before{
      content:"";
      position:absolute;
      inset:-2px;
      background: linear-gradient(90deg, rgba(255,159,69,.20), rgba(139,197,63,.18), rgba(34,211,238,.14));
      filter: blur(18px);
      opacity: 0;
      transition: opacity .25s ease;
      pointer-events:none;
      z-index: 0;
    }
    
    .diff-card:hover{
      transform: translateY(-8px);
      border-color: rgba(255,159,69,.30);
      box-shadow: 0 28px 95px rgba(2,6,23,.16);
    }
    
    .diff-card:hover::before{ opacity: .9; }
    
    .diff-media{
      position: relative;
      z-index: 1;
      width: calc(100% - 32px);
      margin: 16px;
      height: 180px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(15,23,42,.10);
      background: rgba(255,255,255,.92);
    }
    
    .diff-media img{
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
      object-position: center;
      filter: saturate(1.05) contrast(1.05);
    }
    
    .diff-overlay{
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 2;
      padding: 16px 18px 18px;
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(12px);
      border-top: 1px solid rgba(15,23,42,.10);
    }
    
    .diff-heading{
      font-size: 22px;
      font-weight: 900;
      text-align: center;
      letter-spacing: -0.01em;
      color: rgba(15,23,42,.92);
      margin: 0 0 10px;
    }
    
    .diff-text{
      font-size: 16px;
      line-height: 1.35;
      font-weight: 650;
      text-align: center;
      color: rgba(15,23,42,.72);
      margin: 0;
    }
    
    /* ============================================================
       9) CONTACT SECTION (Green + Orange layout)
       ============================================================ */
    .contact{ padding: 70px 64px; }
    
    .contact-wrap{
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.38fr 0.62fr;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 30px 90px rgba(2,6,23,.12);
      border: 1px solid rgba(15,23,42,.10);
    }
    
    .contact-left{
      background: #8BC53F;
      padding: 44px 40px;
      color: #0b0f12;
    }
    
    .contact-left h2{
      font-size: clamp(34px, 4vw, 58px);
      font-weight: 900;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
    }
    
    .contact-line{
      width: 80px;
      height: 4px;
      background: rgba(0,0,0,.55);
      border-radius: 999px;
      margin-bottom: 28px;
    }
    
    .contact-info{
      display: grid;
      gap: 16px;
      font-size: 20px;
      font-weight: 600;
      line-height: 1.35;
    }
    
    .contact-right{
      background: #FF9F45;
      padding: 44px 40px;
      color: #0b0f12;
    }
    
    .contact-right h3{
      font-size: clamp(26px, 3vw, 44px);
      font-weight: 900;
      letter-spacing: -0.02em;
      margin-bottom: 22px;
      line-height: 1.1;
    }
    
    .contact-form{ display: grid; gap: 18px; }
    
    .contact-row{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    
    .field label{
      display: block;
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 8px;
    }
    
    .field input,
    .field textarea{
      width: 100%;
      padding: 14px 16px;
      border-radius: 10px;
      border: 1px solid rgba(0,0,0,.25);
      background: rgba(17,24,39,.85);
      color: #f5f7ff;
      font-size: 15px;
      outline: none;
    }
    
    .field textarea{ resize: none; }
    
    .field input:focus,
    .field textarea:focus{
      border-color: rgba(0,0,0,.55);
      box-shadow: 0 0 0 3px rgba(0,0,0,.12);
    }
    
    .contact-submit{
      margin-top: 6px;
      width: 100%;
      padding: 18px 18px;
      border: none;
      border-radius: 999px;
      background: #8BC53F;
      color: #0b0f12;
      font-weight: 900;
      font-size: 20px;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    
    .contact-submit:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(0,0,0,.25);
    }
    
    /* Email link styles */
    .contact-email{
      color: inherit;
      text-decoration: none;
      font-weight: 600;
      transition: color .2s ease;
    }
    .contact-email:hover{
      color: #e77d0c;
    }
    
    /* ============================================================
       10) ABOUT SECTION
       ============================================================ */
    .about{ padding: 70px 64px; }
    
    .about-wrap{
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 0.35fr 0.65fr;
      gap: 36px;
      align-items: start;
    }
    
    .about-images{
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    
    .about-images img{
      width: 100%;
      border-radius: 14px;
      object-fit: cover;
      box-shadow: 0 20px 50px rgba(2,6,23,.12);
    }
    
    .about-content{
      font-size: 18px;
      line-height: 1.65;
      color: var(--text);
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    
    .about-content p{ color: var(--muted); }
    
    .about-cta{
      margin-top: 10px;
      font-weight: 800;
      font-size: 20px;
      color: var(--text);
    }
    
    /* ============================================================
       11) SERVICES SECTION (AI Services cards)
       ============================================================ */
    .services{ padding: 70px 64px; }
    
    .services-wrap{
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .services-title{
      font-size: clamp(32px, 4vw, 54px);
      font-weight: 900;
      letter-spacing: -0.02em;
      margin-bottom: 26px;
      line-height: 1.1;
      background: linear-gradient(90deg, #ff9f45, #8bc53f, #22d3ee);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 8px 28px rgba(255,159,69,.18);
    }
    
    .services-grid{
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 26px;
      align-items: stretch;
    }
    
    .service-card{
      position: relative;
      overflow: hidden;
      border-radius: 18px;
      background:
        radial-gradient(900px 240px at 20% 0%, rgba(255,159,69,.22), transparent 60%),
        radial-gradient(900px 240px at 80% 0%, rgba(139,197,63,.18), transparent 60%),
        rgba(255,255,255,.70);
      border: 1px solid rgba(15,23,42,.10);
      box-shadow: 0 18px 60px rgba(2,6,23,.12);
      backdrop-filter: blur(14px);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    
    .service-card::before{
      content:"";
      position:absolute;
      inset:-2px;
      background: linear-gradient(90deg, rgba(255,159,69,.22), rgba(139,197,63,.20), rgba(34,211,238,.14));
      filter: blur(18px);
      opacity: 0;
      transition: opacity .25s ease;
      pointer-events:none;
    }
    
    .service-card:hover{
      transform: translateY(-8px);
      border-color: rgba(255,159,69,.30);
      box-shadow: 0 28px 90px rgba(2,6,23,.16);
    }
    
    .service-card:hover::before{ opacity: .9; }
    
    .service-media{ padding: 16px 16px 0; }
    
    .service-media img{
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      border-radius: 14px;
      filter: saturate(1.05) contrast(1.05);
      box-shadow: 0 14px 40px rgba(2,6,23,.12);
    }
    
    .service-text{
      padding: 18px 18px 22px;
      font-size: 20px;
      line-height: 1.35;
      font-weight: 600;
      color: rgba(15,23,42,.85);
    }
    
    /* ============================================================
       12) FOOTER (LIGHT ONLY)
       (same UI for all pages)
       ============================================================ */
    .footer{
      margin-top: 80px;
      padding: 22px 64px 18px;
    
      background:
        radial-gradient(1200px 400px at 50% 0%, rgba(109,40,217,.10), transparent 60%),
        rgba(15,23,42,.05);
    
      border-top: 1px solid rgba(15,23,42,.12);
      backdrop-filter: blur(14px);
    }
    
    /* Top row: logo left, nav centered, (right column reserved to keep nav centered) */
    .footer-wrap{
      max-width: 1200px;
      margin: 0 auto;
    
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      column-gap: 24px;
    }
    
    /* Left: logo container */
    .footer-brand{
      justify-self: start;
      display: flex;
      align-items: center;
      height: 44px;
      line-height: 1;
    }
  
    /* ✅ Safety: keep footer logo layout stable even if .logo is redefined later */
    .footer .logo{
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    /* Use this when you switch to image logo */
    .footer-logo-img{
      height: 50px;      /* increase this for bigger logo */
      width: auto;
      max-width: 100%;
      display: block;
      object-fit: contain;
      transform-origin: left center;
    }
    
    /* If you still use text logo somewhere */
    .footer-logo{
      font-weight: 900;
      font-size: 22px;
      letter-spacing: .04em;
      color: rgba(15,23,42,.92);
      line-height: 1;
    }
    
    /* Center: nav */
    .footer-nav{
      justify-self: center;
      display: flex;
      gap: 28px;
      align-items: center;
      white-space: nowrap;
    }
    
    .footer-nav a{
      font-size: 15px;
      font-weight: 600;
      color: rgba(0,0,0,.82);
      text-decoration: none;
      transition: color .2s ease;
    }
    
    .footer-nav a:hover{
      color: rgba(0,0,0,.95);
    }
    
    /* Right column reserved */
    .footer-right{
      justify-self: end;
      min-height: 44px;
    }
    
    /* Divider + copyright (centered) */
    .footer-bottom{
      max-width: 1200px;
      margin: 18px auto 0;
      padding-top: 14px;
    
      text-align: center;
      font-size: 14px;
      color: rgba(15,23,42,.60);
      border-top: 1px solid rgba(15,23,42,.12);
    }
    
    /* Developer credit centered under copyright */
    .developer-credit{
      max-width: 1200px;
      margin: 10px auto 0;
    
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
    
      color: rgba(15,23,42,.75);
    }
    
    .dev-link{
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      text-decoration: none;
    
      background: rgba(15,23,42,.05);
      border: 1px solid rgba(15,23,42,.12);
    
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    
    .dev-link:hover{
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(2,6,23,.12);
      border-color: rgba(34,211,238,.35);
    }
    
    .dev-logo{
      width: 30px;
      height: 30px;
      object-fit: contain;
      display: block;
    }
    
    .dev-text{
      font-size: 14px;
      font-weight: 600;
      color: rgba(15,23,42,.75);
      cursor: default;
    }

/* ============================================================
     13) RESPONSIVE
     ============================================================ */
     @media (max-width: 1100px){
      .hero{ padding: 46px; flex-direction:column; }
      .features{ padding: 44px 46px 60px; grid-template-columns: repeat(2, 1fr); }
      .hero-right{ width: 100%; }
      .difference{ padding: 44px 46px; }
      .services{ padding: 50px 46px; }
      .services-grid{ grid-template-columns: repeat(2, 1fr); }
      .contact{ padding: 50px 46px; }
    }
    
    @media (max-width: 1024px){
      .contact-wrap{ grid-template-columns: 1fr; }
      .contact-row{ grid-template-columns: 1fr; }
      .difference{ padding: 50px 36px; }
      .difference-wrap{ grid-template-columns: 90px 1fr; }
      .difference-title{ font-size: 30px; }
    }
    
    @media (max-width: 900px){
      .difference-wrap{ grid-template-columns: 1fr; gap: 18px; }
      .difference-title{
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 28px;
      }
      .diff-grid{ grid-template-columns: 1fr; }
      .footer{ padding: 36px 24px 18px; }
      .footer-wrap{ grid-template-columns: 1fr; text-align: center; gap: 18px; }
      .footer-nav{ justify-content: center; flex-wrap: wrap; gap: 16px; }
    }
    
    @media (max-width: 768px){
      .navbar{
        padding: 14px 16px;
        gap: 12px;
        flex-direction:column;
        align-items:flex-start;
      }

      .navbar nav{ flex-wrap:wrap; gap: 14px; }
    
      .hero{ padding: 26px 16px; }
      .chat-top{ flex-direction:column; align-items:stretch; }
      .chat-brand{ text-align:left; }
    
      .chat-body{ flex-direction:column; }
      .sidebar{ width: 100%; }
      .content{ width: 100%; flex-direction:column; }
      .box{ min-height: 160px; }
    
      .features{ padding: 30px 16px 44px; grid-template-columns: 1fr; }
      .difference{ padding: 30px 16px 44px; }
      .services{ padding: 40px 16px; }
      .services-grid{ grid-template-columns: 1fr; }
      .service-text{ font-size: 18px; }
      .service-media img{ height: 200px; }
    
      .contact{ padding: 40px 16px; }
      .contact-left, .contact-right{ padding: 34px 22px; }
      .contact-info{ font-size: 16px; }
      .contact-submit{ font-size: 18px; }
    
      .about{ padding: 40px 16px; }
      .about-wrap{ grid-template-columns: 1fr; }
      .about-content{ font-size: 16px; }
      .about-cta{ font-size: 18px; }
    }
    
    @media (max-width: 480px){
      .diff-card{ min-height: 360px; }
      .diff-media{ height: 200px; margin: 14px; }
      .diff-heading{ font-size: 20px; }
      .diff-text{ font-size: 15.5px; }
      .footer-logo{ font-size: 18px; }
      .footer-nav a{ font-size: 14px; }
      .footer-bottom, .dev-text{ font-size: 12px; }
    }
    
    @media (prefers-reduced-motion: reduce){
      *{ transition:none !important; animation:none !important; }
    }
    
    /* =======================
       FAQ ARTICLE PAGES (FINAL)
       ======================= */
    
    .faq-article-page{
      padding: 90px 0 70px;
      position: relative;
      overflow: hidden;
    }
    
    .faq-article-wrap{
      display: flex;
      justify-content: center;
      padding: 0 22px;
      position: relative;
      z-index: 1;
    }
    
    .faq-article-container{
      width: min(920px, 100%);
      text-align: center;
      position: relative;
      z-index: 1;
    }
    
    .faq-article-title{
      font-size: clamp(32px, 4vw, 54px);
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0 0 18px;
      line-height: 1.12;
    
      background: linear-gradient(90deg, #ff9f45, #8bc53f, #22d3ee);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    
      text-shadow: 0 8px 28px rgba(255,159,69,.22);
    }
    
    .faq-hero-img{
      display: flex;
      justify-content: center;
      margin: 0 auto 22px;
    }
    
    .faq-hero-img img{
      width: min(620px, 100%);
      height: auto;
      display: block;
    
      border-radius: 18px;
      border: 1px solid rgba(15,23,42,0.10);
      box-shadow: 0 14px 36px rgba(2,6,23,0.12);
    }
    
    .faq-article-content{
      text-align: left;
      max-width: 820px;
      margin: 0 auto;
    
      font-size: 18px;
      line-height: 1.9;
      opacity: 1;
    
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(15,23,42,0.10);
      border-radius: 20px;
      padding: 28px 28px;
    
      box-shadow: 0 18px 44px rgba(2,6,23,0.10);
      backdrop-filter: blur(10px);
    }
    
    .faq-article-content p{
      margin: 0 0 18px;
      color: rgba(15,23,42,0.90);
    }
    
    .faq-article-h2{
      margin: 26px 0 12px;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 0.2px;
    
      position: relative;
      padding-left: 12px;
    }
    
    .faq-article-h2::before{
      content:"";
      position:absolute;
      left:0;
      top: 6px;
      width: 4px;
      height: 16px;
      border-radius: 3px;
      background: rgba(255,159,69,0.95);
    }
    
    .faq-article-bottom{
      margin-top: 20px;
      text-align: center;
    }
    
    .back-link{
      display: inline-flex;
      align-items: center;
      gap: 8px;
    
      padding: 10px 14px;
      border-radius: 999px;
    
      text-decoration: none;
      color: rgba(15,23,42,0.88);
      opacity: 1;
    
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(15,23,42,0.12);
      box-shadow: 0 10px 24px rgba(2,6,23,0.08);
    
      transition: transform 160ms ease, box-shadow 160ms ease;
    }
    
    .back-link:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(2,6,23,0.10);
    }
    
    @media (max-width: 700px){
      .faq-article-content{
        padding: 20px 18px;
        border-radius: 16px;
        font-size: 16px;
      }
    
      .faq-article-title{
        line-height: 1.15;
      }
    }
    
    /* ===========================
       FAQ Side "Screensaver" BG
       (LIGHT ONLY)
       =========================== */
    .faq-bg{
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: 1;
    }
    
    .faq-bg::before,
    .faq-bg::after{
      content:"";
      position: absolute;
      inset: -20%;
      background-repeat: no-repeat;
      filter: blur(30px);
      opacity: .55;
      transform: translateZ(0);
      animation: faqFloat 14s ease-in-out infinite;
    }
    
    .faq-bg::before{
      background-image:
        radial-gradient(420px 420px at 15% 25%, rgba(255,159,69,.55), transparent 60%),
        radial-gradient(460px 460px at 85% 35%, rgba(34,211,238,.50), transparent 60%),
        radial-gradient(520px 520px at 30% 85%, rgba(139,197,63,.45), transparent 65%),
        radial-gradient(520px 520px at 75% 85%, rgba(255,159,69,.35), transparent 65%);
    }
    
    .faq-bg::after{
      background-image:
        radial-gradient(circle at 50% 50%, rgba(2,6,23,.10) 1px, transparent 1px),
        linear-gradient(120deg, rgba(255,159,69,.10), rgba(34,211,238,.08), rgba(139,197,63,.10));
      background-size: 28px 28px, 100% 100%;
      filter: blur(0px);
      opacity: .22;
      animation: faqSweep 18s linear infinite;
    }
    
    @keyframes faqFloat{
      0%   { transform: translate(0px, 0px) scale(1); }
      50%  { transform: translate(18px, -14px) scale(1.02); }
      100% { transform: translate(0px, 0px) scale(1); }
    }
    
    @keyframes faqSweep{
      0%   { transform: translateX(-3%) translateY(0%); }
      50%  { transform: translateX(3%) translateY(-1%); }
      100% { transform: translateX(-3%) translateY(0%); }
    }
    
    @media (prefers-reduced-motion: reduce){
      .faq-bg::before,
      .faq-bg::after{
        animation: none;
      }
    }
    
    /* ============================================================
       ✅ Logo image helpers (SCOPED - avoids breaking header/footer)
       ============================================================ */
    .chat-box .logo{
      display: flex;
      align-items: center;
      gap: 30px;
    }
    
    .chat-box .logo-img{
      width: 120px;
      height: auto;
      display: block;
    }
    
    .chat-box .logo-text{
      font-weight: 800;
      letter-spacing: 0.08em;
    }
    
      /* ============================================================
          ✅ LIGHT-ONLY PAGE STYLES FOR process.html
          What this <style> does:
          - Keeps your layout exactly the same
          - Removes "dark-mode defaults" in this page CSS
          - Removes ALL body.light selectors (because site is light-only now)
          ============================================================ */
  
        /* ============================================================
          1) PAGE SPACING
          - Adds top padding so sticky navbar doesn't cover content
          ============================================================ */
          .page-hero {
            padding: 110px 64px 30px;
            padding-left: 48px; /* full-width look */
            padding-right: 48px; /* full-width look */
          }
    
          .page-wrap {
            max-width: 1200px;
            margin: 0 auto;
          }
    
          /* Full-width look wrapper (keeps it clean) */
          .page-hero .page-wrap {
            max-width: 100%;
          }
    
          /* ============================================================
            2) PAGE TITLE + SUBTITLE
            - Uses your global tokens from style.css: var(--text)
            - Subtitle is now LIGHT-friendly (no dark rgba values)
            ============================================================ */
          .page-title {
            font-size: clamp(25px, 3.6vw, 54px);
            font-weight: 900;
            letter-spacing: -0.02em;
            margin: 0 0 10px;
            color: var(--text);
          }
    
          .page-subtitle {
            margin: 0 0 28px;
            color: rgba(15, 23, 42, 0.7);
            font-size: 16px;
            line-height: 1.6;
            max-width: 900px;
          }
    
          /* ============================================================
            3) TOP GRID (2 PROCESS PANELS)
            - These are the two top image cards
            - Converted to LIGHT glass style
            ============================================================ */
          .process-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 36px;
            align-items: stretch;
          }
    
          .process-card {
            border-radius: 22px;
            overflow: hidden;
            position: relative;
    
            background: rgba(255, 255, 255, 0.88);
            border: 1px solid rgba(15, 23, 42, 0.12);
            box-shadow: 0 18px 45px rgba(2, 6, 23, 0.12);
            backdrop-filter: blur(10px);
    
            transition: transform 0.25s ease, box-shadow 0.25s ease,
              border-color 0.25s ease;
    
            display: flex;
            flex-direction: column;
          }
    
          /* Soft glow on hover */
          .process-card::before {
            content: "";
            position: absolute;
            inset: -2px;
            background: linear-gradient(
              90deg,
              rgba(255, 159, 69, 0.25),
              rgba(139, 197, 63, 0.22),
              rgba(34, 211, 238, 0.18)
            );
            filter: blur(18px);
            opacity: 0;
            transition: opacity 0.25s ease;
            pointer-events: none;
          }
    
          .process-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 159, 69, 0.35);
            box-shadow: 0 28px 95px rgba(2, 6, 23, 0.16);
          }
    
          .process-card:hover::before {
            opacity: 0.9;
          }
    
          /* Header row inside each panel */
          .process-card-head {
            padding: 18px 18px 14px;
            border-bottom: 1px solid rgba(15, 23, 42, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
          }
    
          .process-card-title {
            margin: 0;
            font-size: 20px;
            font-weight: 900;
            color: rgba(15, 23, 42, 0.9);
            letter-spacing: -0.01em;
          }
    
          .process-card-badge {
            font-size: 12px;
            font-weight: 700;
            padding: 7px 10px;
            border-radius: 999px;
            color: rgba(15, 23, 42, 0.72);
            background: rgba(15, 23, 42, 0.05);
            border: 1px solid rgba(15, 23, 42, 0.12);
            white-space: nowrap;
          }
    
          /* Media area (keeps both cards aligned) */
          .process-media {
            width: 100%;
            padding: 18px;
            min-height: 520px;
            background: rgba(15, 23, 42, 0.03);
            display: grid;
            place-items: center;
          }
    
          /* Images */
          .process-img {
            width: 100%;
            max-width: 680px;
            max-height: 480px;
            height: auto;
    
            object-fit: contain;
            display: block;
            margin: 0 auto;
    
            border-radius: 18px;
            border: 1px solid rgba(15, 23, 42, 0.12);
            box-shadow: 0 12px 30px rgba(2, 6, 23, 0.12);
            background: #fff;
          }
/* ============================================================
   4) TIMELINE SECTION
   - 7 step timeline
   - Converted to LIGHT style (cards, dots, line)
   ============================================================ */
   .timeline {
    padding: 24px 64px 70px;
  }
  
  .timeline .page-wrap {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .timeline-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 20px;
  }
  
  /* Center vertical line */
  .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      rgba(34, 211, 238, 0.95),
      rgba(34, 211, 238, 0.55),
      rgba(34, 211, 238, 0.18)
    );
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.25),
      0 0 60px rgba(34, 211, 238, 0.14);
    opacity: 0.95;
  }
  
  /* One timeline row */
  .timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    align-items: start;
    gap: 26px;
    padding: 24px 0;
  }
  
  /* Center dot */
  .timeline-dot {
    grid-column: 2;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    margin: 6px auto 0;
  
    display: grid;
    place-items: center;
  
    font-weight: 900;
    font-size: 18px;
    line-height: 1;
  
    background: #ffffff;
    border: 2px solid rgba(15, 23, 42, 0.18);
    color: rgba(15, 23, 42, 0.72);
  
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.1);
  }
  
  .timeline-dot.active {
    background: rgba(34, 211, 238, 0.22);
    border-color: rgba(34, 211, 238, 0.55);
    color: rgba(15, 23, 42, 0.78);
  }
  
  /* Timeline cards */
  .timeline-card {
    border-radius: 20px;
    padding: 22px 26px;
  
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.1);
    backdrop-filter: blur(12px);
  
    transition: transform 0.2s ease, border-color 0.2s ease,
      box-shadow 0.2s ease;
  }
  
  .timeline-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 159, 69, 0.25);
    box-shadow: 0 22px 70px rgba(2, 6, 23, 0.14);
  }
  
  .timeline-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.92);
    letter-spacing: -0.01em;
  }
  
  .timeline-card ul {
    margin: 0;
    padding-left: 22px;
    color: rgba(15, 23, 42, 0.74);
    font-size: 16px;
    line-height: 1.7;
  }
  
  .timeline-card li {
    margin: 8px 0;
  }
  
  /* Left/right placement */
  .timeline-item.left .timeline-card {
    grid-column: 1;
  }
  .timeline-item.right .timeline-card {
    grid-column: 3;
  }
  
  /* Curved arrows (SVG) */
  .timeline-curve {
    position: absolute;
    top: 8px;
    width: 140px;
    height: 110px;
    pointer-events: none;
    opacity: 0.95;
  }
  
  .timeline-curve path {
    fill: none;
    stroke: rgba(15, 23, 42, 0.65);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 6px 14px rgba(2, 6, 23, 0.14));
  }
  
  .timeline-item.right .timeline-curve.right {
    left: calc(50% + 12px);
  }
  .timeline-item.left .timeline-curve.left {
    right: calc(50% + 12px);
  }
  
  /* ============================================================
     5) RESPONSIVE
     ============================================================ */
  @media (max-width: 1024px) {
    .page-hero {
      padding: 100px 36px 26px;
    }
    .timeline {
      padding: 18px 36px 60px;
    }
  }
  
  @media (max-width: 900px) {
    /* stack the top 2 cards */
    .process-grid {
      grid-template-columns: 1fr;
    }
  
    .process-media {
      min-height: auto;
    }
  
    .process-img {
      max-width: 100%;
      max-height: none;
    }
  
    /* timeline becomes single column */
    .timeline-wrap {
      max-width: 100%;
      padding-left: 6px;
      padding-right: 6px;
    }
  
    .timeline-line {
      left: 18px;
      transform: none;
    }
  
    .timeline-item {
      grid-template-columns: 46px 1fr;
      gap: 12px;
    }
  
    .timeline-dot {
      grid-column: 1;
      margin: 6px auto 0;
    }
  
    .timeline-card {
      grid-column: 2 !important;
    }
  
    /* hide arrows on mobile */
    .timeline-curve {
      display: none;
    }
  
    .timeline-card h3 {
      font-size: 18px;
    }
  
    .timeline-card ul {
      font-size: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .page-hero {
      padding: 92px 18px 22px;
    }
  
    .timeline {
      padding: 14px 18px 52px;
    }
  }
  
  /* ============================================================
     A) PAGE WRAPPER
     ============================================================ */
  .questions-hero {
    padding: 110px 64px 60px;
  }
  .questions-wrap {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* ============================================================
     B) PAGE TITLE
     ✅ FIX: support BOTH .questions-title and .services-title
     ============================================================ */
  .questions-title,
  /*  .services-title {
    font-size: clamp(30px, 3.8vw, 54px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 22px;
    color: var(--text);
  } */
  
  /* ============================================================
     C) GRID LAYOUT
     ============================================================ */
  .questions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
  }
  
  /* ============================================================
     D) CARD COMPONENT (LIGHT)
     ============================================================ */
  .q-card {
    border-radius: 14px;
    overflow: hidden;
  
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: 0 18px 60px rgba(2, 6, 23, 0.12);
    backdrop-filter: blur(14px);
  
    transition: transform 0.2s ease, box-shadow 0.2s ease,
      border-color 0.2s ease;
  
    display: flex;
    flex-direction: column;
  }
  
  .q-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 28px 90px rgba(2, 6, 23, 0.16);
  }
  
  /* Card image */
  .q-media {
    width: 100%;
    height: 190px;
    background: rgba(15, 23, 42, 0.06);
  }
  .q-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Card body */
  .q-body {
    padding: 16px 16px 14px;
    background: rgba(255, 255, 255, 0.55);
    flex: 1;
  
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  /* Title inside card */
  .q-title {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
    color: rgba(15, 23, 42, 0.92);
  }
  
  /* Card snippet text */
  .q-text {
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
    color: rgba(15, 23, 42, 0.72);
  }
  
  /* Read more link (button style) */
  .q-read {
    margin: 20px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  
    padding: 10px 18px;
    border-radius: 999px;
  
    color: rgba(15, 23, 42, 0.86);
    text-decoration: none;
  
    background: linear-gradient(
      135deg,
      rgba(34, 211, 238, 0.14),
      rgba(139, 197, 63, 0.14),
      rgba(255, 159, 69, 0.14)
    );
  
    border: 1px solid rgba(15, 23, 42, 0.14);
    box-shadow: 0 8px 22px rgba(2, 6, 23, 0.08);
  
    transition: all 220ms ease;
  }
  
  .q-read:hover {
    color: rgba(15, 23, 42, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.12);
    border-color: rgba(34, 211, 238, 0.45);
  }
  
  .q-read:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.25),
      0 14px 30px rgba(2, 6, 23, 0.12);
  }
  
  /* Meta row */
  .q-meta {
    padding: 12px 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
    font-size: 11px;
    color: rgba(15, 23, 42, 0.55);
    background: rgba(255, 255, 255, 0.65);
  }
  
  /* Footer nav visibility safety */
  .footer-nav a {
    color: rgba(0, 0, 0, 0.74) !important;
  }
  .footer-nav a:hover {
    color: rgba(0, 0, 0, 0.92) !important;
  }
  
  /* ============================================================
     F) RESPONSIVE
     ============================================================ */
  @media (max-width: 1024px) {
    .questions-hero {
      padding: 100px 36px 50px;
    }
    .questions-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  @media (max-width: 650px) {
    .questions-hero {
      padding: 92px 18px 40px;
    }
    .questions-grid {
      grid-template-columns: 1fr;
    }
    .q-media {
      height: 200px;
    }
  }
        
  
  
       