/* Header and Footer css only */

/* =====================================================
   WHF 2026 DESIGN SYSTEM
===================================================== */
:root {
  --green-main: #00C853;
  --green-dark: #009624;
  --green-light: #69F0AE;
  --dark: #07130D;
  --dark-2: #0B1F15;
  --white: #ffffff;
  --text-soft: #A8B8AF;
  --border: rgba(255, 255, 255, .12);
  --shadow: 0 25px 70px rgba(0, 0, 0, .45);
  --transition: .35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Inter, system-ui, sans-serif;
}

a {
  text-decoration: none;
}

/* =====================================================
   HEADER
===================================================== */
.whf2026-header {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 70px);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 19, 13, .88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

  /* LOGO */
  .whf2026-logo {
    display: flex;
    align-items: center;
  }
  
  .whf2026-logoImg {
    width: auto;
    height: 65px;
    border-radius: 50%;
  }
  
  .whf2026-logoText {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
  }

/* =====================================================
   NAVIGATION
===================================================== */
.whf2026-navList {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.whf2026-navItem {
  position: static;
}

.whf2026-navLink {
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: .3s;
}

.whf2026-navLink:hover {
  background: rgba(0, 200, 83, .15);
  color: var(--green-light);
}

/* Make Tools button look like normal navigation text */
.whf2026-megaTrigger {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  color: white;
  padding: 12px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* =====================================================
   DESKTOP FULL WIDTH MEGA MENU
===================================================== */
.whf2026-megaMenu {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, 20px);
  width: 100vw;
  max-width: 100%;
  padding: 40px clamp(20px, 8vw, 100px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, #0B1F15, #07130D);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: .35s ease;
}

.whf2026-hasMega:hover .whf2026-megaMenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.whf2026-megaHeading {
  color: var(--green-light);
  margin-bottom: 15px;
}

.whf2026-megaLink {
  display: block;
  color: var(--text-soft);
  padding: 8px 0;
  transition: .3s;
}

.whf2026-megaLink:hover {
  color: white;
  transform: translateX(8px);
}

/* =====================================================
   HAMBURGER
===================================================== */
.whf2026-navToggle {
  display: none;
  background: none;
  border: 0;
}

.whf2026-navToggleBar {
  width: 28px;
  height: 3px;
  display: block;
  margin: 5px;
  background: white;
  border-radius: 20px;
}

/* =====================================================
   FOOTER
===================================================== */
.whf2026-footer {
  background: radial-gradient(circle at top, #10351F, #050B07);
  padding: 70px clamp(20px, 5vw, 80px) 25px;
  color: white;
}

.whf2026-footerContainer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

.whf2026-footerLogo {
  display: flex;
  align-items: center;
}

.whf2026-footerLogoImg {
  width: auto;
  height: 65px;
  border-radius: 50%;
}

.whf2026-footerBrandName {
  font-size: 1.4rem;
  font-weight: 700;
}

.whf2026-footerDesc {
  margin: 20px 0;
  line-height: 1.7;
  color: var(--text-soft);
}

/* SOCIAL */
.whf2026-socialLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.whf2026-socialLink {
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .08);
  color: white;
  transition: .3s;
}

.whf2026-socialLink:hover {
  background: var(--green-main);
  transform: translateY(-4px);
}

.whf2026-footerHeading {
  color: var(--green-light);
  margin-bottom: 20px;
}

.whf2026-footerNav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whf2026-footerLink {
  color: var(--text-soft);
  transition: .3s;
}

.whf2026-footerLink:hover {
  color: white;
  transform: translateX(8px);
}

.whf2026-footerBottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}

.whf2026-legalNav {
  display: flex;
  gap: 20px;
}

.whf2026-legalLink {
  color: var(--text-soft);
}

/* =====================================================
   MOBILE NAVIGATION + FOOTER
===================================================== */
@media(max-width: 768px) {
  /* ================= HEADER ================= */
  .whf2026-header {
    height: 75px;
    padding: 0 20px;
  }

  /* Hamburger visible */
  .whf2026-navToggle {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 2000;
  }

  /* Hamburger animation */
  .whf2026-navToggleBar {
    width: 28px;
    height: 3px;
    margin: 6px auto;
    transition: .35s ease;
  }

  /* when menu opens */
  .whf2026-navToggle.active .whf2026-navToggleBar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .whf2026-navToggle.active .whf2026-navToggleBar:nth-child(2) {
    opacity: 0;
  }

  .whf2026-navToggle.active .whf2026-navToggleBar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* ================= MOBILE MENU ================= */
  .whf2026-nav {
    position: fixed;
    top: 75px;
    left: 0;
    width: 85%;
    height: calc(100vh - 75px);
    background: linear-gradient(160deg, #0B1F15, #07130D);
    transform: translateX(-100%);
    transition: .45s ease;
    overflow-y: auto;
    z-index: 1500;
    border-right: 1px solid var(--border);
  }

  /* open menu */
  .whf2026-nav.active {
    transform: translateX(0);
  }

  .whf2026-navList {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 25px;
  }

  .whf2026-navLink {
    width: 100%;
    justify-content: space-between;
    padding: 15px 10px;
    border-radius: 10px;
  }

  /* remove desktop hover */
  .whf2026-navLink:hover {
    background: none;
  }

  /* ================= TOOLS DROPDOWN ================= */
  .whf2026-hasMega {
    position: relative;
  }

  .whf2026-megaTrigger {
    width: 100%;
    justify-content: space-between;
  }

  /* arrow */
  .whf2026-megaTrigger::after {
    content: "›";
    font-size: 22px;
    transition: .3s;
  }

  .whf2026-hasMega.active .whf2026-megaTrigger::after {
    transform: rotate(90deg);
  }

  /* hide mega menu */
  .whf2026-megaMenu {
    position: static;
    width: 100%;
    padding: 10px 15px;
    display: none;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
  }

  /* Disable desktop hover mega menu behavior */
  .whf2026-hasMega:hover .whf2026-megaMenu {
    transform: none;
  }

  .whf2026-megaMenu {
    left: auto;
    top: auto;
    transform: none !important;
    width: 100%;
  }

  /* show tools */
  .whf2026-hasMega.active .whf2026-megaMenu {
    display: block;
  }

  .whf2026-megaCol {
    margin-bottom: 20px;
  }

  .whf2026-megaHeading {
    font-size: .9rem;
  }

  /* ================= FOOTER MOBILE ================= */
  .whf2026-footer {
    padding: 50px 20px 25px;
  }

  .whf2026-footerContainer {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .whf2026-footerBrand {
    text-align: center;
  }

  .whf2026-footerLogo {
    justify-content: center;
  }

  .whf2026-footerDesc {
    text-align: center;
  }

  .whf2026-socialLinks {
    justify-content: center;
  }

  .whf2026-footerCol {
    text-align: center;
  }

  .whf2026-footerNav {
    align-items: center;
  }

  .whf2026-addressLine {
    text-align: center;
  }

  .whf2026-footerBottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .whf2026-legalNav {
    flex-direction: column;
    gap: 12px;
  }
}





/* ==================================================================================================================================================================== */

  /* HEADER AND FOOTER ENDS HERE */
  /* HEADER AND FOOTER ENDS HERE */
    /* HEADER AND FOOTER ENDS HERE */
/* HEADER AND FOOTER ENDS HERE */
/* ==================================================================================================================================================================== */



/* =========================================================================
 Technical SEO Checker -- design tokens
 Subject: a diagnostic / audit tool. Treat it like an instrument reading,
 not a marketing page: quiet paper-white surface, one confident accent,
 a monospace face reserved for anything that is literally being measured
 (the percentage, the status line, table risk counts).
 ========================================================================= */




/* =====================================================
TECHNICAL SEO CHECKER
GLOBAL RESET HELPERS
===================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* =====================================================
HERO SECTION
===================================================== */
.technical-seo-hero {
  position: relative;
  padding: 100px 25px 80px;
  background: radial-gradient(circle at top, rgba(0, 200, 83, .18), transparent 35%), linear-gradient(135deg, var(--dark), var(--dark-2));
  overflow: hidden;
}
/* subtle background glow */
.technical-seo-hero::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  top: -150px;
  right: -120px;
  background: rgba(105, 240, 174, .12);
  filter: blur(80px);
  border-radius: 50%;
}
.technical-seo-content {
  position: relative;
  max-width: 850px;
  margin: auto;
  text-align: center;
  z-index: 1;
}
/* MAIN HEADING */
.technical-seo-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--white);
  margin: 0 0 25px;
}
/* DESCRIPTION */
.technical-seo-content > p {
  max-width: 720px;
  margin: 0 auto 40px;
  color: var(--text-soft);
  font-size: 1.1rem;
  line-height: 1.8;
}
/* =====================================================
URL FORM
===================================================== */
.technical-seo-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 650px;
  margin: auto;
}
.technical-seo-form input {
  flex: 1;
  height: 58px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: 1rem;
  outline: none;
  backdrop-filter: blur(10px);
  transition: border var(--transition), box-shadow var(--transition);
}
.technical-seo-form input::placeholder {
  color: rgba(255, 255, 255, .45);
}
.technical-seo-form input:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 4px rgba(0, 200, 83, .18);
}
/* =====================================================
GO BUTTON
===================================================== */
.technical-seo-form button {
  height: 58px;
  padding: 0 35px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  color: var(--dark);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.technical-seo-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 200, 83, .35);
}
.technical-seo-form button:active {
  transform: translateY(0);
}
/* =====================================================
URL HINT
===================================================== */
.technical-seo-form__hint {
  min-height: 22px;
  margin-top: 18px;
  color: var(--green-light);
  font-size: .9rem;
}
/* =====================================================
MOBILE HERO
===================================================== */
@media(max-width:700px) {

  .technical-seo-hero {
      padding:70px 18px 60px;
  }


  .technical-seo-content h1 {
      font-size:2rem;
  }


  .technical-seo-content > p {
      font-size:.95rem;
      line-height:1.7;
  }

  .technical-seo-form {

    flex-direction:column;

    gap:14px;

    max-width:100%;

}


.technical-seo-form input {

    width:100%;

    height:72px;

    padding:0 24px;

    box-sizing:border-box;

    border-radius:16px;

    font-size:1.05rem;

    appearance:none;

    -webkit-appearance:none;

}


.technical-seo-form button {

    width:100%;

    align-self:center;

    height:56px;

    padding:0 40px;

    border-radius:14px;

}

}

/* =====================================================
AFFILIATE RECOMMENDATION BANNER
===================================================== */
.technical-seo-banner {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 25px;
}
.technical-seo-banner__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 28px 35px;
  text-decoration: none;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
  border: 1px solid rgba(105, 240, 174, .18);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
  transition: transform var(--transition), border var(--transition), box-shadow var(--transition);
}
/* Green glow */
.technical-seo-banner__link::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -90px;
  background: rgba(0, 200, 83, .18);
  filter: blur(60px);
  border-radius: 50%;
}
.technical-seo-banner__link:hover {
  transform: translateY(-5px);
  border-color: rgba(105, 240, 174, .45);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
}
/* =====================================================
EYEBROW LABEL
===================================================== */
.technical-seo-banner__eyebrow {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(0, 200, 83, .12);
  border: 1px solid rgba(105, 240, 174, .25);
  color: var(--green-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
/* =====================================================
BANNER TEXT
===================================================== */
.technical-seo-banner__copy {
  position: relative;
  z-index: 1;
  flex: 1;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
}
.technical-seo-banner__copy strong {
  color: var(--white);
}
/* =====================================================
CTA
===================================================== */
.technical-seo-banner__cta {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  padding: 12px 22px;
  border-radius: 12px;
  background: var(--green-main);
  color: var(--dark);
  font-weight: 800;
  font-size: .9rem;
  transition: background var(--transition), transform var(--transition);
}
.technical-seo-banner__link:hover .technical-seo-banner__cta {
  background: var(--green-light);
  transform: translateY(-2px);
}
/* =====================================================
AFFILIATE MOBILE
===================================================== */
@media(max-width: 750px) {
  .technical-seo-banner {
    padding: 0 18px;
    margin: 35px auto;
  }
  .technical-seo-banner__link {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
    gap: 18px;
  }
  .technical-seo-banner__copy {
    font-size: .95rem;
  }
  .technical-seo-banner__cta {
    width: 100%;
    text-align: center;
  }
}


/* =====================================================
SCANNING / PROGRESS SECTION
===================================================== */
.technical-seo-scan {
  position: relative;
  text-align: center;
  padding: 80px 25px;
  background: linear-gradient(180deg, var(--dark), var(--dark-2));
  overflow: hidden;
}
/* Background glow */
.technical-seo-scan::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  background: rgba(0, 200, 83, .12);
  filter: blur(100px);
  border-radius: 50%;
}
/* =====================================================
NOTICE TEXT
===================================================== */
.technical-seo-scan__notice {
  position: relative;
  z-index: 1;
  margin: 0 0 35px;
  color: var(--text-soft);
  font-size: .9rem;
  letter-spacing: .04em;
}
/* =====================================================
ORB CONTAINER
===================================================== */
.technical-seo-scan__orb-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.technical-seo-scan__orb {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* =====================================================
PERCENTAGE
===================================================== */
.technical-seo-scan__percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-weight: 800;
  font-family: monospace;
  color: var(--white);
  text-shadow: 0 0 25px rgba(105, 240, 174, .35);
  z-index: 2;
}
/* =====================================================
STATUS TEXT
===================================================== */
.technical-seo-scan__status {
  position: relative;
  z-index: 1;
  max-width: 600px;
  min-height: 28px;
  margin: auto;
  color: var(--green-light);
  font-family: monospace;
  font-size: 1rem;
  letter-spacing: .03em;
}
/* =====================================================
COMPLETION TICK
===================================================== */
.technical-seo-scan__tick {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.technical-seo-scan__tick-circle {
  stroke: var(--green-main);
  stroke-width: 3;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: technicalTick .7s ease forwards;
}
.technical-seo-scan__tick-check {
  stroke: var(--green-light);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: technicalTick .5s ease .5s forwards;
}
@keyframes technicalTick {
  to {
    stroke-dashoffset: 0;
  }
}
/* =====================================================
STATUS SHINE EFFECT
Starts after 2 seconds
===================================================== */
#technical-seo-status.shine-once::after,
#technical-seo-hint.shine-once::after {
  animation-delay: 2s;
}
/* =====================================================
MOBILE SCAN
===================================================== */
@media(max-width: 700px) {
  .technical-seo-scan {
    padding: 60px 18px;
  }
  .technical-seo-scan__orb {
    width: 230px;
    height: 230px;
  }
  .technical-seo-scan__percent {
    font-size: 2rem;
  }
  .technical-seo-scan__status {
    font-size: .9rem;
    padding: 0 10px;
  }
}
/* =====================================================
RESULTS DASHBOARD
===================================================== */
.technical-seo-results {
  max-width: 1200px;
  margin: auto;
  padding: 70px 25px 100px;
  font-family: inherit;
}
/* =====================================================
TOOLBAR
===================================================== */
.technical-seo-results__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: linear-gradient(135deg, var(--dark-2), var(--dark));
  border-radius: 22px;
  border: 1px solid rgba(105, 240, 174, .15);
  box-shadow: var(--shadow);
}
/* Issue count */
.technical-seo-results__count {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
}
/* =====================================================
ACTION AREA
===================================================== */
.technical-seo-results__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.technical-seo-results__sort-label {
  color: var(--text-soft);
  font-size: .85rem;
}
.technical-seo-results__sort {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  outline: none;
}
#technical-seo-sort option {
  color:#050B07;
}




/* Download button */
.technical-seo-results__download {
  padding: 11px 20px;
  border-radius: 12px;
  background: var(--green-main);
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition);
}
.technical-seo-results__download:hover {
  background: var(--green-light);
  transform: translateY(-3px);
}
/* =====================================================
SEO TABLE
===================================================== */
.technical-seo-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(7, 19, 13, .12);
}
/* Table heading */
.technical-seo-table thead {
  background: var(--dark-2);
}
.technical-seo-table thead th {
  padding: 18px 25px;
  color: var(--green-light);
  text-align: left;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
/* Rows */
.technical-seo-table tbody tr {
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.technical-seo-table tbody tr:hover {
  background: #f4fff8;
}
.technical-seo-table td {
  padding: 20px 25px;
  color: var(--dark);
  font-size: .95rem;
  border-bottom: 1px solid rgba(7, 19, 13, .08);
}
.technical-seo-table tbody tr:last-child td {
  border-bottom: none;
}
/* =====================================================
RISK BADGES
===================================================== */
.technical-seo-risk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
/* HIGH */
.technical-seo-risk-badge--high {
  background: rgba(244, 67, 54, .12);
  color: #d32f2f;
  border: 1px solid rgba(244, 67, 54, .25);
}
/* MEDIUM */
.technical-seo-risk-badge--medium {
  background: rgba(255, 193, 7, .15);
  color: #b77900;
  border: 1px solid rgba(255, 193, 7, .3);
}
/* LOW */
.technical-seo-risk-badge--low {
  background: rgba(0, 200, 83, .12);
  color: var(--green-dark);
  border: 1px solid rgba(0, 200, 83, .25);
}
/* =====================================================
MOBILE TABLE
===================================================== */
@media(max-width: 700px) {
  .technical-seo-results {
    padding: 50px 18px 70px;
  }
  .technical-seo-results__toolbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .technical-seo-results__actions {
    width: 100%;
  }
  .technical-seo-results__sort,
  .technical-seo-results__download {
    width: 100%;
    text-align: center;
  }




  
  .technical-seo-table {
    width: 100%;
    display: table;
    table-layout: fixed;
    border-radius: 16px;
}

.technical-seo-table thead {
    width: 100%;
}

.technical-seo-table th {
    width: 100%;
    padding: 16px;
    font-size: .75rem;
}

.technical-seo-table th:first-child {
    width: 70%;
}

.technical-seo-table th:last-child {
    width: 30%;
}

.technical-seo-table tbody {
    width: 100%;
}

.technical-seo-table tr {
    width: 100%;
}

.technical-seo-table td {
    width: auto;
    padding: 16px 6px;
    white-space: normal;
    word-break: break-word;
    font-size: .9rem;
}

.technical-seo-table td:first-child {
    width: 70%;
}

.technical-seo-table td:last-child {
    width: 30%;
    text-align: center;
}

/* Risk badge mobile adjustment */
.technical-seo-risk-badge {
    padding: 5px 8px;
    font-size: .65rem;
}
}
/* =====================================================
SLIDE OUT PANEL
===================================================== */
/* Overlay */
.technical-seo-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 13, .65);
  backdrop-filter: blur(6px);
  z-index: 1000;
}
/* =====================================================
PANEL CONTAINER
===================================================== */
.technical-seo-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(450px, 100%);
  background: linear-gradient(180deg, var(--dark-2), var(--dark));
  border-left: 1px solid rgba(105, 240, 174, .18);
  box-shadow: -25px 0 70px rgba(0, 0, 0, .45);
  z-index: 1100;
  padding: 35px 30px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
/* Open state */
.technical-seo-panel.is-open {
  transform: translateX(0);
}
/* =====================================================
CLOSE BUTTON
===================================================== */
.technical-seo-panel__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.technical-seo-panel__close:hover {
  background: var(--green-main);
  color: var(--dark);
  transform: rotate(90deg);
}
/* =====================================================
RISK LABEL
===================================================== */
.technical-seo-panel__risk {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(0, 200, 83, .15);
  color: var(--green-light);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}
/* =====================================================
TITLE
===================================================== */
.technical-seo-panel__title {
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1.3;
  margin: 0 0 35px;
}
/* =====================================================
CONTENT BLOCKS
===================================================== */
.technical-seo-panel__block {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.technical-seo-panel__block h3 {
  color: var(--green-light);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.technical-seo-panel__block p {
  color: var(--text-soft);
  font-size: .95rem;
  line-height: 1.8;
  margin: 0;
}
/* =====================================================
SUGGESTION BOX
===================================================== */
.technical-seo-panel__block--suggestion {
  padding: 22px;
  border-radius: 18px;
  background: rgba(0, 200, 83, .10);
  border: 1px solid rgba(105, 240, 174, .25);
}
.technical-seo-panel__block--suggestion h3 {
  color: var(--green-main);
}
.technical-seo-panel__block--suggestion p a {
  color: var(--green-light);
  font-weight: 700;
  text-decoration: none;
}
.technical-seo-panel__block--suggestion p a:hover {
  text-decoration: underline;
}
/* =====================================================
PANEL MOBILE
===================================================== */
@media(max-width: 600px) {
  .technical-seo-panel {
    width: 100%;
    padding: 30px 22px;
  }
  .technical-seo-panel__title {
    font-size: 1.35rem;
  }
}
/* =====================================================
GLOBAL MICRO INTERACTIONS
===================================================== */
* {
  -webkit-tap-highlight-color: transparent;
}
.technical-seo-hero,
.technical-seo-banner,
.technical-seo-scan,
.technical-seo-results {
  animation: sectionReveal .7s ease both;
}
@keyframes sectionReveal {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =====================================================
ONE TIME FEATURE SHINE
===================================================== */
.shine-once {
  position: relative;
  overflow: hidden;
}
.shine-once::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(105, 240, 174, .35), transparent);
  transform: skewX(-20deg);
  animation: featureShine 1.8s cubic-bezier(.4, 0, .2, 1) forwards;
}
@keyframes featureShine {
  from {
    left: -120%;
  }
  to {
    left: 150%;
  }
}


/* =====================================================
   TECHNICAL SEO STATUS + HINT SHINE
===================================================== */


#technical-seo-status,
#technical-seo-hint {

    position:relative;

    display:inline-block;

    color:var(--white);

    overflow:hidden;

}





/* Shine animation */

#technical-seo-status::after,
#technical-seo-hint::after {

    content:"";

    position:absolute;

    top:0;

    left:-120%;


    width:70%;

    height:100%;


    background:

    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.75),
        transparent
    );


    transform:skewX(-20deg);

}





/* Add this class through JS */

#technical-seo-status.shine-once::after,
#technical-seo-hint.shine-once::after {


    animation:

    textShine 1.2s ease forwards;


}





@keyframes textShine {


    from {

        left:-120%;

    }


    to {

        left:150%;

    }


}

/* =====================================================
   FIX SCAN ORB ROUND SHAPE
===================================================== */


.technical-seo-scan__orb {

  width:300px;

  height:300px;

  aspect-ratio:1 / 1;

  border-radius:50%;

  overflow:hidden;

  display:flex;

  align-items:center;

  justify-content:center;

}




/* Keep Lottie perfectly circular */

.technical-seo-scan__orb dotlottie-wc {

  width:300px !important;

  height:150px !important;

  max-width:100%;

  max-height:100%;

  aspect-ratio:1 / 1;

}






@media(max-width:600px){


  .technical-seo-scan__orb {


      width:220px;

      height:220px;


  }



  .technical-seo-scan__orb dotlottie-wc {


      width:220px !important;

      height:120px !important;


  }


}


/* =====================================================
   TECHNICAL SEO FACTORS SECTION what we look for 
===================================================== */
.technical-factors-section {
  padding: 80px 24px;
  background: var(--white);
}

.technical-factors-container {
  max-width: 1050px;
  margin: auto;
  text-align: center;
}

.technical-factors-container h2 {
  color: var(--dark);
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.technical-factors-intro {
  max-width: 650px;
  margin: 0 auto 40px;
  color: #55635b;
  line-height: 1.7;
}

/* GRID */
.technical-factors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* CARD */
.technical-factor-card {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  border-radius: 12px;
  padding: 22px;
  text-align: left;
  border: 1px solid rgba(105, 240, 174, .14);
  min-height: 130px;
  transition: .35s ease;
}

.technical-factor-card:hover {
  transform: translateY(-5px);
  border-color: rgba(105, 240, 174, .35);
  box-shadow: 0 15px 35px rgba(7, 19, 13, .25);
}

.technical-factor-card h3 {
  color: var(--green-light);
  font-size: 1.05rem;
  margin: 0 0 10px;
}

.technical-factor-card p {
  color: #c8d5ce;
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}

/* HIDDEN FACTORS */
.technical-factors-hidden {
  display: none;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.technical-factors-hidden.show {
  display: grid;
}

/* LOAD BUTTON */
.technical-factors-btn {
  margin-top: 35px;
  padding: 12px 26px;
  background: var(--dark-2);
  color: var(--green-light);
  border: 1px solid rgba(105, 240, 174, .35);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: .35s ease;
}

.technical-factors-btn:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-3px);
}

/* MOBILE */
@media(max-width: 700px) {
  .technical-factors-section {
      padding: 60px 18px;
  }

  .technical-factors-container h2 {
      font-size: 1.55rem;
  }

  .technical-factors-grid {
      grid-template-columns: 1fr;
      gap: 14px;
  }

  .technical-factor-card {
      padding: 18px;
      min-height: auto;
  }

  .technical-factor-card h3 {
      font-size: 1rem;
  }

  .technical-factor-card p {
      font-size: .85rem;
  }

  .technical-factors-hidden.show {
      grid-template-columns: 1fr;
      gap: 14px;
  }
}

@media(max-width:700px){

  .technical-seo-form input {
      height:68px !important;
      min-height:68px !important;
      padding:0 24px !important;
      box-sizing:border-box;
      line-height:1.2;
  }

}



/* =====================================================
   OTHER SEO TOOLS SECTION
===================================================== */
.other-seo-tools {
    padding: 90px 24px;
    background: linear-gradient(180deg, var(--dark), var(--dark-2));
}

.other-seo-tools-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* Heading */
.other-seo-tools-container h2 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.other-seo-tools-intro {
    max-width: 650px;
    margin: 0 auto 45px;
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 1rem;
}

/* GRID */
.other-seo-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.seo-tool-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 30px 25px;
    text-align: left;
    min-height: 280px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    border: 1px solid rgba(105, 240, 174, .15);
    border-radius: 22px;
    backdrop-filter: blur(12px);
    transition: .35s ease;
}

.seo-tool-card:hover {
    transform: translateY(-8px);
    border-color: rgba(105, 240, 174, .45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

/* ICON */
.seo-tool-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(0, 200, 83, .15);
    font-size: 2rem;
    margin-bottom: 22px;
}

/* TITLE */
.seo-tool-card h3 {
    color: var(--green-light);
    font-size: 1.15rem;
    margin: 0 0 12px;
}

/* DESCRIPTION */
.seo-tool-card p {
    color: #c8d5ce;
    font-size: .92rem;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* LINK TEXT */
.seo-tool-card span {
    margin-top: 25px;
    color: var(--white);
    font-weight: 700;
    transition: .3s ease;
}

.seo-tool-card:hover span {
    color: var(--green-light);
    transform: translateX(6px);
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .other-seo-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .other-seo-tools {
        padding: 60px 18px;
    }
    .other-seo-tools-container h2 {
        font-size: 1.7rem;
    }
    .other-seo-tools-grid {
        grid-template-columns: 1fr;
    }
}


/* ===================================================
WHO SHOULD USE OUR TECHNICAL AUDIT
=================================================== */
.technical-audience {
  padding: 90px 20px;
  background: radial-gradient(circle at top left, rgba(0, 200, 83, .08), transparent 35%), #ffffff;
}
#technical-audience-title {
  font-size: 32px;
}
.technical-audience__container {
  max-width: 1200px;
  margin: auto;
}
/* =========================
HEADING
========================= */
.technical-audience__heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}
.technical-audience__label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  background: rgba(0, 200, 83, .08);
  color: var(--green-dark);
  border: 1px solid rgba(0, 200, 83, .18);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
}
.technical-audience__heading h2 {
  margin: 0 0 18px;
  color: var(--dark);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  font-weight: 600;
}
.technical-audience__heading p {
  max-width: 650px;
  margin: 0 auto 40px;
  color: #55635b;
  line-height: 1.7;
}
/* =========================
GRID
========================= */
.technical-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* =========================
CARD DEFAULT
========================= */
.technical-audience__card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #103525, #071b12);
  border: 1px solid rgba(105, 240, 174, .12);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .22);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
/* Glass layer hidden by default */
.technical-audience__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .08), transparent);
  opacity: 0;
  transform: translateX(-100%);
  /* REMOVED: transition: .6s ease; */
  pointer-events: none;
}
/* =========================
HOVER ONLY EFFECT
========================= */
.technical-audience__card:hover {
  background: linear-gradient(135deg, #164633, #092317);
  border-color: rgba(105, 240, 174, .35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .3), 0 0 20px rgba(0, 200, 83, .15);
}
.technical-audience__card:hover::before {
  opacity: 1;
  transform: translateX(100%);
  /* ADDED: Transition here so it animates smoothly ONLY on hover */
  transition: .6s ease; 
}

/* =========================
ICON BOX
========================= */
.technical-audience__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(0, 200, 83, .12);
  border: 1px solid rgba(105, 240, 174, .18);
  color: #69f0ae;
  transition: .35s ease;
}
/* =========================
ICON FLOAT ANIMATION
========================= */
.technical-audience__card i {
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
  transition: .35s ease;
}
@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
/* Icon glow ONLY on hover */
.technical-audience__card:hover i {
  transform: scale(1.12);
  filter: drop-shadow(0 0 10px rgba(105, 240, 174, .55));
}
.technical-audience__card:hover .technical-audience__icon {
  background: rgba(0, 200, 83, .20);
  border-color: rgba(105, 240, 174, .35);
}
/* =========================
TEXT
========================= */
.technical-audience__card h3 {
  color: var(--white);
  margin-bottom: 12px;
}
.technical-audience__card p {
  color: #C8D4CE;
  line-height: 1.7;
}
/* =========================
TABLET
========================= */
@media(max-width: 992px) {
  .technical-audience {
    padding: 75px 20px;
  }
  .technical-audience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #technical-audience-title {
    font-size: 24.8px;
  }
}
/* =========================
MOBILE
========================= */
@media(max-width: 768px) {
  .technical-audience {
    padding: 60px 18px;
  }
  .technical-audience__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .technical-audience__card {
    padding: 26px;
  }
  .technical-audience__heading {
    margin-bottom: 40px;
  }
  #technical-audience-title {
    font-size: 24.8px;
  }
  
}








/* SHINE EFFECT FOR  AFFILIATE BANNER */
.technical-seo-banner__link {
  position: relative;
  overflow: hidden;
}

.technical-seo-banner__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,.55),
      transparent
  );
  transform: skewX(-25deg);
  opacity: 0;
}

.banner-shine::after {
  animation: bannerShine 1.9s ease;
}

@keyframes bannerShine {
  0% {
      left: -150%;
      opacity: 1;
  }
  100% {
      left: 180%;
      opacity: 0;
  }
}