@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Oswald:wght@500;600;700&display=swap');

:root {
  --orange: #ff6a00;
  --black: #050505;
  --dark: #0f0f0f;
  --light: #d7d7d7;
  --nav-silver: #C8D4DE;
  --nav-blue: #5BAAFF;
  --glow-orange: rgba(255, 106, 0, 0.35);
  --glow-blue: rgba(91, 170, 255, 0.25);
  --nav-offset: 72px;
  --page-gutter: 40px;
  --section-pad: 64px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--black);
  color: #fff;
  overflow-x: hidden;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
  padding-bottom: var(--safe-bottom);
}

body.has-fixed-nav {
  padding-top: calc(var(--nav-offset) + var(--safe-top));
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 45% at 15% -5%, rgba(255, 106, 0, 0.09), transparent 55%),
    radial-gradient(ellipse 55% 40% at 88% 95%, rgba(91, 170, 255, 0.07), transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(255, 106, 0, 0.03), transparent 70%);
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1001;
  background: linear-gradient(90deg, var(--orange), var(--nav-blue));
  box-shadow: 0 0 12px var(--glow-orange), 0 0 20px var(--glow-blue);
  transition: width 0.08s linear;
}

h1, h2, h3, .logo, .section-title h2, .cta-band h2, .story-content h2 {
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 1px;
}

/* NAV */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: calc(18px + var(--safe-top)) calc(var(--page-gutter) + var(--safe-right)) 18px calc(var(--page-gutter) + var(--safe-left));
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 106, 0, 0.12);
  transition: padding 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

nav.nav-scrolled {
  padding-top: calc(12px + var(--safe-top));
  padding-bottom: 12px;
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: rgba(91, 170, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 106, 0, 0.35);
  border-radius: 10px;
  background: rgba(255, 106, 0, 0.06);
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--nav-silver);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.logo {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--orange);
  text-decoration: none;
  font-family: 'Oswald', Arial, sans-serif;
  transition: text-shadow 0.35s ease, transform 0.35s ease;
}

.logo:hover {
  text-shadow: 0 0 24px var(--glow-orange);
  transform: translateY(-1px);
}

.logo span {
  color: #fff;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav a {
  color: var(--nav-silver);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav a[data-page] {
  position: relative;
}

nav a[data-page]::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--nav-blue));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

nav a[data-page]:hover,
nav a[data-page].active {
  color: var(--nav-blue);
  text-shadow: 0 0 18px rgba(91, 170, 255, 0.35);
}

nav a[data-page]:hover::after,
nav a[data-page].active::after {
  transform: scaleX(1);
}

.nav-login {
  padding: 8px 16px;
  border: 1px solid rgba(255, 106, 0, 0.4);
  border-radius: 30px;
  font-size: 13px !important;
}

.nav-login:hover {
  border-color: var(--nav-blue);
  background: rgba(91, 170, 255, 0.08);
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 18px 38px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7a1a, var(--orange));
  color: #fff;
  border: 2px solid var(--orange);
  box-shadow: 0 0 30px rgba(255, 106, 0, 0.25), 0 4px 20px rgba(255, 106, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-primary:hover {
  background: transparent;
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255, 106, 0, 0.35);
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

/* TRUST STRIP */

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 28px var(--page-gutter);
  background: linear-gradient(180deg, #0a0a0a, var(--black));
  border-top: 1px solid rgba(255, 106, 0, 0.1);
  border-bottom: 1px solid rgba(255, 106, 0, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 106, 0, 0.05);
  border: 1px solid rgba(255, 106, 0, 0.15);
  border-radius: 50px;
  color: var(--nav-silver);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 170, 255, 0.35);
  background: rgba(91, 170, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 20px rgba(91, 170, 255, 0.08);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* SECTIONS */

section {
  padding: var(--section-pad) var(--page-gutter);
}

section + section {
  padding-top: 0;
}

.trust-strip + section {
  padding-top: 32px;
}

section.story,
section.cta,
.cta-band {
  padding-top: var(--section-pad);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title span {
  color: var(--orange);
  text-shadow: 0 0 30px rgba(255, 106, 0, 0.25);
}

.section-title p {
  color: #999;
  font-size: 18px;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

/* FEATURE CARDS */

.features-grid,
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: auto;
}

.feature-card,
.who-card {
  background: linear-gradient(165deg, #141414 0%, #0c0c0c 55%, #080808 100%);
  border: 1px solid rgba(255, 106, 0, 0.12);
  border-radius: 24px;
  padding: 40px 35px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.who-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.5), rgba(91, 170, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover,
.who-card:hover {
  transform: translateY(-10px);
  border-color: rgba(91, 170, 255, 0.35);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(255, 106, 0, 0.08),
    0 0 60px rgba(91, 170, 255, 0.06);
}

.feature-card:hover::before,
.who-card:hover::before {
  opacity: 1;
}

.feature-icon svg,
.who-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  margin-bottom: 22px;
}

.feature-card h3,
.who-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--orange);
  text-transform: uppercase;
}

.feature-card p,
.who-card p {
  color: #b8b8b8;
  line-height: 1.9;
  font-size: 15px;
}

/* TESTIMONIAL */

.testimonial {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 50px;
  background: linear-gradient(165deg, #131313, #0a0a0a);
  border: 1px solid rgba(255, 106, 0, 0.15);
  border-radius: 24px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.testimonial:hover {
  border-color: rgba(91, 170, 255, 0.25);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4), 0 0 40px rgba(91, 170, 255, 0.06);
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 30px;
  font-size: 80px;
  color: rgba(255, 106, 0, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial p {
  color: #d0d0d0;
  font-size: 20px;
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial cite {
  color: var(--orange);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1px;
}

/* PAGE CARD (About / Contact content) */

.page-wrap {
  max-width: 950px;
  margin: 0 auto;
  padding: 16px max(16px, var(--page-gutter)) 40px;
}

.page-card {
  background: linear-gradient(165deg, #101010, #0a0a0a);
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 24px;
  padding: 55px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 106, 0, 0.04);
}

.page-card h1 {
  font-size: 52px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.page-card h1 span {
  color: var(--orange);
}

.page-card h2 {
  font-size: 28px;
  color: var(--orange);
  margin: 35px 0 15px;
  text-transform: uppercase;
}

.page-card p,
.page-card li {
  color: #c5c5c5;
  line-height: 1.9;
  font-size: 17px;
}

.page-card ul {
  padding-left: 22px;
  margin-bottom: 20px;
}

.page-card a:not(.btn) {
  color: var(--orange);
  text-decoration: none;
  transition: 0.3s ease;
}

.page-card a:not(.btn):hover {
  color: var(--nav-blue);
}

.brand-label {
  color: var(--orange);
  font-size: 14px;
  letter-spacing: 5px;
  margin-bottom: 20px;
  opacity: 0.85;
}

.top-image {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 106, 0, 0.15);
}

/* CONTACT FORM */

.contact-form {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}

.contact-form label {
  display: block;
  color: var(--nav-silver);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: #121212;
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 12px;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--nav-blue);
  box-shadow: 0 0 0 3px rgba(91, 170, 255, 0.15);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.contact-card {
  background: #121212;
  border: 1px solid rgba(255, 106, 0, 0.15);
  border-radius: 18px;
  padding: 30px;
}

.contact-title {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-info {
  font-size: 17px;
  line-height: 1.8;
  color: #fff;
}

/* FOOTER */

.site-footer {
  background: #000;
  border-top: 1px solid rgba(255, 106, 0, 0.12);
  padding: 50px 40px 40px;
  text-align: center;
}

.site-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 25px;
}

.site-footer .footer-links a {
  color: var(--nav-silver);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.site-footer .footer-links a:hover {
  color: var(--nav-blue);
}

.site-footer p {
  color: #777;
  line-height: 1.8;
  font-size: 14px;
}

.site-footer .footer-tagline {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* SCROLL REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger {
  transition-delay: var(--reveal-delay, 0s);
}

/* CTA BAND */

.cta-band {
  text-align: center;
  padding: var(--section-pad) var(--page-gutter);
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 106, 0, 0.1), transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(91, 170, 255, 0.06), transparent 60%),
    #000;
  border-top: 1px solid rgba(255, 106, 0, 0.12);
}

.cta-band::before {
  content: none;
}

.cta-band h2 {
  font-size: 64px;
  margin-bottom: 25px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.cta-band h2 span {
  color: var(--orange);
  text-shadow: 0 0 40px rgba(255, 106, 0, 0.3);
}

.cta-band p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #bbb;
  font-size: 20px;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.cta-band .btn {
  position: relative;
  z-index: 1;
}

/* HOME HERO */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(80px + var(--safe-top)) var(--page-gutter) 48px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero::before {
  content: '';
  position: absolute;
  width: min(700px, 100vw);
  height: min(700px, 100vw);
  background: rgba(255, 106, 0, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  top: -120px;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
}

.hero-tag-led {
  --led-blue: #5BAAFF;
  --led-glow: #9fd0ff;
  position: relative;
  display: inline-flex;
  margin-bottom: 20px;
  padding: 2px;
  border-radius: 40px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 0 24px rgba(91, 170, 255, 0.12);
}

.hero-tag-led::before {
  content: '';
  position: absolute;
  width: 220%;
  height: 220%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    transparent 0deg 300deg,
    rgba(91, 170, 255, 0.15) 310deg,
    var(--led-blue) 325deg,
    var(--led-glow) 335deg,
    #ffffff 340deg,
    var(--led-glow) 345deg,
    var(--led-blue) 355deg,
    rgba(91, 170, 255, 0.15) 360deg
  );
  animation: led-border-spin 5s linear infinite;
  z-index: 0;
}

@keyframes led-border-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 10px 22px;
  border: none;
  border-radius: 38px;
  color: var(--nav-blue);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.92);
  box-shadow: inset 0 0 20px rgba(91, 170, 255, 0.06);
}

.hero p {
  color: #c7c7c7;
  font-size: clamp(16px, 2.5vw, 22px);
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 28px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-logo {
  display: block;
  width: 100%;
  max-width: min(1200px, 100%);
  margin: 0 auto 16px;
}

.hero-image {
  width: 100%;
  max-width: min(900px, 100%);
  margin: 12px auto 24px;
  display: block;
  border-radius: 12px;
}

.story {
  background: #000;
  border-top: 1px solid rgba(255, 106, 0, 0.12);
  border-bottom: 1px solid rgba(255, 106, 0, 0.12);
}

.story-content {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.story-content h2 {
  font-size: clamp(28px, 5vw, 52px);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.story-content h2 span {
  color: var(--orange);
}

.story-content p {
  color: #c5c5c5;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}

.cta {
  text-align: center;
  padding: var(--section-pad) var(--page-gutter);
  background: #000;
}

.cta h2 {
  font-size: clamp(28px, 6vw, 64px);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cta h2 span {
  color: var(--orange);
}

.cta p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: #bbb;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-tag-led::before {
    animation: none;
  }

  .hero-tag-led {
    box-shadow: 0 0 20px rgba(91, 170, 255, 0.25);
    border: 1px solid rgba(91, 170, 255, 0.4);
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* TABLET */

@media (max-width: 900px) {
  :root {
    --page-gutter: 20px;
    --nav-offset: 64px;
    --section-pad: 48px;
  }

  section {
    padding: var(--section-pad) var(--page-gutter);
  }

  .section-title {
    margin-bottom: 32px;
  }

  .section-title h2,
  .page-card h1,
  .cta-band h2 {
    font-size: 32px;
    line-height: 1.15;
  }

  .section-title p {
    font-size: 16px;
  }

  .cta-band {
    padding: var(--section-pad) var(--page-gutter);
  }

  .cta-band p {
    font-size: 17px;
  }

  .page-card {
    padding: 28px 20px;
  }

  .page-card h2 {
    font-size: 22px;
  }

  .page-card p,
  .page-card li {
    font-size: 16px;
  }

  .testimonial {
    padding: 32px 20px;
  }

  .testimonial p {
    font-size: 17px;
  }

  .testimonial::before {
    font-size: 56px;
    left: 16px;
  }

  .feature-card,
  .who-card {
    padding: 28px 22px;
  }

  .trust-strip {
    padding: 24px var(--page-gutter);
    gap: 10px;
  }

  .site-footer {
    padding: 32px var(--page-gutter) calc(28px + var(--safe-bottom));
  }

  .trust-strip + section {
    padding-top: 24px;
  }

  .hero {
    padding: calc(72px + var(--safe-top)) var(--page-gutter) 36px;
  }

  .hero-logo {
    margin-bottom: 12px;
  }

  .hero-image {
    margin: 8px auto 16px;
  }

  body::after {
    opacity: 0.15;
    background-size: 48px 48px;
  }
}

/* MOBILE */

@media (min-width: 769px) {
  .nav-bar {
    flex: 0 1 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --page-gutter: 16px;
    --nav-offset: 60px;
    --section-pad: 40px;
  }

  nav,
  nav.nav-scrolled {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: calc(12px + var(--safe-top)) calc(16px + var(--safe-right)) 12px calc(16px + var(--safe-left));
  }

  .nav-bar {
    width: 100%;
    flex: none;
  }

  .logo {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .nav-toggle {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 4px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 106, 0, 0.15);
  }

  nav.nav-open ul {
    display: flex;
  }

  nav ul li {
    width: 100%;
  }

  nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 8px;
    font-size: 16px;
  }

  nav a[data-page]::after {
    bottom: 6px;
  }

  .nav-login {
    justify-content: center;
    margin-top: 6px;
    padding: 12px 18px !important;
    font-size: 14px !important;
  }

  .btn {
    padding: 16px 28px;
    font-size: 14px;
    letter-spacing: 1.5px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .features-grid,
  .who-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-label {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .top-image {
    border-radius: 10px;
    margin-bottom: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-tag {
    font-size: 11px;
    letter-spacing: 2px;
    padding: 8px 16px;
  }

  .hero-tag-led::before {
    animation-duration: 7s;
  }

  nav {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .feature-card:hover,
  .who-card:hover,
  .trust-item:hover {
    transform: none;
  }
}

/* SMALL PHONES */

@media (max-width: 480px) {
  :root {
    --nav-offset: 56px;
    --section-pad: 32px;
  }

  .logo {
    font-size: 22px;
  }

  .section-title h2,
  .page-card h1,
  .cta-band h2 {
    font-size: 30px;
  }

  .feature-card h3,
  .who-card h3 {
    font-size: 19px;
  }

  .trust-item {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 12px 18px;
  }

  .site-footer .footer-links {
    flex-direction: column;
    gap: 14px;
  }

  .site-footer .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-buttons .btn,
  .cta-band .btn,
  .page-card .btn,
  .contact-cta .btn {
    width: 100%;
    max-width: 100%;
  }
}
