  @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Syne:wght@400..800&display=swap');

  /* ===== DESIGN SYSTEM ===== */
  :root {
    --bg: #0a0e1a;
    --bg2: #0f1526;
    --bg3: #141c30;
    --surface: #1a2340;
    --surface2: #1f2a4a;
    --border: rgba(99,130,255,0.12);
    --border2: rgba(99,130,255,0.22);
    --accent: #4f7cff;
    --accent2: #00e5b0;
    --accent3: #ff6b4a;
    --text: #e8ecf8;
    --text2: #8b9cc8;
    --text3: #4d5d8a;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
  }

  *, *::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(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ===== NOISE TEXTURE OVERLAY ===== */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
  }
  .separate-containers .site-main {
  	margin: 0;
  }
  .site-main .wp-block-group__inner-container {
    padding: 0;
  }
  .separate-containers .inside-article {
  	padding: 0;
  	background: none;
  }

  /* ===== NAVBAR ===== */  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,14,26,0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 clamp(1rem, 4vw, 3rem);
  }

  .inside-header {
  	padding: 0 30px;
  }

  .main-navigation, .main-navigation ul ul {
    background: rgba(10,14,26,0.85);
  }
  .main-navigation:not(.toggled) ul li.sfHover>ul,
  .main-navigation:not(.toggled) ul li:hover>ul {
    top: 75px;
  }
  .primary-menu {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 2rem;
  }

  .site-branding {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
  }

  .site-logo img {
    width: 32px;
    height: auto;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 6px;
    font-size: 16px;
  }

  .menu-item {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
  }

  .main-navigation .main-nav ul li a, .main-navigation .menu-toggle, .main-navigation .menu-bar-items {
    color: var(--text2);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
  }

  .menu-item a:hover, .menu-item a.active {
    color: var(--text);
    background: var(--surface);
  }

  .menu-item a.active { color: var(--accent); }

  .wp-block-button a {
    background: var(--accent);
    color: #fff !important;
    padding: 0.45rem 1.1rem !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
  }

  .wp-block-button a:hover { background: #6b91ff !important; }

/* ============
   Mega Menu
============ */

  .main-navigation ul.menu {
    position: relative;
  }

  .main-navigation ul.menu > li {
    position: relative;
  }

  .main-navigation ul.menu .mega-menu-content {
    position: absolute;
    left: 100%;
    transform: translateX(-100%);
    top: 100%;
    width: 100vw;
    max-width: 1024px;
	background: var(--bg2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    padding: 40px 30px 10px;
    display: none;
    z-index: 99999;
    border: 1px solid var(--border);
	border-radius: var(--radius-lg);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    gap: 30px;
  }

  .main-navigation ul.menu li.mega-menu-item:hover > .mega-menu-content {
    display: grid;
  }

  .main-navigation ul.menu li.mega-menu-item .sub-menu {
    display: none !important;
  }

  .mega-widget-title {
    margin-bottom: 12px;
    font-size: 1.15em;
    font-weight: 600;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
  }

  .hosting-tools-mega {
    max-width: 1100px;
    margin: 0 auto;
  }

  .mega-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
  }

  .icon-box {
    display: flex !important;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
  }

  .icon-box:hover {
    background: #334155;
    transform: translateY(-2px);
  }

  .icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .bg-blue   { background: #1e40af; }
  .bg-amber  { background: #b45309; }
  .bg-sky    { background: #0c4a6e; }
  .bg-emerald{ background: #0f766e; }
  .bg-violet { background: #6b21a8; }
  .bg-green  { background: #166534; }

  .text-content h4 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #f1f5f9;
  }

  .text-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.4;
  }

  .mega-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
  }

  .view-all {
    color: #60a5fa;
    font-weight: 600;
    text-decoration: none;
  }

  .more-tools {
    background: #10b981;
    color: white;
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 9999px;
    font-weight: 500;
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    z-index: 1;
    padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 5vw, 5rem);
    text-align: center;
    overflow: hidden;
  }

  .hero-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(79,124,255,0.18) 0%, rgba(0,229,176,0.06) 50%, transparent 70%);
    pointer-events: none;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(79,124,255,0.12);
    border: 1px solid rgba(79,124,255,0.25);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease both;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent2);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto 1.25rem;
    animation: fadeUp 0.6s 0.1s ease both;
  }

  h1 .accent-word {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text2);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }

  .stat {
    text-align: center;
  }

  .stat-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    display: block;
    letter-spacing: -0.03em;
  }

  .stat-label {
    font-size: 0.8rem;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

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

  /* ===== LAYOUT ===== */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
  }

  /* ===== SECTION LABELS ===== */
  .section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0.75rem;
  }

  .section-sub {
    font-size: 1rem;
    color: var(--text2);
    max-width: 560px;
    font-weight: 300;
  }

  /* ===== TOOL CARDS GRID ===== */
  .tools-section {
    padding: 5rem 0;
  }

  .tools-header {
    margin-bottom: 3rem;
  }

  .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.25rem;
  }

  .tool-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.5s ease both;
  }

  .tool-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--card-accent, var(--accent)), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .tool-card:hover {
    border-color: var(--border2);
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px var(--border2);
  }

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

  /* staggered animation */
  .tool-card:nth-child(1) { animation-delay: 0.05s; }
  .tool-card:nth-child(2) { animation-delay: 0.10s; }
  .tool-card:nth-child(3) { animation-delay: 0.15s; }
  .tool-card:nth-child(4) { animation-delay: 0.20s; }
  .tool-card:nth-child(5) { animation-delay: 0.25s; }
  .tool-card:nth-child(6) { animation-delay: 0.30s; }
  .tool-card:nth-child(7) { animation-delay: 0.35s; }
  .tool-card:nth-child(8) { animation-delay: 0.40s; }
  .tool-card:nth-child(9) { animation-delay: 0.45s; }

  .tool-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .tool-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }

  .tool-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .tool-badge {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .badge-free { background: rgba(0,229,176,0.12); color: var(--accent2); border: 1px solid rgba(0,229,176,0.2); }
  .badge-hot { background: rgba(255,107,74,0.12); color: var(--accent3); border: 1px solid rgba(255,107,74,0.2); }
  .badge-new { background: rgba(79,124,255,0.12); color: var(--accent); border: 1px solid rgba(79,124,255,0.2); }
  .badge-india { background: rgba(255,153,0,0.1); color: #ffaa33; border: 1px solid rgba(255,153,0,0.2); }

  .tool-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
  }

  .tool-desc {
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-weight: 300;
  }

  .tool-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 1.25rem;
  }

  .kw-tag {
    font-size: 0.72rem;
    color: var(--text3);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 3px 9px;
    border-radius: 100px;
    transition: color 0.2s, border-color 0.2s;
  }

  .kw-tag:hover { color: var(--text2); border-color: var(--border2); }

  .tool-affi {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border);
  }

  .affi-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent2);
    margin-bottom: 0.5rem;
  }

  .affi-programs {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .affi-prog {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
  }

  .affi-name { color: var(--text2); }
  .affi-comm { color: var(--accent2); font-weight: 500; font-size: 0.75rem; }

  .tool-cta {
    display: flex;
    gap: 8px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.6rem 1.2rem;
    border-radius: 9px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
  }

  .btn-primary {
    background: var(--accent);
    color: #fff;
    flex: 1;
    justify-content: center;
  }

  .btn-primary:hover { background: #6b91ff; transform: translateY(-1px); }

  .btn-secondary {
    background: var(--surface);
    color: var(--text2);
    border: 1px solid var(--border);
  }

  .btn-secondary:hover { border-color: var(--border2); color: var(--text); }

  /* ===== FEATURED TOOL (COMPARISON TABLE) ===== */
  .featured-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent, var(--bg2) 20%, var(--bg2) 80%, transparent);
  }

  .featured-inner {
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: var(--radius-xl);
    overflow: hidden;
  }

  .featured-header {
    padding: 2.5rem 2.5rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .featured-header-left { flex: 1; min-width: 280px; }

  .filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
  }

  .filter-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text2);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-body);
  }

  .filter-btn.active, .filter-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }

  .comparison-table-wrap {
    overflow-x: auto;
    padding: 1.5rem 2.5rem 2.5rem;
  }

  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
  }

  .comparison-table th {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text3);
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
  }

  .comparison-table th:first-child { padding-left: 0; }

  .comparison-table td {
    padding: 1.1rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    vertical-align: middle;
  }

  .comparison-table td:first-child { padding-left: 0; }

  .comparison-table tr:last-child td { border-bottom: none; }

  .comparison-table tr:hover td { background: rgba(255,255,255,0.02); }

  .host-info { display: flex; align-items: center; gap: 10px; }

  .host-logo {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }

  .host-name { font-weight: 500; color: var(--text); font-size: 0.9rem; }
  .host-tag { font-size: 0.72rem; color: var(--text3); }

  .price-cell { font-weight: 600; color: var(--text); }
  .price-period { font-size: 0.72rem; color: var(--text3); font-weight: 400; }

  .uptime-cell { color: var(--accent2); font-weight: 500; }

  .rating-stars { color: #ffaa33; font-size: 0.8rem; letter-spacing: 1px; }

  .tick { color: var(--accent2); }
  .cross { color: var(--text3); }

  .recommended-row td { background: rgba(79,124,255,0.04); }
  .recommended-row td:first-child { border-left: 3px solid var(--accent); padding-left: calc(0px + 3px); }

  .rec-badge {
    display: inline-block;
    background: rgba(79,124,255,0.15);
    color: var(--accent);
    border: 1px solid rgba(79,124,255,0.25);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 100px;
    margin-left: 6px;
    vertical-align: middle;
  }

  .get-deal-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--accent);
    color: #fff;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }

  .get-deal-btn:hover { background: #6b91ff; transform: translateY(-1px); }

  .get-deal-btn.outline {
    background: transparent;
    border: 1px solid var(--border2);
    color: var(--text2);
  }

  .get-deal-btn.outline:hover { border-color: var(--accent); color: var(--accent); background: transparent; }

  /* ===== QUIZ SECTION ===== */
  .quiz-section {
    padding: 5rem 0;
  }

  .quiz-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .quiz-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
  }

  .quiz-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
  }

  .quiz-sub {
    color: var(--text2);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .quiz-step { display: none; }
  .quiz-step.active { display: block; animation: fadeUp 0.4s ease both; }

  .quiz-question {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 1.25rem;
  }

  .quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .quiz-option {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.9rem 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    color: var(--text2);
    font-family: var(--font-body);
  }

  .quiz-option:hover, .quiz-option.selected {
    border-color: var(--accent);
    background: rgba(79,124,255,0.08);
    color: var(--text);
  }

  .quiz-option-label { font-weight: 500; display: block; margin-bottom: 2px; color: var(--text); font-size: 0.875rem; }
  .quiz-option-sub { font-size: 0.78rem; color: var(--text3); }

  .quiz-progress {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .progress-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.2s;
  }

  .progress-dot.active { background: var(--accent); border-color: var(--accent); width: 24px; border-radius: 4px; }
  .progress-dot.done { background: var(--accent2); border-color: var(--accent2); }

  .quiz-result { text-align: left; }

  .result-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: border-color 0.2s;
  }

  .result-card.top-pick {
    border-color: var(--accent);
    background: rgba(79,124,255,0.06);
  }

  .result-rank {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text3);
    flex-shrink: 0;
    width: 36px;
  }

  .result-rank.gold { color: #ffaa33; }

  .result-info { flex: 1; }
  .result-name { font-weight: 600; color: var(--text); margin-bottom: 4px; font-size: 1rem; }
  .result-why { font-size: 0.83rem; color: var(--text2); line-height: 1.5; margin-bottom: 8px; }
  .result-price { font-size: 0.78rem; color: var(--text3); margin-bottom: 8px; }

  /* ===== SEO TOOLS SECTION ===== */
  .seo-section {
    padding: 5rem 0;
  }

  .seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }

  .seo-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.25s;
  }

  .seo-card:hover {
    border-color: var(--border2);
    transform: translateY(-2px);
  }

  .seo-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
  }

  .seo-logo {
    font-size: 1.4rem;
    width: 44px; height: 44px;
    background: var(--surface);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
  }

  .seo-comm {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent2);
    background: rgba(0,229,176,0.08);
    border: 1px solid rgba(0,229,176,0.15);
    padding: 3px 9px;
    border-radius: 100px;
  }

  .seo-name { font-weight: 600; color: var(--text); margin-bottom: 4px; font-size: 1rem; }
  .seo-desc { font-size: 0.83rem; color: var(--text2); line-height: 1.55; margin-bottom: 1rem; font-weight: 300; }

  .seo-features { list-style: none; margin-bottom: 1.25rem; }
  .seo-features li {
    font-size: 0.8rem;
    color: var(--text2);
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .seo-features li::before { content: '→'; color: var(--accent2); font-size: 0.75rem; }

  /* ===== CDN SECTION ===== */
  .cdn-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, transparent, var(--bg2) 20%, var(--bg2) 80%, transparent);
  }

  .cdn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }

  .cdn-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.25s;
    position: relative;
  }

  .cdn-card:hover { border-color: var(--border2); transform: translateY(-2px); }

  .cdn-card.featured-cdn {
    border-color: rgba(0,229,176,0.3);
    background: rgba(0,229,176,0.04);
  }

  .cdn-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
  .cdn-name { font-weight: 600; color: var(--text); margin-bottom: 4px; }
  .cdn-desc { font-size: 0.83rem; color: var(--text2); line-height: 1.5; margin-bottom: 1rem; font-weight: 300; }
  .cdn-comm { font-size: 0.8rem; color: var(--accent2); font-weight: 500; margin-bottom: 0.75rem; }

  /* ===== MONITORING SECTION ===== */
  .monitor-section { padding: 5rem 0; }

  .monitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }

  .monitor-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.25s;
  }

  .monitor-card:hover { border-color: var(--border2); transform: translateY(-2px); }

  .monitor-icon { font-size: 1.75rem; margin-bottom: 0.75rem; display: block; }
  .monitor-name { font-weight: 600; color: var(--text); margin-bottom: 4px; }
  .monitor-desc { font-size: 0.83rem; color: var(--text2); line-height: 1.5; margin-bottom: 1rem; font-weight: 300; }
  .monitor-tier {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 0.75rem;
  }
  .tier-free { background: rgba(0,229,176,0.1); color: var(--accent2); border: 1px solid rgba(0,229,176,0.2); }
  .tier-paid { background: rgba(79,124,255,0.1); color: var(--accent); border: 1px solid rgba(79,124,255,0.2); }

  /* ===== FAQ SECTION ===== */
  .faq-section { padding:5rem 0; }

  /* ===== STATS SECTION ===== */
  .stats-section { padding:4rem 0;background:linear-gradient(180deg,transparent,rgba(15,21,38,0.8) 20%,rgba(15,21,38,0.8) 80%,transparent); }

  /* ===== CTA BANNER ===== */
  .cta-banner {
    padding: 5rem 0;
  }

  .cta-inner {
    background: linear-gradient(135deg, var(--surface) 0%, var(--bg3) 100%);
    border: 1px solid var(--border2);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-inner::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(79,124,255,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0.75rem;
  }

  .cta-inner p {
    color: var(--text2);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 300;
  }

  .cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
  }

/* =========
   Footer
========= */
  .footer-widgets {
    background-color: var(--bg-dark-2);
    color: var(--text-dark-2);
  }

  .footer-widgets a {
    color: var(--text-dark-2);
    text-decoration: none;
  }

  .footer-widgets a:hover {
    color: var(--text-dark-1);
  }

  .site-info {
    background-color: var(--bg-dark-1);
    color: var(--text-dark-1);
  }

  .generate-back-to-top {
    bottom: 80px;
  }

  .grecaptcha-badge {
	z-index: 10;
  }

  .site-footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 3rem clamp(1rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand p {
    font-size: 0.875rem;
    color: var(--text2);
    line-height: 1.6;
    margin-top: 0.75rem;
    font-weight: 300;
  }

  .footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
  }

  .footer-col a {
    display: block;
    font-size: 0.83rem;
    color: var(--text3);
    text-decoration: none;
    padding: 3px 0;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--text2); }

  .footer-widgets, .site-info {
    background: var(--bg2);
  }

  footer {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--text3);
  }

  .footer a { color: var(--text3); text-decoration: none; }
  .footer a:hover { color: var(--text2); }

  .hg-wrapper {
    padding: 5px;
    border-radius: 8px;
  }

  .hg-logo {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url('../sprite/logo-sprite.png');
    background-repeat: no-repeat;
    background-size: 160px 112px;
  }

  .hg-logo-16 {
    width: 16px;
    height: 16px;
  }

  .hg-hostinger { background-position: 0 0; }
  .hg-milesweb { background-position: -16px 0; }
  .hg-bigrock { background-position: -32px 0; }
  .hg-bluehost { background-position: -48px 0; }
  .hg-siteground { background-position: -64px 0; }
  .hg-cloudways { background-position: -80px 0; }
  .hg-kinsta { background-position: -96px 0; }
  .hg-wpengine { background-position: -112px 0; }
  .hg-semrush { background-position: 0 -16px; }
  .hg-mangools { background-position: -32px -16px; }
  .hg-ubersuggest { background-position: -64px -16px; }
  .hg-rankmathseo { background-position: -96px -16px; }
  .hg-lightspeed { background-position: -128px -16px; }
  .hg-bunnycdn { background-position: 0 -48px; }
  .hg-cloudflare { background-position: -32px -48px; }
  .hg-wprocket { background-position: -64px -48px; }
  .hg-keycdn { background-position: -96px -48px; }
  .hg-shortpixel { background-position: -128px -48px; }
  .hg-uptimerobot { background-position: 0 -80px; }
  .hg-statuscake { background-position: -32px -80px; }
  .hg-freshping { background-position: -64px -80px; }
  .hg-pingdom { background-position: -96px -80px; }
  .hg-wpsupercache { background-position: -128px -80px; }

  /* Retina/high-DPI support */

  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hg-logo {
      background-image: url('../sprite/logo-sprite-2x.png');
    }
  }

  /* ===== AFFILIATE DISCLOSURE ===== */
  .disclosure {
    background: rgba(79,124,255,0.05);
    border: 1px solid rgba(79,124,255,0.12);
    border-radius: var(--radius);
    padding: 0.85rem 1.25rem;
    font-size: 0.78rem;
    color: var(--text3);
    line-height: 1.5;
    margin-bottom: 4rem;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    .menu-item { display: none; }
    .tools-grid { grid-template-columns: 1fr; }
    .quiz-options { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .featured-header { flex-direction: column; }
    .filter-bar { justify-content: flex-start; }
    .comparison-table-wrap { padding: 1rem; }
    .quiz-card { padding: 1.75rem; }
  }

  @media (max-width: 480px) {
    .hero-stats { gap: 1.5rem; }
    .footer-inner { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
  }

  /* ===== UTILITY ===== */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 2rem 0;
  }

  .hidden { display: none !important; }

  /* Visually hidden but readable by search engines and screen readers */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }