/* =========================
   MYSECUREGPT — LIGHT ONLY CSS
   (Dark theme + toggle removed)
   ========================= */

/* ============================================================
   1) DESIGN TOKENS (LIGHT ONLY)
   ============================================================ */
   :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{
    position: sticky;
    top: 0;
    z-index: 50;
  
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding: 10px 50px;
  
    background: rgba(252, 139, 2, 0.711);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }
  
  .logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight: 800;
    letter-spacing: .6px;
  }
  
  .logo-icon{
    width: 40px;
    height: 40px;
    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;
  }
  
  /* Nav links */
  nav{
    display:flex;
    gap: 26px;
    align-items:center;
  }
  
  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;
  }
  
  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;
  }
  
  nav a:hover{
    color: #fff;
    transform: translateY(-1px);
  }
  nav a:hover::after{ width:100%; }
  
  /* ============================================================
     4) HERO LAYOUT (LEFT + RIGHT)
     ============================================================ */
  .hero{
    display:flex;
    gap: 44px;
    padding: 64px;
    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;
  }
  
  /* Use this when you switch to image logo */
  .footer-logo-img{
    height: 50px;      /* increase this for bigger logo */
    width: auto;
    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;
    }
    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 */
  .logo {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .logo-img {
    width: 120px;
    height: auto;
    display: block;
  }
  
  .logo-text {
    font-weight: 800;
    letter-spacing: 0.08em;
  }
  