:root {

    /* Backgrounds */
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-section: #f4f7ff;

    /* Borders */
    --border: rgba(59, 110, 245, 0.10);
    --border-strong: rgba(59, 110, 245, 0.22);

    /* Primary Brand Colors */
    --blue: #4361ee;
    --blue-dark: #304fd9;
    --blue-light: #eef2ff;

    /* Accent Colors */
    --purple: #7c3aed;
    --purple-light: #f3e8ff;

    --cyan: #06b6d4;
    --green: #10b981;

    /* Text Colors */
    --ink: #0b1220;
    --ink-2: #1e293b;
    --muted: #64748b;
    --muted-light: #94a3b8;

    /* Gradients */
    --gradient-primary: linear-gradient(
        135deg,
        #4361ee 0%,
        #7c3aed 100%
    );

    --gradient-soft: linear-gradient(
        135deg,
        rgba(67, 97, 238, 0.08),
        rgba(124, 58, 237, 0.08)
    );

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);

    --shadow-md: 0 10px 30px rgba(67, 97, 238, 0.08);

    --shadow-lg: 0 20px 60px rgba(67, 97, 238, 0.12);

    --shadow-glow: 0 0 40px rgba(67, 97, 238, 0.25);

    /* Radius */
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;

    /* Fonts */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
  }
 
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6;
  }
 
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
 
  .gradient-text {
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
 
  /* ===== NAVBAR ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 14px 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .logo img {
    flex-shrink: 0;
    height: 4rem;
    margin-left: 10px;
  }
 .nav-links { display: flex; 
  align-items: center;
  gap: 30px;
  list-style: none;
}
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
  }
  .nav-links a:hover {
    color: var(--ink);
  }
  .nav-cta {
    background: var(--blue) !important; color: #fff !important;
    padding: 8px 20px; border-radius: 8px; font-weight: 500 !important;
    transition: background 0.2s, transform 0.15s !important; color: #fff !important;
  }
  .nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }
  .nav-mobile-btn { display: none; background: none; border: none; color: var(--ink); cursor: pointer; font-size: 22px; }
 
  /* ===== HERO ===== */
  #hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 80px; position: relative; overflow: hidden;
    background: var(--bg);
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 70% 60% at 60% 0%, rgba(59,110,245,0.07) 0%, transparent 65%),
      radial-gradient(ellipse 50% 50% at 90% 80%, rgba(124,58,237,0.05) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 5% 70%, rgba(8,145,178,0.04) 0%, transparent 55%);
  }
  .hero-dots {
    position: absolute; inset: 0; z-index: 0;
    background-image: radial-gradient(circle, rgba(59,110,245,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  .hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue-light); border: 1px solid rgba(59,110,245,0.25);
    border-radius: 100px; padding: 5px 14px;
    font-size: 12px; font-weight: 500; color: var(--blue);
    letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 22px;
  }
  .hero-badge::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--blue); animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
  .hero-title {
    font-family: var(--font-display); font-size: clamp(34px,4.5vw,58px);
    font-weight: 800; line-height: 1.07; letter-spacing: -2px; margin-bottom: 18px;
    color: var(--ink);
  }
  .hero-sub { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; max-width: 460px; }
  .hero-form {
    display: flex; gap: 0;
    background: #fff;
    border: 1.5px solid var(--border-strong);
    border-radius: 12px; padding: 5px;
    margin-bottom: 14px;
    box-shadow: 0 4px 24px rgba(59,110,245,0.08);
  }
  .hero-form input {
    flex: 1; background: transparent; border: none; outline: none;
    color: var(--ink); font-family: var(--font-body); font-size: 14px; padding: 10px 14px;
  }
  .hero-form input::placeholder { color: var(--muted-light); }
  .btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff; border: none; border-radius: 8px;
    padding: 11px 22px; font-family: var(--font-body);
    font-size: 14px; font-weight: 500; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap;
  }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,110,245,0.3); }
  .btn-secondary {
    background: #fff; border: 1.5px solid var(--border-strong); color: var(--ink-2);
    border-radius: 8px; padding: 11px 22px; font-family: var(--font-body);
    font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s;
  }
  .btn-secondary:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
  .hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
 
  /* Hero Visual */
  .hero-visual { position: relative; }
  .dashboard-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px; padding: 22px;
    box-shadow: 0 8px 40px rgba(59,110,245,0.1), 0 2px 8px rgba(0,0,0,0.04);
  }
  .db-title { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; }
  .db-score {
    font-family: var(--font-display); font-size: 52px; font-weight: 800;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
  }
  .progress-bar-wrap { margin: 12px 0; }
  .progress-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-bottom: 5px; }
  .progress-track { height: 5px; background: #f1f5f9; border-radius: 100px; overflow: hidden; }
  .progress-fill { height: 100%; border-radius: 100px; }
  .fill-blue { background: linear-gradient(90deg, var(--blue), #60a5fa); }
  .fill-purple { background: linear-gradient(90deg, var(--purple), #a78bfa); }
  .fill-green { background: linear-gradient(90deg, var(--green), var(--cyan)); }
  .floating-chip {
    position: absolute; background: #fff;
    border: 1px solid var(--border-strong); border-radius: 10px;
    padding: 9px 13px; display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 500; color: var(--ink-2);
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(59,110,245,0.12);
  }
  .floating-chip .dot { width: 7px; height: 7px; border-radius: 50%; }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
  .chip-1 { top: -18px; right: 16px; animation-delay: 0s; }
  .chip-2 { bottom: 36px; left: -18px; animation-delay: 1s; }
  .chip-3 { top: 46%; right: -28px; animation-delay: 1.6s; font-size: 11px; }
 
  /* ===== STATS ===== */
  #stats {
    padding: 56px 0; background: var(--bg-section);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  }
  .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
  .stat-card {
    padding: 32px 24px; text-align: center;
    border-right: 1px solid var(--border); position: relative;
  }
  .stat-card:last-child { border-right: none; }
  .stat-card::after {
    content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%);
    width:40%; height:2px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    opacity: 0.4;
  }
  .stat-num {
    font-family: var(--font-display); font-size: 42px; font-weight: 800;
    letter-spacing: -2px; line-height: 1;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 6px;
  }
  .stat-label { font-size: 13px; color: var(--muted); }
 
  /* ===== SECTIONS ===== */
  section { padding: 96px 0; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--blue-light); border: 1px solid rgba(59,110,245,0.2);
    border-radius: 100px; padding: 4px 14px;
    font-size: 11px; font-weight: 600; color: var(--blue);
    letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 14px;
  }
  .section-title {
    font-family: var(--font-display); font-size: clamp(26px,3.5vw,44px);
    font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 14px; color: var(--ink);
  }
  .section-sub { font-size: 16px; color: var(--muted); max-width: 540px; line-height: 1.7; }
  .section-head { margin-bottom: 56px; }
 
  /* ===== SERVICES ===== */
  #services { background: var(--bg-section); }
  .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
  .service-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 16px; padding: 28px; transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden;
  }
  .service-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(59,110,245,0.12); }
  .service-icon {
    width: 46px; height: 46px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 21px;
  }
  .icon-blue { background: var(--blue-light); }
  .icon-purple { background: var(--purple-light); }
  .icon-cyan { background: #ecfeff; }
  .icon-green { background: #d1fae5; }
  .icon-pink { background: #fdf2f8; }
  .icon-amber { background: #fffbeb; }
  .service-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 9px; color: var(--ink); }
  .service-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
  .service-arrow { margin-top: 18px; color: var(--blue); font-size: 16px; font-weight: 600; transition: transform 0.2s; display: inline-block; }
  .service-card:hover .service-arrow { transform: translateX(4px); }
 
  /* ===== AUDIT ===== */
  #audit { background: #fff; }
  .audit-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
  .audit-form {
    background: #fff; border: 1px solid var(--border);
    border-radius: 20px; padding: 32px;
    box-shadow: 0 4px 32px rgba(59,110,245,0.07);
  }
  .audit-input {
    background: var(--bg-soft); border: 1.5px solid var(--border);
    border-radius: 10px; padding: 13px 16px;
    color: var(--ink); font-family: var(--font-body); font-size: 14px;
    outline: none; transition: border-color 0.2s; width: 100%;
  }
  .audit-input:focus { border-color: var(--blue); background: #fff; }
  .audit-input::placeholder { color: var(--muted-light); }
  .audit-metric {
    background: var(--bg-soft); border: 1px solid var(--border);
    border-radius: 12px; padding: 14px 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .metric-icon { font-size: 19px; width: 34px; text-align: center; }
  .metric-info { flex: 1; }
  .metric-name { font-size: 12px; font-weight: 500; color: var(--ink-2); margin-bottom: 5px; }
  .metric-score { font-family: var(--font-display); font-size: 17px; font-weight: 700; }
  .score-good { color: var(--green); }
  .score-medium { color: #d97706; }
  .score-poor { color: #dc2626; }
  .audit-results { display: flex; flex-direction: column; gap: 10px; }
  .audit-cta-box {
    margin-top: 16px; padding: 18px;
    background: linear-gradient(135deg, var(--blue-light), var(--purple-light));
    border: 1px solid rgba(59,110,245,0.2);
    border-radius: 12px; text-align: center;
  }
  .audit-cta-box p { font-size: 13px; color: var(--ink-2); margin-bottom: 12px; line-height: 1.6; }
 
  /* ===== DASHBOARD ===== */
  #dashboard { background: var(--bg-section); }
  .db-preview {
    background: #fff; border: 1px solid var(--border);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(59,110,245,0.1);
  }
  .db-topbar {
    padding: 13px 20px; background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 10px;
  }
  .db-dot { width: 10px; height: 10px; border-radius: 50%; }
  .db-main { display: grid; grid-template-columns: 200px 1fr; min-height: 460px; }
  .db-sidebar {
    border-right: 1px solid var(--border); padding: 20px 0; background: var(--bg-soft);
  }
  .db-nav-item {
    padding: 9px 20px; font-size: 13px; color: var(--muted);
    display: flex; align-items: center; gap: 9px; cursor: pointer;
    transition: all 0.2s; border-left: 2px solid transparent;
  }
  .db-nav-item.active { color: var(--blue); border-left-color: var(--blue); background: var(--blue-light); font-weight: 500; }
  .db-nav-item:hover:not(.active) { color: var(--ink); background: rgba(59,110,245,0.04); }
  .db-content { padding: 22px; display: flex; flex-direction: column; gap: 18px; }
  .db-widgets { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
  .db-widget { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
  .db-widget-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
  .db-widget-val { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -1px; color: var(--ink); }
  .db-widget-trend { font-size: 11px; margin-top: 3px; }
  .up { color: var(--green); }
  .chart-area { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
  .chart-label { font-size: 13px; font-weight: 500; margin-bottom: 14px; color: var(--ink); }
  .mini-chart { display: flex; align-items: flex-end; gap: 5px; height: 80px; }
  .bar { flex: 1; border-radius: 4px 4px 0 0; background: #e2e8f0; transition: background 0.2s; cursor: pointer; }
  .bar:hover { background: var(--blue); opacity: 0.8; }
  .bar.highlighted { background: linear-gradient(180deg, var(--blue), var(--purple)); opacity: 0.9; }
 
  /* ===== TOOLS ===== */
  #tools { background: #fff; }
  .tools-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
  .tool-card {
    background: var(--bg-soft); border: 1px solid var(--border);
    border-radius: 16px; padding: 26px; transition: all 0.3s; cursor: pointer;
  }
  .tool-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(59,110,245,0.1); background: #fff; }
  .tool-tag {
    display: inline-block; background: var(--blue-light);
    color: var(--blue); border-radius: 6px; padding: 3px 10px;
    font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 13px;
  }
  .tool-tag.free { background: #d1fae5; color: var(--green); }
  .tool-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
  .tool-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
  .tool-btn { margin-top: 16px; font-size: 13px; color: var(--blue); font-weight: 600; }
 
  /* ===== TESTIMONIALS ===== */
  #testimonials { background: var(--bg-section); }
  .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
  .testi-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 16px; padding: 28px; transition: all 0.3s;
  }
  .testi-card:hover { border-color: var(--blue); box-shadow: 0 12px 32px rgba(59,110,245,0.08); }
  .testi-stars { color: #f59e0b; font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
  .testi-text { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 11px; }
  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #fff;
  }
  .av1 { background: linear-gradient(135deg, var(--blue), var(--purple)); }
  .av2 { background: linear-gradient(135deg, var(--purple), #ec4899); }
  .av3 { background: linear-gradient(135deg, var(--cyan), var(--blue)); }
  .testi-name { font-size: 14px; font-weight: 600; color: var(--ink); }
  .testi-role { font-size: 12px; color: var(--muted-light); }
 
  /* ===== CTA ===== */
  #cta {
    padding: 110px 0; text-align: center;
    background: linear-gradient(135deg, #1a2b6d 0%, #2d1b69 50%, #1a2b6d 100%);
    position: relative; overflow: hidden;
  }
  #cta::before {
    content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:700px; height:500px; border-radius:50%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 65%);
  }
  .cta-inner { position: relative; z-index: 1; }
  .cta-title { font-family: var(--font-display); font-size: clamp(30px,5vw,54px); font-weight: 800; letter-spacing: -2px; margin-bottom: 18px; color: #fff; }
  .cta-sub { font-size: 16px; color: rgba(255,255,255,0.65); margin-bottom: 38px; }
  .cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
  .btn-white {
    background: #fff; color: var(--blue); border: none; border-radius: 8px;
    padding: 14px 28px; font-family: var(--font-body); font-size: 15px; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
  }
  .btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
  .btn-outline-white {
    background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 8px; padding: 14px 28px; font-family: var(--font-body);
    font-size: 15px; font-weight: 500; cursor: pointer; transition: all 0.2s;
  }
  .btn-outline-white:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }
 
  /* ===== CONTACT ===== */
  #contact { background: #fff; padding: 80px 0; }
 
  /* ===== FOOTER ===== */
  footer { background: var(--ink); padding: 56px 0 28px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  .footer-logo {
    font-family: var(--font-display); font-size: 20px; font-weight: 800;
    text-decoration: none; color: #fff;
  }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 10px; line-height: 1.7; max-width: 270px; }
  .footer-head { font-family: var(--font-display); font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: #fff; }
  .newsletter-form { display: flex; gap: 8px; margin-top: 10px; }
  .newsletter-form input {
    flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; padding: 9px 12px; color: #fff;
    font-family: var(--font-body); font-size: 13px; outline: none;
  }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
  .newsletter-form button {
    background: var(--blue); color: #fff; border: none; border-radius: 8px;
    padding: 9px 16px; font-size: 13px; font-weight: 500; cursor: pointer; transition: background 0.2s;
  }
  .newsletter-form button:hover { background: var(--blue-dark); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
  .social-links { display: flex; gap: 10px; }
  .social-link {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; text-decoration: none; color: rgba(255,255,255,0.5);
    transition: all 0.2s;
  }
  .social-link:hover { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.12); }
 
  /* ===== ANIMATIONS ===== */
  .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up-delay-1 { transition-delay: 0.1s; }
  .fade-up-delay-2 { transition-delay: 0.2s; }
  .fade-up-delay-3 { transition-delay: 0.3s; }
  .fade-up-delay-4 { transition-delay: 0.4s; }
  .fade-up-delay-5 { transition-delay: 0.5s; }
 
  /* ===== RESPONSIVE ===== */
  @media(max-width:900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-card { border-right: none; border-bottom: 1px solid var(--border); }
    .services-grid, .tools-grid, .testi-grid { grid-template-columns: 1fr; }
    .audit-layout { grid-template-columns: 1fr; }
    .db-main { grid-template-columns: 1fr; }
    .db-sidebar { display: none; }
    .db-widgets { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-mobile-btn { display: block; }
    #contact .contact-grid { grid-template-columns: 1fr !important; }
  }
  @media(max-width:600px) {
    .stats-grid, .footer-grid, .db-widgets, .services-grid { grid-template-columns: 1fr; }
  }