html {
  scroll-behavior: smooth;
}

:root {
  --orange: #F25900;
  --orange-hover: #d04e00;
  --black: #000000;
  --black-soft: #111111;
  --white: #FFFFFF;
  --gray: #CCCCCC;
  --gray-dark: #777777;

  --font-display: 'Anton', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 12px;
  --gutter: 20px;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s, background 0.25s, transform 0.25s;
}

ul {
  list-style: none;
}

.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.primary-color {
  color: var(--orange);
}

.section-title-small {
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  display: block;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background: var(--orange-hover);
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-orange:hover {
  background: var(--orange-hover);
}

.btn-black {
  background: var(--black);
  color: var(--white);
  padding: 5px 28px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.btn-black:hover {
  background: #222;
}

.btn-black span {
  color: var(--orange);
  font-size: 1.2rem;
}

/* ---------- HEADER ---------- */
header {
  width: 100%;
  background: rgba(0, 0, 0, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 920px;
  margin: 0 auto;
  padding: 12px var(--gutter);
}

header .logo img {
  width: 60%;
  border-radius: 8px;
}

/* Hamburger */
.menu-toggle {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 1.5rem;
  height: 0.14rem;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle:checked+.hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle:checked+.hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked+.hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-toggle:checked+.hamburger {
  position: fixed;
  top: 12px;
  right: 20px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.menu-toggle:checked~.menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

header nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--black-soft);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.menu-toggle:checked~nav {
  right: 0;
}

header nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

header nav a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='50' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E") repeat,
    url('image/grunge.png') repeat;
  background-size: 200px 50px, 120px;
  -webkit-background-clip: text;
  background-clip: text;
}

header nav a:hover,
header nav a.active {
  color: transparent;
  border-bottom-color: var(--orange);
  background: var(--orange);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-bottom: 4px solid var(--orange);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%),
    url('image/bg-hero-small.png');
  background-size: cover;
  background-position: 70% 40%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.hero-flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
}

.hero .subtitle {
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid rgba(242, 89, 0, 0.3);
  border-radius: 4px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 8rem);
  color: transparent;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.04em;
  position: relative;
  padding-left: 0;
  transform: none;
  margin-top: 0;
  margin-bottom: 1rem;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='50' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E") repeat,
    url('image/grunge.png') repeat;
  background-size: 200px 50px, 120px;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(242, 89, 0, 0.35));
}

.hero p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  display: flex;
  justify-content: center;
  position: static;
  width: auto;
  z-index: auto;
}

.hero-image img {
  width: 220px;
  height: auto;
  opacity: 0.6;
  filter: drop-shadow(0 0 40px rgba(242, 89, 0, 0.15));
  position: static;
  top: auto;
}

#hero {
  border-bottom: 4px solid var(--orange);
}

/* ---------- BRAND ---------- */
.brand {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  max-height: none;
  display: block;
  border-bottom: 4px solid var(--orange);
}

#brand .container.hero-flex {
  position: relative;
  z-index: 2;
}

.brand-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('image/bg-brand-small.png');
  background-size: cover;
  background-position: 70% 30%;
}

#brand {
  border-bottom: 4px solid var(--orange);
}

.brand::before {
  display: none;
}

.brand::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}

.grid-brand {
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.brand-col-1 h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--white);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 12px 14px;
  max-width: none;
  text-align: left;
  justify-content: center;
}

.feature-item img {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

.feature-item span {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.2;
}

.brand-col-2 {
  padding-top: 0;
}

.brand-col-2 p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.brand-col-2 .quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  font-style: italic;
  margin-top: 1.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.brand-image {
  display: none;
}

/* ---------- PRODUCTS ---------- */
.our-products {
  padding: 30px 0;
  background: var(--black);
  overflow-x: hidden;
}

.our-products h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.our-products h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 0.75rem auto 0;
}

.digital-product {
  background: linear-gradient(135deg, var(--black-soft) 0%, rgba(242, 89, 0, 0.08) 60%, rgba(242, 89, 0, 0.15) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 24px;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
}

.app-mockup {
  min-width: 320px;
  z-index: 2;
  margin-top: -90px;
}

.digital-product::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 280px;
  height: 280px;
  background: rgba(242, 89, 0, 0.12);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.app-mockup img {
  width: 100%;
  left: auto;
  top: auto;
  display: block;
  position: relative;
  border-radius: 20px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.app-mockup img:hover {
  transform: scale(1.05) rotate(-1deg);
}

.product-info {
  text-align: center;
  z-index: 2;
  max-width: 300px;
}

.product-info .info-label {
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.product-info p {
  color: var(--gray);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

.check-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--white);
}

.check-list .check-icon {
  background: var(--orange);
  color: var(--black);
  font-weight: bold;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-right: 0;
}

.app-buttons {
  display: flex;
  width: stretch;
  gap: 12px;
  flex-direction: row;
}

.app-buttons img {
  border-radius: 6px;
  transition: transform 0.25s;
}

.app-buttons a:hover img {
  transform: scale(1.06);
}

/* ---------- LIFESTYLE ---------- */
.lifestyle {
  padding: 0 0 30px 0;
  background: var(--black);
}

.lifestyle-flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.lifestyle .content-text {
  display: flex;
  min-width: min-content;
  flex-direction: column;
  justify-content: center;
}

.lifestyle h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

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

.brand-col-1 h2,
.our-products h2,
.lifestyle h2,
.product-info h3 {
  color: transparent;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='50' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E") repeat,
    url('image/grunge.png') repeat;
  background-size: 200px 50px, 120px;
  -webkit-background-clip: text;
  background-clip: text;
}

.lifestyle .title-small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-width: 216px;
}

.slogan-block {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.lifestyle p.subtitle {
  color: var(--orange);
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0;
}

.lifestyle .span-title-small {
  color: var(--gray);
  font-weight: 400;
  font-size: 0.9rem;
}

.lifestyle p.highlight {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange);
  font-style: italic;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  line-height: 1;
}

.grid-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.grid-item {
  position: relative;
  overflow: clip;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.grid-item>picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.grid-item:hover img {
  transform: scale(1.08);
}

.grid-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 70%);
  pointer-events: none;
}

.icon-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 1.6) 40%, transparent 100%);
}

.icon-text .icon-svg {
  width: 1.7rem;
  color: #ff7a1a;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  opacity: .95;
  shape-rendering: geometricPrecision;
  vector-effect: non-scaling-stroke;
  flex-shrink: 0;
}

.kettlebell-icon {
  width: 42px;
  height: 42px;
  color: #ff7a1a;
  filter: drop-shadow(0 0 2px rgba(255, 122, 26, .15));
  shape-rendering: geometricPrecision;
  vector-effect: non-scaling-stroke;
  opacity: .95;
}

.icon-text span:last-child {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.2;
}

/* ---------- CTA ---------- */
.join-us {
  position: relative;
  background: linear-gradient(135deg, #d94b00 0%, var(--orange) 40%, #ff8030 100%);
  padding: 15px 0;
  overflow: hidden;
}

.join-us-flex {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.join-us .container.join-us-flex {
  display: flex;
}

.join-us-content {
  max-width: 500px;
}

.join-us-content h3 {
  font-family: var(--font-display);
  max-width: 200px;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 10px;
  transform: none;
}

.join-us-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

.bg-mascot {
  position: absolute;
  right: 0px;
  top: 10px;
  max-height: 260px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--black);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-bottom: 40px;
}

footer .container.footer-grid {
  max-width: 920px;
}

.footer-logo-info img {
  width: 50%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.footer-logo-info p {
  color: var(--gray);
  font-size: 0.85rem;
  position: static;
  top: auto;
  left: auto;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 260px;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--orange);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  height: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242, 89, 0, 0.3);
  border-radius: 10px;
  transition: background 0.25s, border-color 0.25s;
}

.social-link:hover {
  background: rgba(242, 89, 0, 0.1);
  border-color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom>.container {
  display: flex;
  justify-content: center;
}

.footer-bottom p {
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--gray-dark);
  text-align: center;
}

.reg {
  font-size: 8px;
  vertical-align: super;
}

/* ===========================================
   TABLET (768px+)
   =========================================== */
@media (min-width: 768px) {

  .hamburger {
    display: none;
  }

  header nav {
    position: static;
    width: auto;
    height: auto;
    background: none;
    border: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    transition: none;
  }

  header nav ul {
    flex-direction: row;
    gap: 24px;
  }

  header nav a {
    font-size: 0.85rem;
  }

  .hero {
    display: block;
  }

  .hero h1 {
    font-size: clamp(4rem, 12vw, 7rem);
    width: 110%;
  }

  .hero-flex {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .hero-content {
    flex: 0 1 auto;
    align-self: flex-start;
  }

  .hero p {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-image img {
    width: 300px;
    opacity: 0.7;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%),
      url('image/bg-hero-med.png');
    background-size: cover;
    background-position: 70% 40%;
  }

  .brand-bg {
    background: url('image/bg-brand-med.png');
    background-size: cover;
    background-position: 70% 30%;
  }

  .brand {
    max-height: 600px;
    padding: 40px 0;
  }

  .brand::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.4) 90%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .grid-brand {
    max-width: 50%;
    margin: 0;

    gap: 0;
    z-index: 2;
  }

  .brand-text {
    gap: 0;
  }

  .brand-col-1 {
    flex: 1.5;
  }

  .brand-col-1 h2 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 15px;
  }

  .brand-col-2 {
    flex: 1;
  }

  .features {
    flex-direction: row;
    gap: 12px;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 12px 10px;
    flex: 1;
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }

  .feature-item span {
    line-height: 1.2;
  }

  .brand-col-2 .quote {
    font-size: 2rem;
  }

  .digital-product {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    text-align: left;
    max-height: 316px;
    padding: 15px;
    gap: 0;
  }

  .app-mockup {
    max-width: max-content;
    width: 35%;
    margin-top: -120px;
  }

  .app-mockup img {
    min-width: 114%;
    left: -30px;
  }

  .product-info {
    text-align: left;
  }

  .product-info .info-label {
    margin: 0 0 0.3rem;
    font-size: 0.75rem;
  }

  .product-info h3 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
  }

  .product-info p {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0.3rem;
    font-size: 0.7rem;
  }

  .check-list {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
    gap: 3px;
  }

  .check-list li {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
  }

  .app-buttons {
    justify-content: flex-start;
    gap: 10px;
  }

  .app-buttons img {
    max-width: 100px;
  }

  .app-buttons {
    justify-content: flex-start;
    gap: 12px;
  }

  .app-buttons img {
    width: 100px;
    height: 30px;
  }

  .grid-images {
    grid-template-columns: repeat(4, 1fr);
  }

  .lifestyle-flex {
    flex-direction: row;
    gap: 20px;
  }

  .lifestyle .title-small {
    min-width: 271px;
  }

  .join-us-flex {
    flex-direction: row;
    align-items: center;
  }

  .join-us-content h3 {
    max-width: max-content;
  }

  .join-us .container.join-us-flex {
    display: flex;
  }

  .bg-mascot {
    opacity: 0.3;
    top: 20px;
    right: 20px;
    width: 300px;
    min-height: 500px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  footer .container.footer-grid {
    display: flex;
  }

  .footer-logo-info {
    max-width: 220px;
  }

}

/* ===========================================
   DESKTOP (1024px+)
   =========================================== */
@media (min-width: 1024px) {

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.05) 100%),
      url('image/bg-hero-large.png');
    background-size: cover;
    background-position: 70% 25%;
    top: -30px;
  }

  .hero-bg::after {
    display: none;
  }

  .hero {
    overflow: visible;
  }

  header {
    background: linear-gradient(to bottom, var(--black) 0%, var(--black) 50%, transparent 100%);
    position: relative;
    z-index: 2;
  }

  .hero-image img {
    width: 380px;
  }

  .brand-bg {
    background: url('image/bg-brand-large.png');
    background-size: cover;
    background-position: 70% 30%;
  }

  /* .brand-col-1 h2 {
    font-size: 1.5rem;
  } */

  .brand-col-2 .quote {
    font-size: 2rem;
  }

  .brand-col-2 p {
    font-size: 0.85rem;
  }

  .brand {
    max-height: none;
  }

  .grid-brand {
    max-width: 75%;
  }

  .brand-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: start;
  }

  .brand-col-1 {
    grid-column: 1;
    grid-row: 1;
  }

  .brand-col-2 {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .features {
    grid-column: 1;
    grid-row: 2;
    flex-direction: row;
    gap: 8px;
  }

  .feature-item {
    padding: 8px 8px;
    gap: 4px;
  }

  /* .feature-item img {
    width: 22px;
  } */

  .feature-item span {
    font-size: 0.55rem;
  }

  .app-mockup {
    max-width: 200px;
  }

  .product-info {
    margin-top: 24px;
  }

  .product-info h3 {
    font-size: 2.2rem;
  }

  .join-us-content h3 {
    font-size: 2.2rem;
  }

}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 14px rgba(242, 89, 0, 0.35);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.back-to-top:hover {
  background: var(--orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 89, 0, 0.5);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.7s ease-out;
}

.hero-image {
  animation: fadeInUp 0.7s ease-out 0.2s both;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }