/*<!-- Basic styles + layout -->*/

      /* ================= ROOT VARIABLES ================= */
:root {
  --indigo: #4F46E5;
  --muted: #5e6a87;
  --bg: #f7f9fc;
}

section:not(.hero):not(#seo-highlights) {
  border-top: 1px solid #eef1f7;
}

a {
  transition: color 0.2s ease;
}

.final-cta .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}


section {
  padding: clamp(80px, 10vw, 120px) 20px;
  position: relative;
}

.wrap-wide{
max-width:1200px;
margin:28px auto;
}


main section:nth-of-type(even){
background:#fafbff;
}
/* ================= RESET ================= */
*,
*::before,
*::after{
box-sizing:border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: #111;
  line-height: 1.5;
}

/* ================= FONTS ================= */
@font-face {
  font-family: 'Inter';
  font-weight: 400;
  src: url('/Assets/fonts/Inter-Regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  font-weight: 700;
  src: url('/Assets/fonts/Inter-Bold.woff2') format('woff2');
  font-display: swap;
}

/* ================= SECTION INNER BOX FIX ================= */

/* Give all sections proper inner spacing */
section > .wrap,
section > .seo-box,
section > .intro-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

/* Proper heading styling */
h2.section,
#seo-highlights h2,
#preview-posts h2,
#categories h2{
font-size:2.3rem;
font-weight:800;
letter-spacing:-0.02em;
margin-bottom:20px;
color:#111827;
}

.center{
text-align:center;
}

#categories h2.section{
text-align:center;
}

#categories .section-desc{
max-width:680px;
margin:0 auto 40px;
color:#5e6a87;
font-size:1.05rem;
text-align:center;
line-height:1.6;
}

/* Make SEO highlight look like centered box */

#seo-highlights .seo-box {
  background: #f9faff;
  padding: 40px 40px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

#seo-highlights .seo-box p {
  margin: 14px 0;
  line-height: 1.7;
  color: #444;
}

#categories .card {
  border:none;
  box-shadow:none;
  padding:26px;
}

/* COLORS */
#categories .card:nth-child(1){ background:#eef2ff; }
#categories .card:nth-child(2){ background:#ecfdf5; }
#categories .card:nth-child(3){ background:#fff7ed; }
#categories .card:nth-child(4){ background:#fefce8; }
#categories .card:nth-child(5){ background:#faf5ff; }
/* Categories section spacing */
#categories {
  padding-top: 70px;
}

#categories .center {
  max-width: 850px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Latest posts heading fix */
#preview-posts {
  padding-top: 70px;
}

#preview-posts h2.section {
  text-align: center;
  margin-bottom: 40px;
}

/* Featured content text margin improvement */
.featured-content .wrap {
  max-width: 900px;
  margin: 0 auto;
}

.featured-content p {
  margin: 18px 0;
  line-height: 1.75;
}

/* Improve link spacing inside text */
.featured-content a {
  display: inline-block;
  margin: 10px 0;
}

/* Fix intro strip centering */
.intro-wrap {
  max-width: 900px;
  margin: 0 auto;
}
/* ================= GLOBAL ================= */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}



:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
}

/* Only underline content links */
main a:hover:not(.card-link),
.featured-content a:hover {
  text-decoration: underline;
}

nav a:hover {
  text-decoration: none;
}

/* ================= HEADER ================= */
header {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 2px 12px rgba(20,20,60,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  color: #4F46E5; color: var(--indigo);
  text-decoration: none;
}

.logo-header {
  max-height: 60px;
  width: auto;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #333;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
}

nav a.active {
  color: #4F46E5; color: var(--indigo);
  font-weight: 800;
}

/* ================= BUTTONS ================= */
.cta-btn{
background:#4F46E5;
color:#fff;
padding:12px 22px;
border-radius:10px;
border:none;
font-weight:700;
cursor:pointer;
transition:all .25s ease;
}

.cta-btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(79,70,229,0.35);
}

.btn-ghost {
  border:1px solid #e4e7f2;
  background:#fff;
}

.btn-ghost:hover{
border-color:#4F46E5;
color:#4F46E5;
transform:translateY(-2px);
}

.footer-brand{
display:flex;
align-items:center;
gap:12px;
margin-bottom:14px;
}

.logo-footer{
width:70px;
height:auto;
display:block;
}



.footer-brand strong{
font-size:1.1rem;
font-weight:700;
color:#fff;
}

.footer-left{
max-width:380px;
}

.footer-col{
display:flex;
flex-direction:column;
gap:8px;
}

.social-links{
text-align:center;
margin-top:30px;
}

.social-links a{
display:block;
margin:6px 0;
}

.copyright{
text-align:center;
padding:14px;
color:#9aa0c6;
}

/* ================= HERO ================= */
.hero {
  min-height:75vh;
  padding:120px 18px 100px;
  background: linear-gradient(135deg, #eef2ff 0%, #f9f8ff 100%);
  position: relative;
  overflow: hidden;
}
footer h4{
margin-bottom:12px;
font-size:1rem;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-right {
  max-width: 480px;
  margin-left: auto;
}
.hero-left { flex: 1 1 460px; }
.hero-right { flex: 1 1 440px; }

.hero-img {
  border-radius:16px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.12),
    0 10px 30px rgba(0,0,0,0.08);
}

.hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.eyebrow {
  display: inline-block;
  background: #eef2ff;
  color: #4F46E5; color: var(--indigo);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
}

p.lead{
font-size:1.1rem;
color:#5e6a87;
max-width:520px;
}

.buttons {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}



/* subtle glow effect */
.hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,0.15), transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-path {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #5e6a87; color: var(--muted);
}

.hero-path a {
  font-weight: 600;
  color: #4F46E5; color: var(--indigo);
}
/* ================= INTRO SECTION ================= */
.intro-portfolio {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  margin: -60px auto 40px;
  max-width: 860px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.intro-portfolio p {
  font-size: 1.15rem;
  font-weight: 500;
  color: #444;
}

.intro-portfolio a {
  color: #4F46E5; color: var(--indigo);
  font-weight: 700;
}

/* ================= SEO HIGHLIGHTS ================= */
#seo-highlights {
  padding: 90px 20px;
  background: linear-gradient(135deg, #4F46E5, #6366f1);
  color: #fff;
  margin-top: 60px;
}

#seo-highlights .seo-box {
  background: rgba(255,255,255,0.08);
  /* fallback first */
/* blur support */
-webkit-backdrop-filter: blur(6px);
backdrop-filter: blur(6px);
  padding: 50px;
  border-radius: 16px;
  text-align: center;
}

#seo-highlights a {
  color: #fff;
  text-decoration: underline;
}

/* ================= GRID ================= */
.grid{
display:grid;
gap:28px;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
align-items:stretch;
}

/* ================= CARDS ================= */
.card {
  background:#fff;
  padding:22px;
  border-radius:16px;
  border:1px solid #eef0f6;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  transition: all .25s ease;
  position: relative;
}

.card {
  will-change: transform;
} 
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  transition: 0.3s;
  background: linear-gradient(135deg, rgba(79,70,229,0.08), transparent);
}

.card:hover::after {
  opacity: 1;
}
.card:hover{
box-shadow:
0 18px 45px rgba(0,0,0,0.08),
0 8px 20px rgba(0,0,0,0.06);
border-color:#d9def5;
}

.card .img-wrap{
width:100%;
height:170px;
overflow:hidden;
border-radius:12px;
margin-bottom:16px;
background:#f4f6fb;
display:flex;
  align-items:center;
  justify-content:center;
}

.card .img-wrap img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .4s ease;
}

.card:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.card h3 {
  font-size: 1.05rem;
  margin: 10px 0 6px;
  margin-top: 8px;
}

.card p {
  font-size: 0.92rem;
  color: #5e6a87; color: var(--muted);
}

.card a {
  margin-top: auto;
  color: #4F46E5; color: var(--indigo);
  font-weight: 600;
  text-decoration: none;
}

/* ================= FEATURED CONTENT ================= */
.featured-content {
  background: #fff;
  border-radius: 14px;
  padding: 50px 30px;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  line-height: 1.8;
}

.featured-content h3 {
  margin-top:30px;
}

.featured-content h2.section {
  color: #4F46E5; color: var(--indigo);
  text-align: center;
  margin-bottom: 20px;
}

.featured-images {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 24px;
}

.featured-images img {
  width: 100%;
  border-radius: 12px;
}

/* ================= FOOTER ================= */
footer {
  background: #0f1228;
  color: #c6c9ea;
  padding: 60px 20px;
  margin-top: 40px;
}

.footer-grid{
max-width:1200px;
margin:0 auto;
display:grid;
grid-template-columns:1.6fr 1fr 1fr 1fr;
gap:40px;
align-items:flex-start;
}

.footer-desc {
  color: #b5bbdd;
  max-width: 360px;
}

footer a {
  color: #c6c9ea;
  display: block;
  margin-bottom: 6px;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ================= MOBILE ================= */
.nav-toggle {
  display: none;
}

nav a{
position:relative;
}

nav a::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0%;
  height:2px;
  background:linear-gradient(90deg,#4F46E5,#6366f1);
  transition:.3s;
}

nav a:hover::after{
width:100%;
}

.highlight-box {
  background:#eef2ff;
  padding:14px;
  border-radius:8px;
  margin:16px 0;
}

@media (max-width: 900px) {

  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  h1 { font-size: 1.8rem !important; }

  .buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.footer-links{
grid-template-columns:1fr;
}

.footer-brand{
justify-content:center;
}


  .nav-toggle {
    display: block;
    background: var(--indigo);
    color: #fff;
    border: none;
    padding: 8px 12px;
    font-size: 1.3rem;
    border-radius: 6px;
    cursor: pointer;
  }

  nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 18px;
    background: #fff;
    width: 220px;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    flex-direction: column;
    gap: 12px;
  }

  nav.show {
    display: flex;
  }

  nav a {
    margin: 0;
    
  }
}

#seo-path {
  text-align: center;
}

#seo-path ol {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

#seo-path li {
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius:10px;
}

#seo-path li:hover {
  transform: translateY(-3px);
}

.final-cta {
  text-align: center;
  padding: 90px 20px;
  background: linear-gradient(135deg, #4F46E5, #6366f1);
  color: #fff;
  border-radius: 16px;
  max-width: 900px;
  margin: 60px auto;
}


.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.final-cta p {
  color: #cbd5e1;
  margin-bottom: 20px;
}

#seo-guides-preview .wrap {
  max-width: 900px;   /* reduce width */
  margin: 0 auto;
  text-align: center;
}

#seo-guides-preview .grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 800px;
  margin: 0 auto;
}
#seo-guides-preview h2 {
  text-align: center;
}

/* Clean card style */
#seo-guides-preview .card {
  background: #f9faff;
  border: 1px solid #e6e9f5;
  transition: all 0.25s ease;
  will-change: transform;
  text-align: left;
}

/* FIX: remove scale (causes flicker) */
#seo-guides-preview .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Title hover */
.card-link:hover h3 {
  color: #4F46E5;
}

/* CTA at bottom */
.card-cta {
  margin-top: auto;
  font-weight: 600;
  color: #4F46E5;
  transition: transform 0.2s ease;
}

/* CTA hover animation */
.card-link:hover .card-cta {
  transform: translateX(4px);
}

.hero-proof {
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.hero-proof span {
  background:#eef2ff;
  color:#4F46E5;
  padding:6px 12px;
  border-radius:20px;
  font-size:0.8rem;
  font-weight:600;
}

/* ================= SEO PATH (NEW UI) ================= */

.seo-path-wrap {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.seo-subtext {
  color: var(--muted);
  margin-bottom: 30px;
}

.seo-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* STEP CARD */
.seo-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f3ff;
  border-radius: 14px;
  padding: 16px 20px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid #e5e8ff;
}

.seo-step:hover {
  background: #e7eaff;
  transform: translateY(-2px);
}

/* NUMBER */
.step-number {
  background: #4F46E5;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 14px;
}

/* TEXT */
.step-text {
  flex: 1;
  text-align: left;
  font-weight: 600;
  color: #111827;
}

/* ARROW */
.step-arrow {
  color: #4F46E5;
  font-weight: 700;
}

/* BOTTOM TEXT */
.seo-bottom-text {
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.95rem;
}

.seo-bottom-text a {
  color: #4F46E5;
  font-weight: 600;
}

.seo-step:hover .step-arrow {
  color: #4F46E5;
  transform: translateX(4px);
}

.step-arrow {
  transition: transform 0.2s ease;
}

.seo-step:hover .step-number {
  background: #4338ca;
}

/* FIX: TEXT COLOR ON HOVER */
.seo-step:hover .step-text {
  color: #4F46E5;
}

/* Make entire card clickable */
.card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* ================= FEATURED CONTENT FINAL ================= */

.featured-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* Paragraph spacing */
.featured-content p {
  margin: 16px 0;
  line-height: 1.7;
}

/* Highlight boxes */
.highlight-box {
  background: #eef2ff;
  padding: 16px 18px;
  border-radius: 12px;
  margin: 18px 0;
  border: 1px solid #dbe3ff;
  transition: all 0.25s ease;
}

.highlight-box a {
  color: var(--indigo);
  font-weight: 600;
  text-decoration: none;
}

.highlight-box:hover {
  background: #e0e7ff;
  transform: translateY(-2px);
}

.highlight-box a:hover {
  text-decoration: underline;
}

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--muted);
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--indigo);
  font-weight: bold;
}

/* Number list */
.number-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  counter-reset: item;
}

.number-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
}

.number-list li::before {
  content: counter(item);
  counter-increment: item;
  background: var(--indigo);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Images */
.featured-images {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 24px;
}

.featured-images img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* ================= FIX: 4 CARDS PER ROW (LATEST POSTS) ================= */

#preview-posts .grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

/* Tablet */
@media (max-width: 1024px) {
  #preview-posts .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  #preview-posts .grid {
    grid-template-columns: 1fr;
  }
}

#preview-posts .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}


/* FIX: footer quick text */
.footer-note {
  color: #9aa0c6;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 6px 0 12px;
  text-align: left;   /* KEY FIX */
  max-width: 220px;   /* controls wrapping nicely */
}


/* ================= SEO HIGHLIGHTS MODERN UI ================= */

#seo-highlights {
  padding: 100px 20px;
  background: linear-gradient(135deg, #4F46E5, #6366f1);
  color: #fff;
}

/* GLASS CARD */
#seo-highlights .seo-box {
  max-width: 850px;
  margin: 0 auto;
  padding: 50px 40px;
  border-radius: 18px;
  text-align: center;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.2);
}

/* BADGE */
.seo-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* HEADING */
#seo-highlights h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}

/* TEXT */
#seo-highlights p {
  color: #e0e7ff;
  line-height: 1.7;
  margin: 12px 0;
}

/* ACTION BUTTONS */
.seo-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.seo-btn {
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.seo-btn.primary {
  background: #fff;
  color: #4F46E5;
}

.seo-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* GHOST BUTTON */
.seo-btn.ghost {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.seo-btn.ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* FORCE FIX: button text visibility */
.seo-btn.primary {
  background: #fff;
  color: #4F46E5 !important;
}

/* ================= MOBILE UX FIX (SAFE PATCH) ================= */

@media (max-width: 768px) {

  /* 🔹 GLOBAL SPACING FIX */
  section {
    padding: 50px 16px !important;
  }

  /* 🔹 HERO FIX */
  .hero {
    padding: 80px 16px 60px !important;
    text-align: center;
  }

  .hero-left {
    text-align: center;
  }

  .hero-right {
    margin: 0 auto;
  }

  h1 {
    font-size: 1.9rem !important;
    line-height: 1.25;
  }

  p.lead {
    font-size: 1rem;
    margin: 0 auto;
  }

  /* 🔹 BUTTONS FULL WIDTH */
  .buttons {
    width: 100%;
  }

  .buttons button {
    width: 100%;
  }

  /* 🔹 INTRO BOX */
  .intro-portfolio {
    padding: 22px;
    margin: -40px 12px 30px;
  }

  /* 🔹 CARDS FIX */
  .card {
    padding: 18px;
  }

  .card h3 {
    font-size: 1rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  /* 🔹 GRID GAP REDUCE */
  .grid {
    gap: 18px;
  }

  /* 🔹 SEO HIGHLIGHTS FIX */
  #seo-highlights {
    padding: 70px 16px;
  }

  #seo-highlights .seo-box {
    padding: 28px 20px;
  }

  #seo-highlights h2 {
    font-size: 1.6rem;
  }

  #seo-highlights p {
    font-size: 0.95rem;
  }

  /* 🔹 SEO BUTTONS STACK */
  .seo-actions {
    flex-direction: column;
    gap: 10px;
  }

  .seo-btn {
    width: 100%;
    text-align: center;
  }

  /* 🔹 FEATURED CONTENT */
  .featured-content {
    padding: 30px 18px;
  }

  /* 🔹 IMAGES STACK CLEAN */
  .featured-images {
    grid-template-columns: 1fr;
  }

  /* 🔹 SEO PATH FIX */
  .seo-step {
    padding: 14px;
  }

  .step-text {
    font-size: 0.95rem;
  }

  /* 🔹 FOOTER FIX */
  .footer-grid {
    gap: 30px;
  }

  .footer-note {
    max-width: 100%;
    text-align: center;
  }

}





















