:root {
  color-scheme: dark;
  /* 60% */
  --primary: #87ceeb;
  /* 30% */
  --secondary: #3a5afefa;
  /* 10% */
  --tertiary: #ffbf1e;

  --bg: #19022930;
  --bg2: #001c005b;

  /* text colors */
  --white: #ffffff;
  --black: #000000;

  --radius: 28px;
  --transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--white);

  background:
    /* TOP LEFT CIRCLE */
    radial-gradient(circle at center right,
      var(--bg2),
      transparent 45%),

    /* TOP RIGHT CIRCLE */
    radial-gradient(circle at top right,
      var(--tertiary),
      transparent 10%),

    /* CENTER GLOW */
    radial-gradient(circle at bottom center,
      var(--secondary),
      transparent 10%),

    /* MAIN BACKGROUND */
    linear-gradient(180deg,
      var(--bg) 0%,
      var(--bg) 100%);


  overflow-x: hidden;
}

p {
  text-align: justify;
}

.section-heading p {
  text-align: center;
  max-width: 70vw;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--tertiary);
  color: var(--black);
}

::-moz-selection {
  background: var(--tertiary);
  color: var(--black);
}

img {
  max-width: 100%;
  display: block;
}


button,
input,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

.sun-orbit-progress {
  --orbit-side: calc(var(--sun-size) * -1.4);
  --orbit-bottom: calc(var(--sun-size) * -1.2);
  --sun-x: var(--orbit-side);
  --sun-y: calc(100vh - var(--orbit-bottom));
  --sun-size: 10rem;
  --daylight-size: clamp(320px, 52vw, 680px);
  position: fixed;
  inset: 0;
  z-index: -1001;
  pointer-events: none;

}

.sun-orbit-progress::before {
  content: '';
  position: absolute;
  left: var(--sun-x);
  top: var(--sun-y);
  width: var(--daylight-size);
  height: var(--daylight-size);
  /* border-radius: 50%; */
  background: radial-gradient(circle, rgba(255, 255, 255, 0.175) 0 16%, rgba(255, 217, 0, 0.125) 34%, rgba(17, 76, 90, 0.18) 52%, transparent 74%);
  filter: blur(60px);
  mix-blend-mode: screen;
  opacity: 0.15;
  transform: translate(-50%, -50%);
}

.orbit-arc {
  display: none;
}

.scroll-sun {
  position: absolute;
  left: var(--sun-x);
  top: var(--sun-y);
  width: var(--sun-size);
  height: var(--sun-size);
  border-radius: 50%;
  opacity: 0.50;

  z-index: 1;
  background: radial-gradient(circle at 35% 30%, var(--white) 0 10%, rgba(255, 215, 0, 0.75) 39%, rgba(180, 110, 46, 0.9) 100%);
  box-shadow: 0 0 30px rgba(237, 173, 88, 0.9), 0 0 92px rgba(255, 215, 0, 0.75), 0 0 190px rgba(255, 215, 0, 0.35);
  transform: translate(-50%, -50%);
  transition: left 0.16s linear, top 0.16s linear;
}

.scroll-sun::after {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.2) 32%, transparent 58%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(95%, 1200px);
  padding: 1rem;

  margin: 0 auto;
  backdrop-filter: blur(24px);
  background: var(--bg);
  border-radius: 0px 0px 20px 20px;
  box-shadow: 0 0px 50px var(--black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 51;
  order: -1;
}

.hamburger span {
  width: 100%;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.desktop-only {
  display: inline-flex;
}

@media (max-width: 800px) {
  .desktop-only {
    display: none !important;
  }

}

.nav-links {
  display: none;
  gap: 1rem;
}

.nav-links.active {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 6rem 2rem 2rem;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(111, 168, 76, 0.22);
  z-index: 49;
  width: fit-content;
  min-width: 220px;
  max-width: 260px;
  animation: slideInFromLeft 0.7s ease;
  overflow-y: auto;
}

a {
  color: var(--white);
  font-weight: 700;
  transition: color 0.5s ease;
  font-size: 1rem;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  transform-origin: center;
}

a:hover {
  color: var(--tertiary);

}

.brand img {
  width: 200px;
}

.mobile-actions {
  display: none;
}

@media (max-width: 800px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 1rem;
    right: 1rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    padding: 1.5rem;

    border-radius: 20px;

    background: rgba(15, 15, 15, 0.95);

    backdrop-filter: blur(20px);

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;

    transition: all .3s ease;
  }

  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;

    margin-top: 1rem;
    padding-top: 1rem;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-actions .btn {
    width: 100%;
    text-align: center;
  }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 48;
}

body.menu-open::before {
  opacity: 1;
  pointer-events: auto;
}

main {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 2rem;
}

.section {
  padding: 3rem 0;
  margin: auto;
  min-height: auto;
  display: grid;
  gap: 1rem
}

.border {
  border: 1px solid rgba(111, 168, 76, 0.3);
}



.hero {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url('./src/heroimg1.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.hero-content {
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.hero-grid {
  width: 60%;
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  align-items: center;
}

.hero-title {
  margin: 0;
  color: var(--white);
  text-shadow: 2px 2px 5px var(--black);
  font-size: 4rem;
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.hero-description {
  color: var(--tertiary);
}

.hero-subtext {
  color: var(--tertiary);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero {
    background: none !important
  }

  .hero-grid {
    width: 100%;
  }


}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--tertiary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 2rem;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

button,
.btn {
  padding: 0.5rem 1rem;
  margin: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  border: none;
  border-radius: 33px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(var(--black), 0.55);

  transition: transform 0.5s ease, background 0.5s ease, border-color 0.5s ease;
}

.btn.primary,
button.primary {
  background: var(--tertiary);
  color: var(--black);
}

.btn.secondary,
button.secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-2px);
  transition: transform 0.5s ease, background 0.5s ease, border-color 0.5s ease;
}

.split {
  grid-template-columns: 1fr;
}

.panel-card {
  padding: 2rem;
  background: rgba(17, 76, 90, 0.68);
  transition: var(--transition);
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  padding: 1.5rem;
  border-radius: 24px;
  transition: var(--transition);
}

#benefits {
  background: rgba(17, 76, 90, 0.68);
}

.feature-item h3 {
  color: var(--tertiary);
  margin: 0 0 0.85rem;
}

.cards-grid,
.stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  display: grid;
  gap: 1rem;
}

.cards-grid {

  h3 {
    color: var(--tertiary);
  }
}

.card,
.stat-card,
.cta-card,
.testimonial,
.process-step,
.gallery-card {
  padding: 2rem;
  transition: var(--transition);
}


.section-heading {
  text-align: center;
  justify-items: center;
  display: grid;
  gap: 1rem;
}

.section-heading h2 {
  margin: 0;
  max-width: 60vw;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.stats {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.stat-card {
  text-align: center;
}

.stat-card strong {
  color: var(--tertiary);
  display: block;
  font-size: 2.6rem;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.72);
}

.process-track {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  align-items: start;
}

.process-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border: 1px solid transparent;
}

/* 
.process-nav-item:hover {
  background: linear-gradient(135deg, var(--secondary), var(--tertiary));
  transform: translateX(4px);
}

.process-nav-item.active {
  background: linear-gradient(135deg, var(--secondary),var(--tertiary));
  border-color: var(--black);
  transform: translateX(8px);
} */

.nav-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(111, 168, 76, 0.2), rgba(255, 215, 0, 0.24));
  color: var(--tertiary);
  font-weight: 700;
  font-size: 0.9rem;
}

.process-nav-item.active .nav-number {
  background: var(--tertiary);
  color: var(--black);
}

.process-nav-item h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.process-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.process-card {
  display: none;
  flex: 1;
  min-height: 460px;
  max-height: 560px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(111, 168, 76, 0.3);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(111, 168, 76, 0.12), 0 8px 30px rgba(255, 215, 0, 0.1);
  overflow: hidden;
}

.process-card.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--tertiary);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
}

.card-header h3 {
  color: var(--tertiary);
  margin: 0;
  font-size: 1.5rem;
}

.card-summary {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
}

.card-details {
  flex: 1;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white);
  overflow-y: auto;
  padding-right: 0.5rem;
}

.card-details::-webkit-scrollbar {
  width: 8px;
}

.card-details::-webkit-scrollbar-thumb {
  background: rgba(111, 168, 76, 0.45);
  border-radius: 999px;
}

.card-details::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
}

.services-section {
  position: relative;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-lottie {
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.section-content {
  position: relative;
  z-index: 1;
}

.cards-grid {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  gap: 1rem;
  margin-top: 10rem;
}

@media (max-width: 1023px) {
  .process-track {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-nav {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0 1rem;
  }

  .process-nav-item {
    flex-shrink: 0;
    min-width: 150px;
    padding: 0.75rem;
  }

  .process-nav-item h4 {
    font-size: 1rem;
  }

  .nav-number {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
}


/* TESTIMONIALS */


.testimonial-slider {
  position: relative;
  width: 100%;
}

.testimonial-track {
  display: flex;

  gap: 1rem;

  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);

  will-change: transform;
}


.testimonial strong {
  color: var(--tertiary);
  font-weight: 700;
  text-align: right;
  display: block;
}



.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-avatar {
  width: 10%;
  height: 10%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 10px var(--secondary);
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-meta strong {
  color: var(--tertiary);
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-meta span {
  font-size: 0.9rem;
}

.testimonial-slider {
  overflow-y: hidden;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
}

.testimonial {
  flex: 0 0 calc((100% - 48px) / 3);

  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .testimonial {
    flex: 0 0 100%;
  }
}

.testimonial-controls {
  z-index: 10;
  display: flex;
  align-items: end;
  justify-content: end;
  margin-bottom: -3rem;
}

/* ////////////// */


/* =========================================================
   MASONRY GRID
========================================================= */

.gallery-grid {
  columns: 4 250px;
}

/* =========================================================
   GALLERY CARD
========================================================= */

.gallery-card {
  position: relative;
  margin-bottom: 1.5rem;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
  cursor: pointer;
  filter: grayscale(100%);
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0ms ease,
    box-shadow 0.7s ease;
}

/* =========================================================
   DIFFERENT CARD SIZES
========================================================= */

.gallery-small {
  height: 250px;
}

.gallery-medium {
  height: 400px;
}

.gallery-large {
  height: 550px;
}

/* =========================================================
   IMAGE OVERLAY
========================================================= */

.gallery-card::before {
  content: '';

  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.08),
      rgba(0, 0, 0, 0.88));

  z-index: 0;

  transition:
    opacity 0.5s ease,
    background 0.5s ease;
}

/* =========================================================
   HOVER EFFECT
========================================================= */

.gallery-card:hover {
  transform:
    translateY(-10px) scale(1.02);

  filter: grayscale(0%);

  box-shadow:
    0 25px 60px rgba(254, 254, 254, 0.12);
}

.gallery-card:hover::before {
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.02),
      rgba(0, 0, 0, 0.102));
}

/* =========================================================
   INFO BOX
========================================================= */

.gallery-info-box {
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  z-index: 2;
  padding: 1rem;

  border-radius: 22px;

  background:
    rgba(15, 15, 15, 0.149);

  backdrop-filter: blur(16px);

  border:
    1px solid rgba(255, 255, 255, 0.08);

  opacity: 0;

  transform: translateY(30px);

  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    background 0.45s ease;
}

.gallery-card:hover .gallery-info-box {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   TOP HEADING
========================================================= */

.gallery-heading {
  display: flex;
  align-items: center;

  gap: 5px;
  margin-bottom: 1.2rem;
}

/* STATUS DOT */

.gallery-status {
  margin: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #55ff00;
  flex-shrink: 0;
  box-shadow:
    0 0 18px rgba(255, 149, 0, 0.9);
}

/* HEADING TEXT */

.gallery-heading h3 {
  color: var(--white);
  margin: 0;
}

.gallery-heading p {
  margin: 0;
  color: var(--tertiary);
}

/* =========================================================
   DETAILS GRID
========================================================= */

.gallery-details {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(400px, 1fr));
  gap: 0.5rem;
}

/* SINGLE ITEM */

.gallery-item {
  display: flex;
  flex-direction: column;
}

/* LABEL */

.gallery-item span {
  color: var(--tertiary);
  font-size: 8px;
  text-transform: uppercase;
}

/* VALUE */

.gallery-item strong {
  color: var(--white);
  font-size: 12px;
}

/* =========================================================
   PREMIUM HOVER GLOW
========================================================= */

.gallery-card:hover .gallery-status {
  box-shadow:
    0 0 25px rgba(255, 149, 0, 1),
    0 0 50px rgba(255, 149, 0, 0.45);
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1024px) {

  .gallery-grid {
    columns: 2 280px;
  }
}

@media (max-width: 768px) {

  .gallery-grid {
    columns: 1;

    column-gap: 0;
  }

  .gallery-card {
    height: 360px !important;
  }

  .gallery-info-box {
    opacity: 1;

    transform: translateY(0);

    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .gallery-details {
    grid-template-columns: 1fr;
  }

  .gallery-heading h3 {
    font-size: 1rem;
  }

  .gallery-item strong {
    font-size: 0.88rem;
  }
}


.cta-panel {
  padding: 10px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding: 0 2rem;
  border-radius: 32px;

  position: relative;
  overflow: hidden;
}

/* LEFT CONTENT */
.cta-card-content {
  flex: 1;
  max-width: 100%;
}

.cta-card h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-card p {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.85;
}

.cta-lottie {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}


/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cta-card {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 24px;
  }

  .cta-card-content {
    max-width: 100%;
  }

  .cta-lottie {
    justify-content: center;
  }

  .cta-card h2 {
    font-size: 2.3rem;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* ==========================
   FOOTER GRID
========================== */

.footer-grid {
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 180px 1fr 320px;
  gap: 1rem;
  align-items: center;
}

/* ==========================
   LOGO
========================== */

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  width: 140px;
  height: auto;
  object-fit: contain;
}

/* ==========================
   COMPANY INFO
========================== */

.footer-info strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-info p {
  margin: 0;
  line-height: 1.7;
  max-width: 600px;
}

/* ==========================
   SOCIAL ICONS
========================== */

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  transition: all 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
}

.footer-socials i {
  font-size: 1.1rem;
}

/* ==========================
   CTA CARD
========================== */

.footer-cta {
  padding: 1rem;
  border-radius: 1rem;
}

.footer-cta span {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-actions .btn {
  width: 100%;
  justify-content: center;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 992px) {
  .hero-grid {
    width: 100%;

  }

  body {
    
  background:
    /* TOP LEFT CIRCLE */
    radial-gradient(circle at center right,
      var(--bg2),
      transparent 5%),

    /* TOP RIGHT CIRCLE */
    radial-gradient(circle at top right,
      var(--tertiary),
      transparent 5%),

    /* CENTER GLOW */
    radial-gradient(circle at bottom center,
      var(--secondary),
      transparent 5%),

    /* MAIN BACKGROUND */
    linear-gradient(180deg,
      var(--bg2) 10%,
      var(--bg) 100%);


  }

  .footer-grid {
    grid-template-columns: 1fr;
    min-width: 330px;

    gap: 1rem;
    text-align: center;
  }

  .footer-logo-wrap {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-info p {
    max-width: 100%;
  }

  .footer-cta {
    min-width: 300px;
    margin: 0 auto;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {
  .topbar {
padding: 0.5rem !important;
  }

  .footer-grid {
    /* grid-template-columns: 1fr; */
    gap: 1rem;
  }

  .footer-logo {
    width: 110px;
  }

  .footer-info strong {
    font-size: 1.25rem;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-actions {
    flex-direction: column;
  }

  .footer-actions .btn {
    width: 100%;
  }
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tertiary);
  color: var(--black);
  border: none;
  font-size: 1.35rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  z-index: 1100;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.glass {
  gap: 1rem;
  padding: 2rem;
  border-radius: 2rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgb(255, 255, 255);
  transition:
    background 0.9s ease 0.5s,
    box-shadow 0.9s ease 0.5s;
}


.glass:hover {
  background: rgba(65, 154, 248, 0.507);
  box-shadow: 0 2px 10px rgba(255, 224, 102, 0.908);
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
}

@media (min-width: 1024px) {

  .hamburger {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    padding: 0;
    background: none;
    border: none;
    animation: none;
    height: auto;
    width: auto;
    max-width: none;
    min-width: auto;
  }

  .split {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 1023px) {
  .sun-orbit-progress {
    --orbit-side: calc(var(--sun-size) * -1.35);
    --orbit-bottom: calc(var(--sun-size) * -1.15);
    --sun-size: 56px;
    --daylight-size: clamp(230px, 76vw, 380px);
  }

  .topbar {
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
  }

  .cta-sm {
    order: 4;
  }

  .panel-card,
  .feature-item,
  .card,
  .testimonial,
  .stat-card,
  .cta-card {
    padding: 1rem;
  }
}


@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-sun {
    transition: none;
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: var(--white);
  background: rgba(255, 255, 255, 0.1);

  transition: all 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  color: var(--black);
  background: var(--tertiary);
}

.footer-socials i {
  font-size: 1.25rem;
}