/* ReFormIT 2025 Ultra-Modern Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Space+Grotesk:wght@700&display=swap');
:root {
  --primary: #2563eb;
  --primary-light: #60a5fa;
  --accent: #06b6d4;
  --neon: #00ffe7;
  --bg: #000;
  --surface: transparent;
  --glass: transparent;
  --text: #f3f6fa;
  --muted: #a0aec0;
  --shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
  --radius: 11px;
  --blur: 0;
  --gradient: linear-gradient(120deg, #60a5fa 0%, #06b6d4 100%);
  --headline-font: 'Space Grotesk', Inter, Arial, sans-serif;
  --body-font: 'Inter', Arial, sans-serif;
  /* Dark mode */
  --bg-dark: #000;
  --surface-dark: transparent;
  --glass-dark: transparent;
  --text-dark: #f3f6fa;
  --muted-dark: #a0aec0;
  --shadow-dark: 0 8px 32px rgba(0,0,0,0.32);
  --gradient-dark: linear-gradient(120deg, #2563eb 0%, #06b6d4 100%);
  --hero-heading-size: 3.6rem;
}
@media (max-width: 600px) {
  :root {
    --hero-heading-size: 3rem;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  margin: 0;
  font-family: var(--body-font);
  background: #000;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  transition: background 0.4s, color 0.4s;
  scroll-behavior: smooth;
}
body.dark {
  background: #000;
  color: var(--text-dark);
}
.navbar {
  height: 54px;
  min-height: 54px;
  max-height: 54px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 1vw 0.5rem 2.5vw;
  background: rgba(16, 20, 32, 0.72);
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.4s, box-shadow 0.4s;
  border-radius: var(--radius);
  margin-top: 0.5rem;
}
.navbar.scrolled {
  background: linear-gradient(90deg, rgba(16,20,32,0.2) 60%, rgba(37,99,235,0.18) 100%);
  box-shadow: 0 8px 32px rgba(37,99,235,0.18);
}
body.dark .navbar {
  background: transparent;
  box-shadow: none;
}
.navbar-left, .nav-links, .lang-switcher, .navbar-right {
  height: 100%;
  display: flex;
  align-items: center;
}
.navbar-left {
  justify-self: start;
}
.logo, .logo-gradient {
  height: 100%;
  display: flex;
  align-items: center;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary);
}
.lang-switcher {
  display: flex;
  align-items: center;
  justify-self: end;
  margin-left: 0;
  margin-right: 0;
  position: static;
}
.lang-btn {
  background: none;
  border: none;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--primary-light);
  color: #fff;
}
.scroll-to-top-btn {
  position: fixed;
  right: 2.2rem;
  bottom: 2.2rem;
  z-index: 200;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(120deg, #2563eb 0%, #06b6d4 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 32px rgba(37,99,235,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px) scale(0.9);
  transition: opacity 0.4s, transform 0.4s;
  /* Animated gradient background */
  background: linear-gradient(90deg, var(--primary), var(--neon), var(--accent));
  background-size: 200% auto;
  animation: gradient-move 4s linear infinite alternate;
}
.scroll-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.scroll-to-top-btn:active {
  transform: scale(0.95);
}
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1rem 4rem 1rem;
}
section {
  margin-bottom: 4rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 1.5rem;
  transition: box-shadow 0.2s;
}
section:target {
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.16);
}
.footer {
  text-align: center;
  padding: 2rem 0 1rem 0;
  color: var(--muted);
  font-size: 1rem;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 60vh;
  padding: 2rem 0;
  z-index: 2;
  position: relative;
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(37,99,235,0.08);
}
.hero-content p {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 500px;
}
.cta-btn {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(6,182,212,0.12);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.cta-btn:hover {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 32px rgba(37,99,235,0.16);
}
.hero-animation {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(120deg, var(--primary-light) 0%, var(--bg) 100%);
}
.what-we-do {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0 0 0;
  margin-top: 0.5rem;
}
.what-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 900px;
}
.what-card {
  background: transparent;
  border-radius: var(--radius);
  box-shadow: none;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 260px;
}
.what-card:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.16);
  transform: translateY(-4px) scale(1.03);
}
.what-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.what-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 0.7rem 0;
  color: var(--primary);
  text-align: center;
}
.what-card p {
  color: var(--text);
  font-size: 1rem;
  text-align: center;
  margin: 0;
}
.why-matters {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0 0 0;
}
.why-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 900px;
}
.why-card {
  background: transparent;
  border-radius: var(--radius);
  box-shadow: none;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 180px;
}
.why-card:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.16);
  transform: translateY(-4px) scale(1.03);
}
.why-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-stat {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-align: center;
}
.why-desc {
  color: var(--text);
  font-size: 1rem;
  text-align: center;
  margin: 0;
}
.founders {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0 0 0;
}
.founders-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 900px;
}
.founder-card {
  background: transparent;
  border-radius: var(--radius);
  box-shadow: none;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 260px;
}
.founder-card:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.16);
  transform: translateY(-4px) scale(1.03);
}
.founder-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px rgba(37,99,235,0.10);
  background: var(--primary-light);
}
.founder-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
  text-align: center;
}
.founder-role {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.7rem;
  text-align: center;
}
.founder-bio {
  color: var(--text);
  font-size: 1rem;
  text-align: center;
  margin: 0;
}
.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0 0 0;
}
.gallery-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}
.gallery-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 900px;
  position: relative;
}
.gallery-card {
  background: transparent;
  border-radius: var(--radius);
  box-shadow: none;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 260px;
  min-height: 320px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.gallery-card.active {
  box-shadow: 0 8px 32px rgba(37,99,235,0.16);
  transform: scale(1.04);
}
.gallery-img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  background: #e0e7ef;
  box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}
.gallery-caption {
  color: var(--text);
  font-size: 1rem;
  text-align: center;
  margin: 0.5rem 0 0 0;
}
.gallery-arrow {
  background: var(--primary-light);
  border: none;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(37,99,235,0.10);
  transition: background 0.2s, transform 0.2s;
}
.gallery-arrow:hover {
  background: var(--primary);
  transform: scale(1.08);
}
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0 0 0;
}
.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}
.contact-form {
  background: transparent;
  border-radius: var(--radius);
  box-shadow: none;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  max-width: 420px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-label {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}
.contact-input, .contact-textarea {
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: #f8fafc;
  color: #000;
  transition: border 0.2s;
}
.contact-input:focus, .contact-textarea:focus {
  border: 1.5px solid var(--primary);
  outline: none;
}
.contact-textarea {
  min-height: 90px;
  resize: vertical;
}
.contact-btn {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(6,182,212,0.12);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.contact-btn:hover {
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 32px rgba(37,99,235,0.16);
}
.hero-section-2025, body.dark .hero-section-2025 {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68vh;
  margin-bottom: 0;
}
.hero-glass {
  position: relative;
  z-index: 2;
  background: transparent;
  box-shadow: none;
  border-radius: var(--radius);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  padding: 3.5rem 2.5rem 3.5rem 2.5rem;
  max-width: 100vw;
  margin: 3rem 1rem 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
}
body.dark .hero-glass {
  background: transparent;
  box-shadow: none;
}
.hero-headline {
  font-family: var(--headline-font);
  font-size: var(--hero-heading-size);
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.08;
  background: linear-gradient(90deg, var(--primary), var(--neon), var(--accent));
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-move 4s linear infinite alternate;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
}
@keyframes gradient-move {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.hero-gradient-text {
  font-family: var(--headline-font);
  font-size: 1.4rem;
  font-weight: 600;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-move 6s linear infinite alternate;
  margin-bottom: 2rem;
}
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.slide-up {
  animation: slideUp 1s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
.fly-in {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1), transform 1.1s cubic-bezier(.4,0,.2,1);
}
.fly-in.visible {
  opacity: 1;
  transform: none;
}
.what-title, .why-title, .founders-title, .gallery-title, .contact-title {
  font-family: var(--headline-font);
  font-size: var(--hero-heading-size);
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--neon), var(--accent));
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-move 4s linear infinite alternate;
  margin-bottom: 2rem;
  text-align: center;
}
.navbar-right {
  display: none;
  align-items: center;
}
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.4rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  z-index: 300;
  line-height: 1;
  height: 100%;
}
@media (min-width: 601px) {
  .nav-toggle::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    z-index: -1;
  }
  .nav-toggle:hover::before {
    opacity: 1;
  }
  .nav-toggle:hover {
    background: none;
  }
}
.lang-switcher {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
  position: static;
}
.logo-gradient {
  font-family: var(--headline-font);
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--neon), var(--accent));
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-move 4s linear infinite alternate;
  text-decoration: none;
  letter-spacing: -1px;
  line-height: 1.1;
}
@media (max-width: 600px) {
  .logo-gradient {
    font-size: 1.3rem;
  }
  :root {
    --hero-heading-size: 3rem;
  }
}
@media (min-width: 601px) {
  .nav-toggle {
    position: relative;
  }
}
@media (max-width: 1100px) {
  .navbar {
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2.5vw;
    min-height: 0;
    margin: 0.5rem 0 0 0;
    width: 100%;
    border-radius: 0 0 var(--radius) var(--radius)
  }
  .logo {
    margin-right: 0;
    max-width: 50vw;
  }
  .navbar-right {
    display: flex;
    align-items: center;
    justify-self: end;
  }
  .nav-toggle {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .lang-switcher {
    margin-left: 0;
    margin-right: 0;
    justify-self: end;
  }
  .nav-links {
    display: none;
  }
  .nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    background: rgba(16, 20, 32, 0.98);
    box-shadow: -4px 0 32px rgba(0,0,0,0.18);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    z-index: 250;
    width: 100vw;
    max-width: max-content;
    min-width: 180px;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .nav-mobile.open {
    transform: translateX(0);
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .nav-mobile.open .nav-links {
    display: flex;
  }
  .nav-links li {
    margin-bottom: 1.2rem;
    width: 100%;
  }
  .nav-links li:last-child {
    margin-bottom: 0;
  }
  .nav-links-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .nav-links-mobile li {
    width: 100%;
    margin-bottom: 1.2rem;
    padding-left: 1.0rem;
    padding-right: 1.0rem;
  }
  .nav-links-mobile li:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  .navbar {
    padding-right: 1vw;
  }
  .nav-mobile {
    width: auto;
    max-width: 90vw;
    min-width: 180px;
    white-space: nowrap;
    overflow-x: auto;
  }
  .logo {
    max-width: 50vw;
  }
}
@media (max-width: 600px) {
  .hero-headline,
  .what-title, .why-title, .founders-title, .gallery-title, .contact-title {
    font-size: var(--hero-heading-size);
  }
  .what-card {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    min-height: 180px;
  }
  .what-icon {
    width: 64px;
    height: 64px;
  }
  .why-card {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .why-card-row-mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .why-card > .why-icon {
    margin-bottom: 0;
    margin-right: 0.7em;
  }
  .why-card > .why-stat {
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-block;
    vertical-align: middle;
  }
  .why-card > .why-desc {
    margin-top: 0.7em;
    width: 100%;
  }
  .why-icon {
    width: 64px;
    height: 64px;
  }
  .why-stat {
    font-size: 1.3rem;
  }
  .founder-card {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    min-height: 180px;
  }
  .founder-photo {
    width: 54px;
    height: 54px;
  }
  .founder-name {
    font-size: 1.3rem;
  }
  .gallery-slider {
    gap: 0.5rem;
  }
  .gallery-card {
    min-width: 180px;
    min-height: 180px;
    padding: 0.5rem;
  }
  .gallery-img {
    width: 120px;
    height: 80px;
  }
  .contact-form {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 100%;
  }
  .scroll-to-top-btn {
    right: 1rem;
    bottom: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}
@media (max-width: 800px) {
  .nav-links {
    gap: 1rem;
    margin-right: 1rem;
  }
  main {
    padding: 3.5rem 0.5rem 2rem 0.5rem;
  }
  section {
    padding: 1.5rem 0.5rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
  .hero-section-2025 {
    min-height: 56vh;
  }
  .hero-glass {
    padding: 2rem 1rem;
    max-width: 98vw;
  }
}
@media (max-width: 500px) {
  .footer {
    font-size: 0.9rem;
  }
  .hero-gradient-text {
    font-size: 1.2rem;
  }
}
@media (min-width: 1101px) {
  .nav-mobile {
    display: none !important;
  }
} 
/* Hamburger icon animated gradient */
.hamburger-gradient rect {
  /* Animate the gradient like the logo */
  transition: fill 0.4s;
  /* For Safari: */
  will-change: fill;
}
.hamburger-gradient {
  /* Animate the gradient stops */
  animation: gradient-move 4s linear infinite alternate;
} 
/* Up button animated gradient */
.up-gradient {
  animation: gradient-move 4s linear infinite alternate;
} 
/* Remove top padding for nav-mobile on all display sizes */
.nav-mobile {
  padding-top: 0 !important;
} 
/* --- Transformation Section Responsive Layout --- */
.transformation-section .gallery-gif-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 700px;
  margin: 1vw 0;
}
.transformation-section .gallery-gif-col {
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.transformation-section .gallery-gif-col img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.18);
}
@media (max-width: 899px) {
  .transformation-section .gallery-gif-row {
    flex-direction: column;
    gap: 4vw;
    max-width: 100vw;
  }
  .transformation-section .gallery-gif-col {
    max-width: 98vw;
    min-width: 0;
    flex-basis: 100%;
  }
  .transformation-section .gallery-gif-col img {
    max-width: 98vw;
    width: 100%;
  }
} 
/* Hamburger menu icon animation */
.hamburger {
  display: inline-block;
  width: 32px;
  height: 32px;
  position: relative;
  cursor: pointer;
  z-index: 301;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 4px;
  right: 4px;
  height: 3.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--neon), var(--accent));
  background-size: 200% auto;
  animation: gradient-move 4s linear infinite alternate;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
}
.hamburger span:nth-child(1) {
  top: 8px;
}
.hamburger span:nth-child(2) {
  top: 14.5px;
}
.hamburger span:nth-child(3) {
  top: 21px;
}
.hamburger.open span:nth-child(1) {
  top: 14.5px;
  transform: rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.5);
}
.hamburger.open span:nth-child(3) {
  top: 14.5px;
  transform: rotate(-45deg);
}

.why-desc a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.75rem; /* adjust as needed */
}

.why-desc a:hover {
  color: var(--accent);
}